Book a Demo

Author Topic: Add-In MenuItem Separator  (Read 3711 times)

Neocortex

  • EA User
  • **
  • Posts: 34
  • Karma: +0/-0
  • "There is no I in Team America"
    • View Profile
Add-In MenuItem Separator
« 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
« Last Edit: May 31, 2009, 12:19:34 pm by simon.leserve »

Aaron B

  • EA Administrator
  • EA User
  • *****
  • Posts: 941
  • Karma: +18/-0
    • View Profile
Re: Add-In MenuItem Separator
« Reply #1 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...

Neocortex

  • EA User
  • **
  • Posts: 34
  • Karma: +0/-0
  • "There is no I in Team America"
    • View Profile
Re: Add-In MenuItem Separator
« Reply #2 on: June 01, 2009, 07:13:20 pm »


Thanks heaps Aaron!