Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
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
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&");
On 14/07/2003 at 09:24, xxxxxxxx wrote:
Ah! I wondered why it always disabled although I used Checked. Thank you Thomas