Hi,
I really would like to have no 'Label' on an option so that it is a clean look, but it is forcing me to have something (when I close it will place the first choice as the label if I leave it blank)...
Is there a way to do this or something that I can put in there that will not show..?
Thanks
TC
No Lable Required for Choice Option..?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
No Lable Required for Choice Option..?
Last edited by topcat888 on Tue Jan 05, 2010 7:44 pm, edited 1 time in total.
Re: No Lable Required for Choice Option..?
Hi TC
put a simple SPACE into the button and you are done. Dirty, cheap but necessary trick
And don't forget to take this into account in your "menupick" handler for that option button!
Best
Klaus
put a simple SPACE into the button and you are done. Dirty, cheap but necessary trick

And don't forget to take this into account in your "menupick" handler for that option button!
Best
Klaus
Re: No Lable Required for Choice Option..?
how easy is that, thanks..!
But how do I change the menupick, at the moment its is:
set the label of me to pItemName
but now it has no name just a space..?
Thanks
TC
But how do I change the menupick, at the moment its is:
set the label of me to pItemName
but now it has no name just a space..?
Thanks
TC
Re: No Lable Required for Choice Option..?
Hi TF,
you are mixing the name of an menu/option button with its content!
Check the inspector for your button:
There you have "name" and a bit lower the "text" property, which is what will be displayed when you click that menu.
So just add a SPACE in the TEXT field and that's it!
Remember that YOU will have to script the actions that will happen when the user selects one of the options of that button
Best
Klaus
you are mixing the name of an menu/option button with its content!
Check the inspector for your button:
There you have "name" and a bit lower the "text" property, which is what will be displayed when you click that menu.
So just add a SPACE in the TEXT field and that's it!
Remember that YOU will have to script the actions that will happen when the user selects one of the options of that button

Best
Klaus
Re: No Lable Required for Choice Option..?
yes.! Thank you.