Re: OS X Dock menu

2009-06-11 Thread Jim Sims
Thank you Klaus and Mark. I was hoping to use the icon menu part and not the changing icon part. It seems that the menu has issues after it has been used a time or two and simply stops working. At first (as is my usual suspicion) I thought it must be my scripting, but after reading the list

Re: Crossplatform EURO sign?

2009-06-11 Thread Klaus on-rev
Hi all, many, many thanks for your wonderful suggestions, I'll sure pick one of them! I just love this list! :-) Best Klaus -- Klaus Major http://www.major-k.de kl...@major.on-rev.com ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: Crossplatform EURO sign?

2009-06-11 Thread Andre Garzia
Yay for Richmond! reported working here too... ubuntu jaunty On Wed, Jun 10, 2009 at 4:09 PM, Richmond Mathewson richmondmathew...@gmail.com wrote: Going about things the wrong way! Try this one: set the useUnicode to true set the unicodeText of fld euro to (NumToChar(8364)) 8364 is

Re: Remote database access: Update

2009-06-11 Thread Tereza Snyder
On Jun 8, 2009, at 11:19 AM, viktoras d. wrote: a while ago I have produced exactly such application to one of my clients. Client downloads it, the app communicated with mysql database on a remote server. I used a relay script written in Perl (so it should work everywhere, because Perl

revert command

2009-06-11 Thread jim sims
I'm experimenting with an updater mechanism. I have a splash stack which has a substack named stack RT On the splash stack I have a button with: on mouseUp delete stack RT go stack url http://www.ezpzapps.com/RevertTest.rev; revert start using stack RT end mouseUp I can see the the

Re: revert command

2009-06-11 Thread Mark Schonewille
Hi Sims, You can't revert a substack, or actually if you revert a substack, its mainstack is reverted too. From the docs: The revert command also undoes changes made to other stacks stored in the same stack file. That is, if you revert a main stack, all substacks of that stack also

Re: Remote database access: Update

2009-06-11 Thread viktoras d.
I am glad it helped! One handy option is to make a few copies of that script each for different level of access. Eg. one q1.pl which allows SQL SELECTs only, other q2.pl that allows UPDATEs and INSERTs, yet another q3.pl which allows even more control over the database (DROPs, CREATE's, etc).

Re: Crossplatform EURO sign?

2009-06-11 Thread Richmond Mathewson
Slightly parenthetically, but, about 34 years ago a wonderful Maths teacher, one Bonehead Barker, taught me how to count, add, subtract, divide and multiply in hex; needless to say, I cannot remember anything of it; more's the pity. However, I did discover that the Calculator.app on Mac can

Re: How to put a minus in menu

2009-06-11 Thread Beat Cornaz
Thanks Joe and Klaus, but with the minus sign the back slash does not work. I still get the separation line if minus is preceded by back slash. The backslash works otherwise, but not for the minus sign. I had found the solution with the empty space, but it is not neat. So Klaus, your

Re: How to put a minus in menu

2009-06-11 Thread Devin Asay
On Jun 11, 2009, at 11:52 AM, Beat Cornaz wrote: Thanks Joe and Klaus, but with the minus sign the back slash does not work. I still get the separation line if minus is preceded by back slash. The backslash works otherwise, but not for the minus sign. I had found the solution with the empty

Re: How to put a minus in menu

2009-06-11 Thread Richmond Mathewson
Try Hex 2013 / Decimal 8211 set the useUnicode to true (alt MINUS on a Mac) Devin Asay wrote: On Jun 11, 2009, at 11:52 AM, Beat Cornaz wrote: Thanks Joe and Klaus, but with the minus sign the back slash does not work. I still get the separation line if minus is preceded by back slash.

Unicode Numbers

2009-06-11 Thread Richmond Mathewson
Cheap-Jacks like me, who want to find out unicode values for obscure characters and explore the wierd and wonderful array of characters in unicode fonts can do worse than using this: http://fontforge.sourceforge.net/ Fontforge is FREE and cross-platform and makes me wonder why I bought

Re: Crossplatform EURO sign?

2009-06-11 Thread Richmond Mathewson
I have a problem with baseConvert: on doing this: put baseConvert(8364,10,16) I get 20AC which is lovely. when I do this: put baseConvert(20AC,16,10) I get 133824 which is NOT lovely. Ideas, psychological guidance, . . . ? Andre Garzia wrote: Yay for Richmond! reported working here

Re: Crossplatform EURO sign?

2009-06-11 Thread Richmond Mathewson
Ugh! If I put: put baseConvert(20AC,16,10) in the message box it obliges. if I put: on mouseUp put baseConvert(20AC,16,10) into fld fDEC end mouseUp in a button it also obliges. BUT, if I put: on mouseUp put quote fld fHEX quote into FHEX put baseConvert(FHEX,16,10) into fld fDEC

Re: Tab in datagrid

2009-06-11 Thread Hershel Fisch
Very good thanks, Hershel On 6/10/09 5:29 PM, Josep jmye...@mac.com wrote: Hi, Try this. on mouseUp put the dgNumberOfLines of group dg_detalle into tFilas if tFilas10 then put 0 tFilas+1 into tLinea else put tFilas+1 into tLinea end if

Problem with linktext and html characters

2009-06-11 Thread Alejandro Tejada
Recently i was working with linktext and unicode text. Following the advice published by Devin Asay in his tutorials about Unicode text, i converted the unicode text to htmltext for easiest manipulation between fields. But now, i have this problem with cutoff links To demostrate this bug, please

Re: Problem with linktext and html characters

2009-06-11 Thread Richmond Mathewson
if I do: put (numToChar(363)) I get a 'k' however this: on mouseUp set the useUnicode to true set the unicodeText of fld f2 to (numToChar(363)) end mouseUp gives the 'u' with the diacritic. if you put this in your first field: a href=gojūongojūon/a everything works as long as your

Help on export snapshot

2009-06-11 Thread Paul Gabel
Hello list: Can anyone help me on exporting a snapshot by script. I have a little camera image that, when clicked, should export a snapshot of the card/ window to the desktop of any user. I've read the export snapshot docs, but I'm having trouble with a universal filepath to the desktop.

Re: Problem with linktext and html characters

2009-06-11 Thread Devin Asay
On Jun 11, 2009, at 2:07 PM, Alejandro Tejada wrote: Recently i was working with linktext and unicode text. Following the advice published by Devin Asay in his tutorials about Unicode text, i converted the unicode text to htmltext for easiest manipulation between fields. But now, i have this

Re: Help on export snapshot

2009-06-11 Thread Richmond Mathewson
2 problems as far as I can see: 1. You need to fiddle around with set default folder e.g: set the defaultFolder to /HD/Users 2. export snapshot to file experiment.png as PNG (i.e. not as scrambled eggs) Paul Gabel wrote: Hello list: Can anyone help me on exporting a snapshot by

Re: Help on export snapshot

2009-06-11 Thread Mark Schonewille
Hi Paul, This will work: on mouseUp put ~/desktop/test.png into myFile if there is a file myFile then delete file myFile set the filetype to PNGf export snapshot from rect (the rect of this stack) to file myFile as PNG end mouseUp -- Best regards, Mark Schonewille

Re: Help on export snapshot

2009-06-11 Thread Paul Gabel
Hi Mark: This works beautifully. I never would have figured it out. Thank you very much. Paul Gabel --- On Jun 11, 2009, at 3:10 PM, Mark Schonewille wrote: Hi Paul, This will work: on mouseUp put ~/desktop/test.png into myFile if there is a file myFile then delete

Generate bar codes EAN13 and others

2009-06-11 Thread Josep
Hi, Any tip about generate bar codes from Rev? I downloaded some fonts to print EAN13. I need perform some calc or can I use directly with the font? What standard or generic bar code can I use? or is the prefered? Salut, Josep -- View this message in context:

Snapper Screen Recorder 2.1

2009-06-11 Thread Mark Schonewille
Hi all, This is just a quick note to let you know that Snapper Screen Recorder 2.1 for Mac has been released (the Windows version is still at 2.0.1). This new version for Mac provides full-screen high-quality screen capturing. You'll find the link to the website below. Obviously, this

Save image as...

2009-06-11 Thread Josep
Hi, Other question about save images. I have a stack that recives images from drag and drop or loading from file some image. After the user fill the fields, all must be saved into a database. I prefer that the images will be saved as files on a local folder and uploaded to the server. To save

RE: Generate bar codes EAN13 and others

2009-06-11 Thread Lynn Fredricks
Any tip about generate bar codes from Rev? I downloaded some fonts to print EAN13. I need perform some calc or can I use directly with the font? What standard or generic bar code can I use? or is the prefered? Valentina Reports has support for EAN barcoding, but it means generating the data

Re: Crossplatform EURO sign?

2009-06-11 Thread Robert Brenstein
On 11.06.09 at 21:59 +0300 Richmond Mathewson apparently wrote: BUT, if I put: on mouseUp put quote fld fHEX quote into FHEX put baseConvert(FHEX,16,10) into fld fDEC end mouseUp where fld fHEX contains 20Ac (or any other Hexadecimal number) it screws up and I get 133824 POO! Try on

Re: Help on export snapshot

2009-06-11 Thread J. Landman Gay
Mark Schonewille wrote: Hi Paul, This will work: on mouseUp put ~/desktop/test.png into myFile if there is a file myFile then delete file myFile set the filetype to PNGf export snapshot from rect (the rect of this stack) to file myFile as PNG end mouseUp Or to be

Re: Unicode Numbers

2009-06-11 Thread Peter W A Wood
Richmond Cheap-Jacks like me, who want to find out unicode values for obscure characters and explore the wierd and wonderful array of characters in unicode fonts can do worse than using this: http://fontforge.sourceforge.net/ Fontforge is FREE and cross-platform and makes me wonder why I

Re: Generate bar codes EAN13 and others

2009-06-11 Thread Jan Schenkel
Hi Josep, Quartam Reports supports a number of barcode formats, without the need for special fonts. You can use them both on reports and label sets. I have been contemplating making the barcodes available as a separate 'library' object. If anyone is interested, just drop me an email - the