Re: Setting the labels of radio buttons from a Option Menu Button

2008-07-07 Thread Charles Szasz
Jacquline, The sample script was one that I fooling around with it after my project did not work. My actual project that I am using names in the Switch statements does not work. So, J. Landman Gay wrote: > > Charles Szasz wrote: >> I have been unable to set the labels of radio buttons in a gr

Re: Setting the labels of radio buttons from a Option Menu Button

2008-07-07 Thread J. Landman Gay
J. Landman Gay wrote: Charles Szasz wrote: I have been unable to set the labels of radio buttons in a group from an Option Menu. I do not understand why the following script does not work for two radio buttons, R1, R2, in a group "radio" from a Option Menu button: on menuPick pChosen swi

Re: Setting the labels of radio buttons from a Option Menu Button

2008-07-07 Thread J. Landman Gay
Charles Szasz wrote: I have been unable to set the labels of radio buttons in a group from an Option Menu. I do not understand why the following script does not work for two radio buttons, R1, R2, in a group "radio" from a Option Menu button: on menuPick pChosen switch case "choic

Re: Problem with field references

2008-07-07 Thread François Chaplais
sorry I had to resend my msg This is a pain that that goes back to HC, IIRC. The same issue appears with properties. It sems that, if a variabl's content is an objet name, transcript is not smart enough to understand it (mayby it just does not know what to decide). Of course, there is the

Setting the labels of radio buttons from a Option Menu Button

2008-07-07 Thread Charles Szasz
I have been unable to set the labels of radio buttons in a group from an Option Menu. I do not understand why the following script does not work for two radio buttons, R1, R2, in a group "radio" from a Option Menu button: on menuPick pChosen switch case "choice 1" se

Re: Changing a field to a table field and vice versa

2008-07-07 Thread Mikey
as usual I forgot to check all the custom properties when I was looking at what changed in an object when I switched from one type to another. I have to remember to start doing that... -- George Burns - "Don't stay in bed, unless you can make money in bed." __

Re: Changing a field to a table field and vice versa

2008-07-07 Thread Mikey
thanks, Jan. On Mon, Jul 7, 2008 at 15:53, Jan Schenkel <[EMAIL PROTECTED]> wrote: > --- Mikey <[EMAIL PROTECTED]> wrote: > > What can I set to switch a field to a table field > > and back again? > > > > If all you want is to display the grid, then you can > do this with: > ## > set the vGrid of

Re: Changing a field to a table field and vice versa

2008-07-07 Thread Jan Schenkel
--- Mikey <[EMAIL PROTECTED]> wrote: > What can I set to switch a field to a table field > and back again? > If all you want is to display the grid, then you can do this with: ## set the vGrid of field "MyField" to true set the hGrid of field "MyField" to true ## And you may want to tweak the 'ta

Changing a field to a table field and vice versa

2008-07-07 Thread Mikey
What can I set to switch a field to a table field and back again? -- Paul Lynde - "I sang in the choir for years, even though my family belonged to another church." ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url t

Re: AW: AW: how to store imagedata in a custom property?

2008-07-07 Thread Noel
I figured it meant Answer Within :) Guess I wasn't that far off! - Noel At 12:30 PM 7/7/2008, you wrote: Björnke von Gierke wrote: On 7 Jul 2008, at 18:58, J. Landman Gay wrote: By the way, what is "AW:" in the subject line? It's German for "Re:", and an abbreviation of "Antwort" which me

Re: AW: AW: how to store imagedata in a custom property?

2008-07-07 Thread J. Landman Gay
Björnke von Gierke wrote: On 7 Jul 2008, at 18:58, J. Landman Gay wrote: By the way, what is "AW:" in the subject line? It's German for "Re:", and an abbreviation of "Antwort" which means "Answer". Thank you! It was a mystery to me, now solved. :) I love that we have so many bilingual peo

Re: AW: AW: how to store imagedata in a custom property?

2008-07-07 Thread Björnke von Gierke
On 7 Jul 2008, at 18:58, J. Landman Gay wrote: By the way, what is "AW:" in the subject line? It's German for "Re:", and an abbreviation of "Antwort" which means "Answer". -- official ChatRev page: http://chatrev.bjoernke.com Chat with other RunRev developers: go stack URL "http://homep

Re: how to store imagedata in a custom property?

