Advanced DW Extension forums or support?

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

  1. #1

    Default Advanced DW Extension forums or support?

    Hey there,

    I'm building a couple property Inspectors and require some tech support on
    specific tasks. Mostly I'm wondering if there is a dedicated DW Extension
    Development support forums somewhere? Run by Macromedia or otherwise. I'm kind
    of new to this community and just getting my bearings. This forum does not
    appear to deal much with actually building of extensions.

    A couple of tasks that seem to be creating the most pain and suffering for me
    at the moment are:
    1. How can I add "Point To File" functionality to an Inspector? The icon with
    the cross-hairs that you can drag/drop onto a file in the site panel.

    2. How to add a button like 'Bold' or 'Italic' to an Inspector? With this I'm
    not so worried about the code to actually write the tags as I am with how to
    get the rollover effect of the button/image. I'm assuming the rollover effect
    is built into DW like when adding objects to the Insert panel.

    3. How to refresh the code when changes are made with an Inspector? For
    example, if I make a change to the code with a custom Inspector, the properties
    panel displays the following message:
    "You have made changes to the code. To edit selection properties, click
    Refresh or press F5." + "Refresh" button

    When performing a similar task with the standard Inspector, the above message
    does not appear. I'm assuming it' a simple function call to refresh the window,
    but I just need a nudge to get me pointing the right direction.

    Again, if anyone within this forum can help, I would really appreciate the
    feedback, or if you know of another resource/forum somewhere, please point me
    in the right direction and I'll be on my way.

    Thanks for the help.

    Geoffrey McGill Guest

  2. Similar Questions and Discussions

    1. Plugin developer support forums?
      Hi there I currently work in a print room that uses the full acrobat version. We use version 7.x. I am a hobby coder in several OOP languages,...
    2. Advanced Login Extension
      Problems, problems! Downloaded the Advanced Login Extension and installed it. All server connections working etc and database is set up. The...
    3. Advanced 3D API Support Anyone?
      So, here we go again... We've just landed a pretty big contract and I need to make an online 3D viz as pretty as possible. I've been going...
    4. CF Support Forums Problems
      When I search these forums, I get the search results, but often when I click a result, I get the following error: The value '' cannot be converted...
    5. advanced form validation extension
      I'm using the macromedia advanced form extension that I got of the exchange and I'm having some problems getting the radio button validator to work....
  3. #2

    Default Re: Advanced DW Extension forums or support?

    Geoffrey McGill wrote:
    > I'm building a couple property Inspectors and require some tech support on
    > specific tasks. Mostly I'm wondering if there is a dedicated DW Extension
    > Development support forums somewhere? Run by Macromedia or otherwise. I'm kind
    > of new to this community and just getting my bearings. This forum does not
    > appear to deal much with actually building of extensions.
    You can ask your questions here if you want to. Or you can ask in the
    Extensibility forum that you have to sign up for:
    [url]http://www.macromedia.com/support/dreamweaver/extend/form/[/url]

    However, I answer a large majority of the questions here and there, so
    ask whereever you like to.
    > 1. How can I add "Point To File" functionality to an Inspector? The icon with
    > the cross-hairs that you can drag/drop onto a file in the site panel.
    Unfortunately, that functionality is not exposed to extension
    developers. I'd like it too. Please add your voice and request it here:
    [url]http://www.macromedia.com/support/email/wishform/[/url]

    To get similar functionality, you'd have to build it from scratch in a
    C++ extension. Check the docs for very very basic info on creating a C++
    extension. That documentation will not cover creating any dialogs, much
    less creating any widgets on dialogs.
    > 2. How to add a button like 'Bold' or 'Italic' to an Inspector? With this I'm
    > not so worried about the code to actually write the tags as I am with how to
    > get the rollover effect of the button/image. I'm assuming the rollover effect
    > is built into DW like when adding objects to the Insert panel.
    In a property inspector, you've have to add that functionality yourself
    by adding onmouseover onmouseout events. you could then toggle the
    source with those events as well as add a "pressed" state by working
    with onmousedown and onmouseup.

    A really quick, really simple, example of a roll over:
    <img src="Bolt.gif" width="15" height="14"
    onmouseover="this.src='Bolt_dis.gif'" onmouseout="this.src='Bolt.gif'">
    > 3. How to refresh the code when changes are made with an Inspector? For
    > example, if I make a change to the code with a custom Inspector, the properties
    > panel displays the following message:
    > "You have made changes to the code. To edit selection properties, click
    > Refresh or press F5." + "Refresh" button
    Take a look at dom.synchronizeDocument() that may help with what you're
    doing.

    Haven't done a PI in a while, and I don't remember this being an issue.
    How exactly do you do your code changes?


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