Re: Revolution and 3D: Can You Dig it?

2009-06-17 Thread Luis
Hiya, I'd be a little careful here as there's no threading in Rev. Cheers, Luis. On 16 Jun 2009, at 18:15, weslyn whitehead wrote: This is awesome and has made my day i was just about to post about how to intergrate revolution into a c++ engine so i can use it as the scripting language

Re: The Reporting Problem

2009-06-17 Thread David Bovill
On Linux - I used DocBook - which is basically XSLT but rolled for you in a standard way :) ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: The Reporting Problem

2009-06-17 Thread Peter Alcibiades
Andre, I will have a go. Promise. Meanwhile, Jan was kind enough to let me have a bash at a prerelease copy of Quartam for Linux, so there are now two new avenues to work on. -- View this message in context: http://www.nabble.com/The-Reporting-Problem-tp24038584p24074467.html Sent from the

Re: Standalone problems

2009-06-17 Thread Burrton Woodruff
Hi camm29 and all you others, The problem was the name of the standalone in the Mac OS X was wrong and I couldn't figure out how to change or correct the problem. I found a fix for this problem. The fix is to uncheck any OS X build, save the file, and build just a Windows standalone.

Chinese Typewriter

2009-06-17 Thread Richmond Mathewson
[Just a feeble attempt to get people to notice an earlier posting] Those of you who have the 'benefit' of access to the old version of revOnline can now download my Chinese Typewriter (find it, oddly enough, under 'Richmond'); a proof of concept stack that shows how Chinese characters can be

Re: bignum unicode entities in htmlText?

2009-06-17 Thread Richmond Mathewson
The cool graphic background is a desktop image from Ubuntu 7.10 which was grey-scaled in GIMP. Should be lolling around somewhere in the Ubuntu-verse. viktoras d. wrote: Thanks Devin, Richmond for even more hints! Now I have my script almost working, it has to display both unicode and

Re: bignum unicode entities in htmlText?

2009-06-17 Thread viktoras d.
Thanks Devin, Richmond for even more hints! Now I have my script almost working, it has to display both unicode and non-unicode in the same field, so I did this: set the useUnicode to true set the itemdelimiter to repeat for each item myItem in myInText if ; is the last char in

errorDialog, executionContexts, debugContext

2009-06-17 Thread Phil Davis
Someone please educate me... My current understanding of the debugContext is this: it provides access to any context listed in the executionContexts and to no other contexts. To access a context other than the current one, you set the debugContext to the number of the line in the

Re: errorDialog, executionContexts, debugContext

2009-06-17 Thread Phil Davis
I should have said - I'm assuming the standalone environment in all this. Phil Phil Davis wrote: Someone please educate me... My current understanding of the debugContext is this: it provides access to any context listed in the executionContexts and to no other contexts. To access a

Re: errorDialog, executionContexts, debugContext

2009-06-17 Thread Mark Wieder
Phil- I'm out of town at the moment without access to my notes or code, but I believe you're correct about this. To my recollection the traceError and errorDialog messages are mutually exclusive (one happening when debug mode is on and the other when it's off) and the errorDialog message doesn't

Re: errorDialog, executionContexts, debugContext

2009-06-17 Thread Phil Davis
Thanks Mark. Mark Wieder wrote: Phil- I'm out of town at the moment without access to my notes or code, but I believe you're correct about this. To my recollection the traceError and errorDialog messages are mutually exclusive (one happening when debug mode is on and the other when it's off)

Getting Mutiple files

2009-06-17 Thread Hershel Fisch
Hi, how can I get a list of files in a folder (without changing the defaultFolder)? Thanks, Hershel ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Tab in datagrid

2009-06-17 Thread Hershel Fisch
Sorry was off track for a few days. So are you using your own editable field or the built-in editable The built-in. How do make my own editable fld? field? The built-in editable field traps CloseField and doesn't send it on. I'm sorry for not explaining it properly. Here is the scenario,

Re: Getting Mutiple files

2009-06-17 Thread Björnke von Gierke
shell() or... maybe ftp into localhost ;) other then that, there's no way, file information is exactly what the defaultfolder is for. On 18 Jun 2009, at 04:59, Hershel Fisch wrote: Hi, how can I get a list of files in a folder (without changing the defaultFolder)? Thanks, Hershel --

Re: Getting Mutiple files

2009-06-17 Thread Mark Smith
As Björnke says, you can't do it, but what you can do is save the current default folder and then reset it when you're done: put the defaultFolder into tOldFolder set the defaultFolder to someOtherFolder put the files into tFileList set the defaultFolder to tOldFolder best, Mark On 18 Jun

Re: Getting Mutiple files

2009-06-17 Thread Phil Davis
Try this: function filesInFolder pTargetPath if the platform = Win32 then replace / with \ in pTargetPath return shell(dir quote pTargetPath quote /B) else return shell(ls quote pTargetPath quote) end filesInFolder However, you can always do it the way others have