If I add "select the text of me" to the script of the field on cd 2, and I press the button on cd 1, I get this error:

Chunk: can't select object that isn't open

Which is perhaps some sort of clue. However, if there is some text in the field on cd 2, and you change it's script to
on messageY
  put me
end messageY

press the button on cd 1 and it happily puts it's contents into the message box.

So it seems hard to see exactly when we can use "me" and when we can't.
It seems to work in accessing a closed objects own properties -- the long id of me, in your work around -- but not in setting them.

However, if we now change the on messageY handler to

set the height of me to the height of me * 2

and press the button on cd 1, go to cd 2, the field is twice as tall!

So that theory goes out the window!

Perhaps this "me" trouble is confined to the text of fields?

Whether or not this is a bug, it seems to me an ideal subject for some sort of Wiki - I don't know if RunRev have theirs up and running, yet. They didn't, last time I looked.

I also think there may be a good argument for having special sections in the Docs that deal with these "me", "it", "the result" words, which do seem to get confusing, at times.

Best,

Mark


On 15 Nov 2006, at 13:55, Dave wrote:

Hi,

I thought I'd re-visit this as people seem to be in the mood for bug fixing or changing documentation. How should this be filed? I'm really not sure what needs to be changed, I have listed the work arounds I have found at the end. I would suggest that at the very least this is mentioned in the PDF and the Online Docs.

All the Best
Dave

---------------------------------------------------------------------- -----------------------------------------------------
I have a Stack, StackMain.

In StackMain Card 1, I do:

-- On a field
on MessageX
put "MessageX" into me
end MessageX

-- on a button
on mouseUp
send "MessageX" to field 1 of card 1 of  stack "StackMain"
send "MessageY" to field 1 of card 2 of  stack "StackMain"
end mouseUp


In StackMain Card 2 I do:

--On a field
on MessageY
put "MessageY" into me
end MessageY

--on a button
on mouseUp
send "MessageY" to field 1 of card 2 of  stack "StackMain"
end mouseUp


If I press the button on Card 1, then MessageX gets called in Card 1 ok and the field gets set to "MessageX". All is fine. MessageY in Card 2 field 1 gets called ok too, BUT the field is NOT set to "MessageY" as expected????? However if I select card 2 and then press the button in Card 2, again the MessageY in Card 2 field 1 gets called AND the field is set ok. All is fine.

It seems like the following path does not work:

Card 1:Button 1:mouseUp -->Card2:field 1:MessageY does not work.

But

Card 2:Button 1:mouseUp -->Card2:field1:MessageY works fine.

The weird thing is that the handlers do get called and I have stepped over the statement that does: put "MessageY" into me and that seems to work. However, when you select card 2, the field has not been changed.

---------------------------------------------------------------------- ---------------------------------------------
KNOWN WORK-AROUNDS:
---------------------------------------------------------------------- ---------------------------------------------
1. Instead of using the form:

put "MessageY" into me

Use:

set the text of the long id of me to "MessageY"

2. Set the Shared Text Property in the property inspector of the field.

Easy to solve, VERY HARD to TRACK DOWN!!!!!!!!!!!!!!!!!!!!












_______________________________________________
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