Ron
October 13th, 2002, 12:55 PM
The internet eventc(ient) only _sends_ events and payloads. The internetserver receives events and payloads. If you want to set a variable based on the payload you would use the GVMS. The payload can be accessed through the variables pld1
So for example you send an event with this payload
just some text in the payload
Now when the event comes into girder you could use this GVMS to fill some variable with this text
string YourOwnName;
YourOwnName = pld1;
Now the variable YourOwnName will be filled with this value.
So for example you send an event with this payload
just some text in the payload
Now when the event comes into girder you could use this GVMS to fill some variable with this text
string YourOwnName;
YourOwnName = pld1;
Now the variable YourOwnName will be filled with this value.