multiple text to table?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
multiple text to table?
what is the script for asking multiple test boxes (info in text boxes) from one card, and being put into a column table on another page with a click of a button?
thank you
thank you
LOL mark,
now i did try that LOL
but i cant work out the comand i need for this to happen.
this is not a choice combo box, but just a single button command.
so i want to simply click button, and many different text from different text buttons to go into a table.
i just keep getting error commands no matter what i try
cheers
now i did try that LOL
but i cant work out the comand i need for this to happen.
this is not a choice combo box, but just a single button command.
so i want to simply click button, and many different text from different text buttons to go into a table.
i just keep getting error commands no matter what i try
cheers
Smash,
You have to call the function. If you want it to run after a click of the mouse, you probably want to use the mouseUp handler. Put the following line in the mouseUp handler:
Of course, you will have to change the field references. You may need to refer to
field "Some field" of cd "Some Other Card" of stack "Some Stack"
or you can use field numbers if the current card contains these fields.
Best,
Mark
You have to call the function. If you want it to run after a click of the mouse, you probably want to use the mouseUp handler. Put the following line in the mouseUp handler:
Code: Select all
put joinTable(fld 1,fld 2,fld 3, fld 88) into fld "Whatever" of cd "Some Card"
field "Some field" of cd "Some Other Card" of stack "Some Stack"
or you can use field numbers if the current card contains these fields.
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode