Popup problem
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 14/07/2003 at 07:43, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.100
Platform: Windows ;
Language(s) : C++ ;---------
When using ShowPopupMenu I want an entry to be checked but I cannot get it working.
The docs say bc.SetString(..., "Checked&d&");
but bc.SetString(ID,"blabla" "Checked&d&") does not work.. :
How is it done correctly?
Thanks
Samir -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 14/07/2003 at 09:21, xxxxxxxx wrote:
Quote: Originally posted by 3D Designer on 14 July 2003
>
> * * *
>
> When using ShowPopupMenu I want an entry to be checked but I cannot get it working.
>
> The docs say bc.SetString(..., "Checked&d&");
>
> but bc.SetString(ID,"blabla" "Checked&d&") does not work.. :
>
> * * *
There seems to be a small error in the docs...
Disabled is bc.SetString(id, "blabla&d&"); and checked bc.SetString(id, "blabla&c&"); -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 14/07/2003 at 09:24, xxxxxxxx wrote:
Ah! I wondered why it always disabled although I used Checked.
Thank you Thomas