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 03/01/2003 at 10:53, xxxxxxxx wrote:
User Information: Cinema 4D Version: 8.012 Platform: Windows ; Mac ; Mac OSX ; Language(s) : C++ ;
--------- How can I load(open) an icon-toolbar file to C4D? Currently I am using GeExecuteFile(name) (but this only elmulates a doubleclick).
Is it possible to change the order of the plugins and add separators in the plugin menu? (like in the mocca pluginmenu)
On 08/01/2003 at 00:48, xxxxxxxx wrote:
Use LoadFile() to open icon-toolbar. That way they'll always open in C4D. To change the order of plugins in the menu, add #$n where n is a number. Lower numbers are sorted before higher. (See mocca's c4d_strings.str.) To create a separator you currently have to create a command plugin and name it --, or for example #$30-- with priority. (You can see that this is how mocca does it by observing the many -- plugins in the command manager...
On 09/01/2003 at 22:39, xxxxxxxx wrote:
thx, it works great