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

  1. #1

    Default Modifiy Inser Bar

    I?m watting to create a new option in the Insert Bar.

    I?m using this code, but it?s incorret, where is the wrong?


    ...
    <configuration-changes>
    <insertbar-changes>
    <insertbar-insert insertBefore|insertAfter="DW_Insertbar_Favorites">
    <category folder="Plugsites" id="DW_Insertbar_Web Standars" name="Web
    Standards">
    <itemtype file="Plugsites\Name.htm" id="Web Standards_Web Standards"
    image="Plugsites\Name.gif" name="Web Standards" />
    </category>
    </insertbar-insert>
    </insertbar-changes>
    </configuration-changes>
    ...


    I?m intention is create a new tabe named "Web Standars"



    Leandro_Brazil Guest

  2. Similar Questions and Discussions

    1. Photo Album 2.2 Modifiy Script caption setting
      Is it possible to modify the script so that the captions can be read from a txt file (I images CSV) rather than having to input each one at a time? ...
    2. how to inser special character in tagged text
      hi, am trying to insert some special characters (like soft line break with code <0x000A> or non breaking space - <0x00A0>) into a tagged text file,...
    3. Is it posible to modifiy a sound pitch?
      I'm considering the posibility of modifying the pitch ( frequency ) of a sound within a Director aplication to simulate the effects of diferent spin...
    4. UNDOCUMENTED LINGO (was:Is it posible to modifiy a sound pitch?)
      Hi, I just read the message below which was about some hidden feature (pitching sound in Director) that I never knew of. This is not the first...
  3. #2

    Default Re: Modifiy Inser Bar

    Leandro_Brazil wrote:
    > I?m watting to create a new option in the Insert Bar.
    >
    > I?m using this code, but it?s incorret, where is the wrong?
    I think to make that type of change, you first need to insert the
    category, and then do a separate insert for the items that go within the
    new category.


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

  4. #3

    Default Re: Modifiy Inser Bar

    Reading the mxi_file_format.pdf I get to develop this code:

    <configuration-changes>
    <insertbar-changes>
    <insertbar-insert>
    <category folder="myfolder" id="DW_Insertbar_myfolder"
    name="nameNewInsertHere">
    <button file="address_file" id="IdmyInsertBar" image="AddressImagem"
    name="NameButton" />
    </category>
    </insertbar-insert>
    </insertbar-changes>
    </configuration-changes>


    Leandro_Brazil 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