Sparx Systems Forum

Enterprise Architect => Automation Interface, Add-Ins and Tools => Topic started by: Neocortex on May 30, 2009, 11:48:42 pm

Title: Add-In MenuItem Separator
Post by: Neocortex on May 30, 2009, 11:48:42 pm
Is it possible to include a separator in the list of Menu Items for the Add-Ins Menu?

P.S. have tried all the following

                        ,"+"
                        ,"&"
                        ,"*"
                        ,"*"
                        ,"!"
                        ,"@"
                        ,"#"
                        ,"$"
                        ,"%"
                        ,"^"
                        ,"="
                        ,">"
                        ,"?"
                        ,"\\"
                        ,"/"
                        ,"[]"
                        ,"{}"
                        ,","
                        ,"."
                        ,"/"
                        ,";"
                        ,":"
                        ,"'"
                        ,"|"
                        ,"_"
                        ,""
                        ,null

but nothing...

Thanks,
Neo
Title: Re: Add-In MenuItem Separator
Post by: Aaron B on June 01, 2009, 09:23:00 am
You should be able to define a separator by simply using a hyphen.

E.g.  Array("Options", "-", "About...")

Should look like:

Options
-----------
About...
Title: Re: Add-In MenuItem Separator
Post by: Neocortex on June 01, 2009, 07:13:20 pm


Thanks heaps Aaron!