Re: send menupick

2007-09-20 Thread Thierry
Le 20 sept. 07 à 21:45, Eric Chatonet a écrit : Hi :-) set the menuHistory of btn "Tab Menu" to lineoffset("infos",btn "Tab Menu") This will select the correct tab and the engine will send 'MenuPick' for you to the tabbed button. See 'menuHist

Re: send menupick

2007-09-20 Thread Eric Chatonet
Hi :-) Le 20 sept. 07 à 21:12, Thierry a écrit : Hi, i have a tab button with 3 buttons and a menupick handler associated with. from another mouseup handler ( outside of the tab menu ), I use the command: send "menupick infos, Log" to button "Tab Menu" It wor

send menupick

2007-09-20 Thread Thierry
Hi, i have a tab button with 3 buttons and a menupick handler associated with. from another mouseup handler ( outside of the tab menu ), I use the command: send "menupick infos, Log" to button "Tab Menu" It works as expected , the menupick handler is fired, but

Re: Send Menupick?

2006-01-26 Thread Dan Shafer
Sivakatirswami try send "menuPick" && pItem to button "Help". Quick testing here seems to work. You're trying to execute a function with a parameter but menuPick isn't a function and you can't "send" a function. HTH On 1/23/06, Sivakat

Re: Send Menupick?

2006-01-23 Thread Sivakatirswami
(smile) I actually did exactly this after sending the email to the use list, realizing it would be a more "solid" and flexible-bullet-proof way to go. The beauty of transcript. So many ways to get the job done. But right, quotes are required for Send to work... It's right there in the docs

Re: Send Menupick?

2006-01-23 Thread Dan Friedman
Sivakatirswami, Try this... send "menuPick" && "Working Guide" to btn "Help" Hope that helps. -Dan > I would like to have a script in one menu button on one card (A), > take the user to another card (b) and trigger a menu choice on a >

Re: Send Menupick?

2006-01-23 Thread Mark Schonewille
e: I would like to have a script in one menu button on one card (A), take the user to another card (b) and trigger a menu choice on a button on Card B This seemed to be obvious enough: --> pull down menu on Card A on menuPick pitem switch pItem case "User Guide" go to ca

Re: Send Menupick?

2006-01-23 Thread J. Landman Gay
Sivakatirswami wrote: but I get an error for this line: send menupick ("Working Guide") to btn "Help" and the script error is saying it thinks this is a function call and not an attempt to send a msg? Yes, because it is written like a function call using parentheses:

Re: Send Menupick?

2006-01-23 Thread Klaus Major
ot; go to card "User Guide" # Card B send menupick ("Working Guide") to btn "Help" # a tabbed menu on card B break end switch end menuPick but I get an error for this line: send menupick ("Working Guide") to btn "Help" and the scr

Send Menupick?

2006-01-23 Thread Sivakatirswami
to card "User Guide" # Card B send menupick ("Working Guide") to btn "Help" # a tabbed menu on card B break end switch end menuPick but I get an error for this line: send menupick ("Working Guide") to btn "Help" and the script error i