Page 1 of 1
Imput Actors

Posted:
Fri Jul 15, 2005 8:44 pm
by willg101
OK I have absolutely no clue how to copy an imput actor's text from one actor to another, save the imput actor's text, etc...
Could someone please help me?
TIA

Posted:
Sat Jul 16, 2005 12:08 am
by BeyondtheTech
Does this work?
strcpy (Actor1.text, Actor2.text);
or
assuming 'swaptext' is a string variable
strcpy (swaptext, Actor1.text);
strcpy (Actor2.text, swaptext);

Posted:
Sat Jul 16, 2005 5:39 pm
by willg101
I don't know.
I'll try it!
(editted to correct punctuation.)

Posted:
Sat Jul 16, 2005 5:42 pm
by willg101
OK! It works!!!
Thank you soooo much!!