2008-07-07 Thread viktoras didziulis
but ctrl+z is a single step undo, isn't it? I haven't done this with imagedata, but for text changes in fields I store the text of field in an array 'undooArray' before each space, enter, return, backspace, delete, dot, comma, colon, paste, copy, cut, insert (or any other action of context menu

Re: how to store imagedata in a custom property?

2008-07-07 Thread Scott Rossi
Recently, Tiemo Hollmann TB wrote: > I would like to make my > own "undo" for painting actions with storing different states of the image > in custom properties, like: > > set the undo1 of img "foo" to the imagedata of img "foo" > > but when trying to restore the imagedata out of the custom prop

Re: AW: AW: how to store imagedata in a custom property?

2008-07-07 Thread J. Landman Gay
Tiemo Hollmann TB wrote: I want to provide my user a undo function in the standalone with the brush tool, not while developing. In that case you may need to write a commandKey handler that traps for "z" and issues the "undo" command. If you have menus with that keyboard shortcut, they should

Re: anyone purchased from the RunRev WebShop successfully with european vat id?

2008-07-07 Thread Heather Nagey
I've been checking this out in case there is a problem with the store, but I haven't managed to make it not remove VAT after entering a valid VAT ID. Possibly if you start out the order in a different currency, switch to euros on a later screen, and don't click outside the box after enterin

AW: AW: how to store imagedata in a custom property?

2008-07-07 Thread Tiemo Hollmann TB
I want to provide my user a undo function in the standalone with the brush tool, not while developing. Tiemo > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:use-revolution- > [EMAIL PROTECTED] Im Auftrag von J. Landman Gay > Gesendet: Montag, 7. Juli 2008 18:29 > An: How to u

Re: AW: how to store imagedata in a custom property?

2008-07-07 Thread J. Landman Gay
Tiemo Hollmann TB wrote: Hi Jacqueline, the plain "undo" doesn't work with the brush tool (as my experience and as the docs say) How do you do an undo for a painting with the brush tool? I just type Cmd-Z and undo happens. -- Jacqueline Landman Gay | [EMAIL PROTECTED] HyperActive S

AW: how to store imagedata in a custom property?

2008-07-07 Thread Tiemo Hollmann TB
Hi Jacqueline, the plain "undo" doesn't work with the brush tool (as my experience and as the docs say) How do you do an undo for a painting with the brush tool? Thanks Tiemo > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:use-revolution- > [EMAIL PROTECTED] Im Auftrag von J.

Re: how to store imagedata in a custom property?

2008-07-07 Thread J. Landman Gay
Tiemo Hollmann TB wrote: Hello, cause you can't undo actions with the paint tool, I would like to make my own "undo" for painting actions with storing different states of the image in custom properties, like: I undo painting actions all the time. What doesn't work? -- Jacqueline Landman Gay

Re: Problem with field references

2008-07-07 Thread Mikey
I have had to use the "do" option. The text and value tries didn't do it. -- George Burns - "Don't stay in bed, unless you can make money in bed." ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsub

Re: anyone purchased from the RunRev WebShop successfully with european vat id?

2008-07-07 Thread René Micout
Hello, I had made the same thing today and it was OK (from France)... René Le 7 juil. 08 à 16:49, [EMAIL PROTECTED] a écrit : Hi, did anyone from europe ever puchased successfully from the RunRev webshop with her/his/their vat id to avoid paying vat? I wanted to buy AnimationEngine today.

Re: Problem with field references

2008-07-07 Thread Jan Schenkel
--- Mikey <[EMAIL PROTECTED]> wrote: > Jan, > Sorry, I didn't see your post when you made it. > Yes, I can get the THERE IS > A fieldname (where the first word of fieldname is > the word field) to work, > but I cannot then use fieldname with or without > field on the front to get > the contents of

anyone purchased from the RunRev WebShop successfully with european vat id?

2008-07-07 Thread runrev260805
Hi, did anyone from europe ever puchased successfully from the RunRev webshop with her/his/their vat id to avoid paying vat? I wanted to buy AnimationEngine today. But although i enter my correct vat id, i will be charged for vat. Worldpay wants around 49 Eur from me, although Animation Engine

Re: App restart after update

2008-07-07 Thread Trevor DeVore
On Jul 5, 2008, at 7:25 PM, Bill Vlahos wrote: I am using a splash screen but it don't actually start using this template stack. I touch it to get version info. OK. Whenever you touch a stack to get version info it will be loaded into memory. I tried deleting it as suggested and I also tr

Re: Speed problems when cloning a group lots of times

2008-07-07 Thread Ian Wood
On 7 Jul 2008, at 14:29, Trevor DeVore wrote: On Jul 7, 2008, at 9:21 AM, Ian Wood wrote: I figured the easiest way to do this would be to copy a group containing one lines-worth of controls and then paste it lots of times. Unfortunately the amount of time it takes to paste is increasing

Re: Problem with field references

2008-07-07 Thread Mikey
Jan, Sorry, I didn't see your post when you made it. Yes, I can get the THERE IS A fieldname (where the first word of fieldname is the word field) to work, but I cannot then use fieldname with or without field on the front to get the contents of the field. Once I have determined that the field ex

Re: Speed problems when cloning a group lots of times

2008-07-07 Thread Trevor DeVore
On Jul 7, 2008, at 9:21 AM, Ian Wood wrote: I figured the easiest way to do this would be to copy a group containing one lines-worth of controls and then paste it lots of times. Unfortunately the amount of time it takes to paste is increasing as the repeat loop goes on, AND Rev is then unre

Speed problems when cloning a group lots of times

2008-07-07 Thread Ian Wood
OS X 10.5.2 Rev Studio 2.9.0 Build 610 As part of a geotagging app, I need to generate scrolling lists of GPS coordinates, other info and 'reveal in Google Earth' buttons. Potentially the user will do this for thousands of images at once, although 50-300 at a time will be more likely. I f

Problem setting password when build standalone

2008-07-07 Thread Dave
Hi All, I'm trying to password protect my application. The application is setup so that when it is built as a standalone, there is a small application file (.app or .exe) which holds the standalone settings, acts as a "Splash Screen" and has code triggered by the "savingStandalone" and "s

how to store imagedata in a custom property?

2008-07-07 Thread Tiemo Hollmann TB
Hello, cause you can't undo actions with the paint tool, I would like to make my own "undo" for painting actions with storing different states of the image in custom properties, like: set the undo1 of img "foo" to the imagedata of img "foo" but when trying to restore the imagedata out of the cus