Hi Garrett,

I sometimes see this too. I'm sure there must be a definitive cause of it, but I don't have a definitive fix for you - maybe someone else will. In the mean time...

You can try helping Rev understand your code by giving it hints with parentheses, like this (watch line wraps):

put (the text of varTempObject of card varTempCard of stack varTempStack) into varTempResult

-- or break the problem statement into a couple of lines:

get (the text of varTempObject of card varTempCard of stack varTempStack)
put it into varTempResult


HTH -
Phil Davis


Garrett Hylltun wrote:
Rev 2.6.1

Greetings,

I can get the name of the stack, list the cards of that stack, and list the objects of the card(s). But when I try to apply code for getting the text of one of the objects I get the following error:

compiling at 5:48:47 PM
Type    Commands: missing ','
Object    ObjectsList
Line put the text of varTempObject of card varTempCard of stack varTempStack into varTempResult
Hint    into


The line of code is this:

put the text of varTempObject of card varTempCard of stack varTempStack into varTempResult

varTempStack holds the name of the stack, varTempCard holds the name of the card. varTempObject holds the type and name of the object, such as:

button "Button1"

So the line of the code in question would look like this:

put the text of button "Button1" of card "MainCard" of stack "MainStack" into varTempResult

And I don't understand the error at all. I am not aware of having to add any comma in this situation.

Does anyone understand this? Or can someone tell me if I am coding this wrong?

Thanks,
-Garrett
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to