modifying extensions

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

  1. #1

    Default modifying extensions

    I'm using Web Photo Album 2.2 and need to find a way to add an option for the
    navigational elements. Currently, it allows you to choose sequential numbering
    (1,2,3,etc.) or directional guides (< << >> >). What I need is to have
    sequential numbering with a 'previous' and 'next' link on each end (previous |
    1 | 2 | 3 | 4 | next). These changes can't be made in the html template files
    associated with this extension. Can anyone point me to where I can make these
    adjustments? Thanks!

    pmolter Guest

  2. Similar Questions and Discussions

    1. Modifying the PDF content on the fly from PHP/GNU C++
      Hi, We have an existing PDF file - the brochure template. We would like to go through the database and replace the very small portion of the...
    2. Modifying pages
      I have already built my site and have added some extra content to my pages. Each page has a footer with 3 buttons - Right now if I move the header...
    3. Modifying with odd characters
      My primary key can be numbers or text and sometimes has # and + in its value. When I try to modify values with # or + it will not allow me to pull...
    4. modifying views
      I read the following thread from Nov 2002 on the impossibilities of modifying a view and I was wondering if anything had changed in this regard...
    5. Modifying Forms
      This doesn't sound too hard, just hide controls for one type and when you select the other hide and make visible the other. ...
  3. #2

    Default Re: modifying extensions

    pmolter wrote:
    > I'm using Web Photo Album 2.2 and need to find a way to add an option for the
    > navigational elements. Currently, it allows you to choose sequential numbering
    > (1,2,3,etc.) or directional guides (< << >> >). What I need is to have
    > sequential numbering with a 'previous' and 'next' link on each end (previous |
    > 1 | 2 | 3 | 4 | next). These changes can't be made in the html template files
    > associated with this extension. Can anyone point me to where I can make these
    > adjustments? Thanks!

    The files installed by an extension are placed into a user copy of the
    DW configuration folder. To find the various places that this folder can
    be found check out:
    [url]http://www.communitymx.com/blog/index.cfm?newsid=27&blogger=12[/url]

    Once in the DW user config folder go to /Extensions and search for the
    MXI file that is applicable to the extension you're looking for. Open
    that file up in a text editor.

    Note: by default DW will try to open Extension Manager if you try to
    open a MXI file with it. You can add the MXI file extension to the list
    of files DW will open in code view by going to:
    Edit > Preferences > File Types/Editors
    and add the .mxi file extension to the Open in code view field.


    Once that MXI file is opened, look for the <files> tag. Within it you
    will find nested one or more <file> tags. Us the file name and the
    destination attribute to find the files used by the extension. For
    example, if you had:
    <file source="AfileName.htm"
    destination="$dreamweaver/Configuration/Commands/" />

    You would look for the file in the user's DW config folder within the
    Commands folder.


    --
    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