DW Ext help - Reporting

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

  1. #1

    Default DW Ext help - Reporting

    Hi,

    I'm actually running out of places to go to, so I thought I would try this
    forum. I have a little problem with one of my dreamweaver Extensions.

    Basically the idea is that I want to go through the entire source code of the
    user and look for things like ':', '%', '$' and check if they are preceded by a
    certain combination of characters. Now My code is able to find these and does
    do the check correctly, but the problem comes when I want to report the item to
    the reporting pane.

    I am searching for the characters in the curDOM.documentElement.innerHTML
    object, and I get an offset of the position of the character. Then I try to
    report the item, using reportItem(REP_ITEM_CUSTOM, fileURL, "desc",
    offArray[0]); (where offArray's first item is the offset of the character,
    and the second is just offset + 1 for kicks...)

    Now the problem I am having is that when I run the report, and I double click
    on an Item in the list, the position of the selection is not where it should
    be. Ovbiously I'm thinking there must be some kind of difference between the
    innerHTML object and the one that the reportItem uses, but I havn't got a clue
    what it is.

    Does anyone have an idea on how to fix this / know any ressources I can check
    out? Doesn't seem to be that many DW Ext ressources online...

    Any help appreciated.
    Thanks,
    JC

    JcMiron Guest

  2. Similar Questions and Discussions

    1. error reporting
      everytime we end a non responsive program, and on other occasions, a message pops up that internet explorer has encountered an error and needs to...
    2. Error reporting in CGI
      Still new to Perl so this might be a dumb question. The error reporting when a script has errors is different when I run it in Perl from a command...
    3. Advice on reporting via ASP
      Hello everyone, I have recently developed a web application across my clients intranet. We used ASP with Interdev 6.0 and SQL server as the...
    4. reg. Reporting
      Hi all Can Datagrid be used for dynamic reporting? wat are the advantages and disadvantages can anyone explain regards, Sivi
    5. Reporting in ASP.NET with VB
      Hello, I need to ad some reports (Invoicing,AR Aging) to my VB ASP.NET project. And would like to use stored procedures for the data calls. Any...
  3. #2

    Default Re: DW Ext help - Reporting

    I fixed it, silly me, I needed to use the .outerHTML and not the .innerHTML...

    Ah well, thanks.
    JcMiron 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