Write to Extension Ui? Possible?

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

  1. #1

    Default Write to Extension Ui? Possible?

    Hi again!

    I was curious if anyone knows of a way to write to the UI (user interface) of
    an extension. There are things I want to do, like display the current site
    inside the UI. I can get the current site, but I cannot get it to write,
    becuase document.write is not supported. Any other ideas?

    Thanks a bunch!

    Jammer Guest

  2. Similar Questions and Discussions

    1. DM6.0 Extension Manager v1.2.107 not d/l newer extension
      Hi Folks, I have not been on line due to back surgery and recovery (ouch, yes it still hurts) I have tried to down load some newer navigation aids...
    2. write to database without giving write permission to IIS
      Hi there, I have some ASP code that writes to access database. For security reason I do not want IUSER to give write permission to database...
    3. #26240 [NEW]: Functions of XSL-extension didn't loaded, however itself extension was loaded.
      From: igor_udintsev at mail dot ru Operating system: Linux Red Hat 9 PHP version: 5.0.0b2 (beta2) PHP Bug Type: XSLT related...
    4. Is .dcr extension = Director file extension ?
      I'm a newbie and saw some files on a website ending in .dcr... 1 - Is the .dcr file type a Macromedia Director file? 2 - Does it take the...
    5. Can I write to a File object from a C extension?
      I have a function written in C that wants to write to a FILE * returned from fopen. I'd like to use this function to write to a File object that...
  3. #2

    Default Re: Write to Extension Ui? Possible?

    You can to use innerHTML of a div.

    var theCurrentSite = site.getCurrentSite();
    document.forms[0].currSite.innerHTML=theCurrentSite;


    In the HTML of the UI place a div where you want the info to display...

    <div id="currSite"></div>


    --
    Regards,
    ...Trent Pastrana
    [url]www.fourlevel.com[/url]

    Dreamweaver Designer Tools
    iFrameSuite | MiniMenus | Scroller Packages | More...
    -----------------------------





    "Jammer" <webforumsuser@macromedia.com> wrote in message
    news:dhvqe8$8kl$1@forums.macromedia.com...
    > Hi again!
    >
    > I was curious if anyone knows of a way to write to the UI (user interface)
    > of
    > an extension. There are things I want to do, like display the current site
    > inside the UI. I can get the current site, but I cannot get it to write,
    > becuase document.write is not supported. Any other ideas?
    >
    > Thanks a bunch!
    >

    T.Pastrana - 4Level Guest

  4. #3

    Default Re: Write to Extension Ui? Possible?

    Ahhhhhhhhhhhhhhhhh!!!!!

    It worked!

    Thank you so much! I guess if used correctly, a lot of the dw.page edits can be used for the UI also.

    Thanks again!
    Jammer 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