Re: u3: where to store data?

2006-08-30 Thread Chipp Walters
Phil, thanks... 'You da man!!!' -c ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re-2: u3: where to store data?

2006-08-30 Thread runrev260805
Hi, it seems that the application just lives in the u3p file on the stick. After starting the app from launchpad it is copied to the folder c:\Documents and Settings\user\Application Data\U3\u3stickid\programid\Exec Try it your self. Just rename the U3P file for any of the installed apps on

when the topColor and the bottomColor switch

2006-08-30 Thread Erik Hansen
when the topColor and the bottomColor switch, I found the property once... Erik Hansen [EMAIL PROTECTED]http://www.erikhansen.org __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: Studio resizeing stack behind back of user...,ii

2006-08-30 Thread Mark Schonewille
Dear Andrew, Having read the older Studio Resizing Stack thread now, I assume the windowBoundingRect is the problem. You cannot change the size windowBoundingRect as Revolution sets it on startup by yourself, as ar as I can see. I had a look at the accessible scripts and I suspect that

Re: Crash report procedure

2006-08-30 Thread Mark Schonewille
Dear Sivakatirswami, In RevOnline, in the user space called Mark, you will find a stack with the name Verbose Logging. This plugin gives you an easy wayto turn on and off the verboselogging feature. When you experience crashes, turn it on and submit the verboselog with the crash report

Sending an apple event with custom parameters (BBEdit roundtrip)

2006-08-30 Thread Ben Rubinstein
I want to send an AppleEvent with custom parameters, not covered in the application's dictionary. Specifically, I want to implement BBEdit round-trip editing - which perhaps others have already done? Essentially the missing piece in this is that when you invite BBEdit to open a document,

U3 applications and Revolution

2006-08-30 Thread Marcus van Houdt
Hi, In response to some recent posts on the list, I have created a forum entry with regards to building U3 applications using Revolution. It can be found at http://forums.runrev.com/phpBB2/viewtopic.php?p=1553 If you have any suggestions, comments or questions, please leave them at the

encode text to image

2006-08-30 Thread paolo mazza
I imported an image as text (URL file:xxx) I wonder if I can convert the text file to binary and set the imagedata of an image to it Ciao Paolo Paolo Mazza NEOL SRL Via Calatafimi, 16 - 35137 PADOVA www.neol.it [EMAIL PROTECTED] Tel

foreign languages in the script editor

2006-08-30 Thread Lars Brehmer
A question for you pros out there. I couldn't find much on this in the archives, so I have to ask you all now: Is there a way to use non Roman characters in the script editor? I have a pop-up menu button that gives two language choices for the program interface language - Estonian and

Re: foreign languages in the script editor

2006-08-30 Thread Kenji Kojima
Hi Lars, I use base64Encode in Japanese. -- Kenji Kojima http://www.kenjikojima.com/jikankei/ On Aug 30, 2006, at 12:35 PM, Lars Brehmer wrote: A question for you pros out there. I couldn't find much on this in the archives, so I have to ask you all now: Is there a way to use non

Re: Studio resizeing stack behind back of user...,ii

2006-08-30 Thread Richard Gaskin
Mark Schonewille wrote: You cannot change the size windowBoundingRect as Revolution sets it on startup by yourself, as ar as I can see. Fortunately they've added a new extension to the screenRect function which allows us to deal with windowBoundingRect with complete flexibility -- from the

Re: Sending an apple event with custom parameters (BBEdit roundtrip)

2006-08-30 Thread Jim Ault
On 8/30/06 2:11 AM, Ben Rubinstein [EMAIL PROTECTED] wrote: but I can't figure out a syntax to let me add the optional parameter without using the dictionary, ie something like this should be the equivalent to the last two above: event aevtodoc /test.txt property OpnI new_window All

Re: foreign languages in the script editor

2006-08-30 Thread Dave Cragg
On 30 Aug 2006, at 17:35, Lars Brehmer wrote: A question for you pros out there. I couldn't find much on this in the archives, so I have to ask you all now: Is there a way to use non Roman characters in the script editor? I have a pop-up menu button that gives two language choices for

