installiation of mxi file doesn't work properly ?

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default installiation of mxi file doesn't work properly ?

    I have following text in my mxi file ( besides another text)
    see attachment

    but my categiry tab have the name "NewPlugin" and no any menu added to insert
    menu. Why?

    <configuration-changes>
    <menu-insert appendTo="DWMenu_Insert">
    <menu id="DWMenu_Insert_Plugins" name="_Plugins">
    </menu>
    </menu-insert>
    <menu-insert appendTo="DWMenu_Insert_Plugins">
    <menuitem id="DWMenu_Insert_Plugins_NewPlugin" name="_New Plugin"
    enabled="dw.getDocumentDOM() != null" file="Objects/Plugins/NewPlugin.htm" />
    </menu-insert>
    <insertbar-changes>
    <insertbar-insert>
    <category folder="Plugins" id="DWInsertbar_Plugins" name="Plugins">
    <button file="Plugins\NewPlugin.htm" id="DWInsertbar_Plugins_NewOlugin"
    image="Plugins\NewPlugin.gif" name="New Plugin"/>
    </category>
    </insertbar-insert>
    </insertbar-changes>
    </configuration-changes>

    56gfvhgf Guest

  2. Similar Questions and Discussions

    1. Screening doesn't seem to work properly
      According to the documentation, a black color screened over some base color (using the "Screen" transparency setting) should show the base color...
    2. autocomplete does not work properly....
      Outlook Express keeps prompting for your password - Fix http://www.dougknox.com/xp/tips/xp_oe_passwords.htm This fix also applies to Outlook,...
    3. it must be me, in that autocomplete does not work properly
      i may be incredibly naive but i can not figure how to get autocomplete to work. either in internet explorer or in outlook express. is there...
    4. Doesn't work properly in browser?!?!
      I made a flash and published it into an html file...when i run the .swf file it runs normally. However, when i run the .html file the screen simply...
    5. Does Threading work properly?
      Hi When I do this: thr3 = Thread.new() do loop do puts \"thread\" end end
  3. #2

    Default Re: installiation of mxi file doesn't work properly ?

    56gfvhgf wrote:
    > I have following text in my mxi file ( besides another text)
    > see attachment
    >
    > but my categiry tab have the name "NewPlugin" and no any menu added to insert
    > menu. Why?
    I copied your code for the insertbar changes, and pasted it into a demo
    MXI on my end. The folder didn't show up at all if I did not also
    install a file into that folder. Once I installed a file into the
    Objects/Plugins/ folder, the tab showed up properly for me.

    Below you'll find the entier MXI that I used:


    <macromedia-extension
    name="__Demo"
    version="1.0.0"
    type="object"
    requires-restart="true">

    <author name="Demo Object" />

    <products>
    <product name="Dreamweaver" version="7" primary="true" required="true" />
    </products>

    <description>
    <![CDATA[
    Demo Object with dedicated folder.
    ]]>
    </description>

    <ui-access>
    <![CDATA[
    UI access:<br>
    Insert bar > New Folder
    ]]>
    </ui-access>

    <license-agreement>
    <![CDATA[

    ]]>
    </license-agreement>
    <files>
    <file source="NewPlugin.htm"
    destination="$dreamweaver/Configuration/Objects/Plugins/NewPlugin.htm" />
    </files>

    <configuration-changes>
    <insertbar-changes>
    <insertbar-insert>
    <category folder="Plugins" id="DWInsertbar_Plugins" name="Plugins">
    <button file="Plugins\NewPlugin.htm"
    id="DWInsertbar_Plugins_NewOlugin" image="Plugins\NewPlugin.gif"
    name="New Plugin"/>
    </category>
    </insertbar-insert>
    </insertbar-changes>
    </configuration-changes>

    </macromedia-extension>





    --
    Danilo Celic
    | Extending Knowledge, Daily [url]http://CommunityMX.com/[/url]
    danilocelic *TMM* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139