Re: Sending an apple event with custom parameters (BBEdit roundtrip)

2006-08-30 Thread Ken Ray
On 8/30/06 12:38 PM, Jim Ault [EMAIL PROTECTED] wrote: On 8/30/06 2:11 AM, Ben Rubinstein [EMAIL PROTECTED] wrote: but I can't figure out a syntax to let me add the optional parameter without using the dictionary, ie something like this should be the equivalent to the last two above:

Applescript question - request cmd

2006-08-30 Thread Jim Ault
Got error -1708 when sending Apple event in the dictionary request the hilite of button 3 from program HyperCard Use the request command to obtain data from another application via the eval Apple event. on testAS request address of active cell from program Microsoft Excel request value of

Re: [partly OT?] Amazon S3, EC2, cyborgs

2006-08-30 Thread Mark Wieder
Dar- Tuesday, August 29, 2006, 4:13:25 PM, you wrote: As you mentioned, the sha1 seems to be the stumbling block for S3 in Rev, but that can be handled with shell() if S3 is needed in Rev. Anyone who wants to try debugging my attempt at an SHA1 library is welcome to it. But I'd really rather

Re: u3: where to store data?

2006-08-30 Thread Mark Wieder
Phil, thanks... 'You da man!!!' Ditto from here. Thanks, Phil (and Malte). Great useful stuff. -- -Mark Wieder [EMAIL PROTECTED] ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Applescript question - request cmd

2006-08-30 Thread Jan Schenkel
--- Jim Ault [EMAIL PROTECTED] wrote: Got error -1708 when sending Apple event in the dictionary request the hilite of button 3 from program HyperCard Use the request command to obtain data from another application via the eval Apple event. on testAS request address of active cell

Re: Applescript question - request cmd

2006-08-30 Thread Jim Ault
Thanks, Jan, I already have several utility scripts for doing the Applescript cmd building. I found the request command in the Rev reference and thought I would check it out for simple cases. Now that I know, I stick with my lib of wrappers. BTW, I did find the following link on the Apple site:

Re: encode text to image

2006-08-30 Thread Dar Scott
On Aug 30, 2006, at 5:20 AM, paolo mazza wrote: I imported an image as text (URL file:xxx) I wonder if I can convert the text file to binary and set the imagedata of an image to it If the image file format is inherently binary, such as PNG or JPEG, then you should read it as a binary

Cgi function

2006-08-30 Thread Hershel Fisch
Hi, I'm wondering why the following function doesn't work in a CGI script? FUNCTION getTip put revOpenDatabase(Postgresql,127.0.0.1,test,postgres,) into tS put revDataFromQuery(,,ts,select * from contact) into theTFile return theTFile END getTip If I add it to a button as below it works

Re: foreign languages in the script editor

2006-08-30 Thread Dar Scott
On Aug 30, 2006, at 10:35 AM, Lars Brehmer wrote: Is there a way to use non Roman characters in the script editor? I have a pop-up menu button that gives two language choices for the program interface language - Estonian and Russian. All buttons and a few other things have 2 profiles -

Re: Cgi function

2006-08-30 Thread jbv
Hershel , Does your cgi engine include db library ? Did you set up somewhere in your script the path to the DB driver ? JB Hi, I'm wondering why the following function doesn't work in a CGI script? FUNCTION getTip put revOpenDatabase(Postgresql,127.0.0.1,test,postgres,) into tS put

How I can to save files .txt on internet?

2006-08-30 Thread Alvaro Abril - Tecnologia
Dear Sirs: I have some servers on internet. I want to save information directly on internet using .txt files. How can I? If I specify the path, is it necesary to place username and password in order to access the server? I know about instructions open, write, read, close... but how can I to

Re: How I can to save files .txt on internet?

2006-08-30 Thread Klaus Major
Buenas tardes Alvaro :-) Dear Sirs: I have some servers on internet. I want to save information directly on internet using .txt files. How can I? See below... If I specify the path, is it necesary to place username and password in order to access the server? Yes. I know about

RE: How I can to save files .txt on internet?

2006-08-30 Thread Alvaro Abril - Tecnologia
Thank you Klauss ... Good instructions, but where we can I to place the username and password of the server? Cordialmente, Alvaro Abril TecnologĂ­a Divertia S.A. www.fantasticguatemala.com Tel. 502 2410 4600 Fax.502 2410 4646 Guatemala -Mensaje original- De: [EMAIL PROTECTED]

Re: Cgi function

2006-08-30 Thread Hershel Fisch
On 8/30/06 4:44 PM, jbv [EMAIL PROTECTED] wrote: Hershel , Does your cgi engine include db library ? Did you set up somewhere in your script the path to the DB driver ? JB Good thinking, I didn't think about that because its local, but any how should that be done? I believe that the

Re: Cgi function

2006-08-30 Thread jbv
Hershel , Well, some other list members might give you more accurate answers, but as for cgi engine I'm using Rev 2.5 on a Linux server because I've been told that this version includes db libs as well as xml libs. As for the db driver path, I use the following lines : put /usr/local/bin/

My Revolution folder

2006-08-30 Thread Mark Schonewille
Hello, Quite a few people who are using Rev 2.7.x have reported to me not to have a My Revolution folder in their documents folder, while there are also quite a few people who report they have this folder. I would like to have some insight in how many people don't see a My Revolution

Re: My Revolution folder

2006-08-30 Thread Trevor DeVore
On Aug 30, 2006, at 2:11 PM, Mark Schonewille wrote: Hello, Quite a few people who are using Rev 2.7.x have reported to me not to have a My Revolution folder in their documents folder, while there are also quite a few people who report they have this folder. I would like to have some

Re: My Revolution folder

2006-08-30 Thread Mark Schonewille
Then I must have created it :-) Thanks Trevor. -- Economy-x-Talk Consultancy and Software Engineering http://economy-x-talk.com http://www.salery.biz Get your store on-line within minutes with Salery Web Store software. Download at http://www.salery.biz Op 30-aug-2006, om 23:19 heeft

Re: Cgi function

2006-08-30 Thread Hershel Fisch
On 8/30/06 5:18 PM, jbv [EMAIL PROTECTED] wrote: put /usr/local/bin/ into path revSetDatabaseDriverPath path Hi, doesn't work, Internal error. Tanks, Hershel ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

Re: foreign languages in the script editor

2006-08-30 Thread ron
Hi Lars, This is the one place where I can consistently make rev crash - using unicode in the script editor. I use two approaches for my app using Japanese/Korean/Chinese and they work for me. The first works with menus that don't have any submenus, the second approach is for those with

Re: How I can to save files .txt on internet?

2006-08-30 Thread Mark Smith
Alvaro, you can include the username and password as part of the URL: ftp://username:[EMAIL PROTECTED]/directory/file Best, Mark On 30 Aug 2006, at 22:41, Alvaro Abril - Tecnologia wrote: Thank you Klauss ... Good instructions, but where we can I to place the username and password of the

Re: Crash report procedure

2006-08-30 Thread Sivakatirswami
(MORE THAN YOU WANT TO KNOW: ) Well most recent crashes seemed to be related to http url calls during a period when our internet connection was really bad. Our cable modem here was running with a 36% packet loss for a few days until Ocean Time Warner fixed it today. but it meant that

Re: Crash report procedure

2006-08-30 Thread Chipp Walters
Sivakatirswami, altSplash (there are probably quite a few new versions since the one you have) looks for a fld 'vers' in the mainstack (not the standalone). If I were you, I'd try something like: if there is a file tMainStackPath then if there is a stack tMainStackPath then That way it will

Re: Crash report procedure

2006-08-30 Thread Chipp Walters
On 8/31/06, Chipp Walters [EMAIL PROTECTED] wrote: I've never seen altSplash crash on a corrupted stack, That said, I haven't really been using 2.7 much either. Recently built some 2.7 U3 products, but that's about it. ___ use-revolution mailing