Frustrating Javascript Warning Messages in DW CS3 with Spry

Sometime after using Spry in Dreamweaver CS3, I began seeing
the following message:
"A script in file c:\[filepath]\Adobe Dreamweaver
CS3\configuration\shared\spry\designTime\EditingUtils.js has been
running for a long time. Do you want to continue?"
This is very frustrating because Dreamweaver stops responding
and acts like it is about to crash.
If I select 'Yes' the program stops responding again until
the notice reappears. If I select 'No' the file I have opened does
open. But the message continues to be displayed periodically,
especially whenever I try to do a refresh.
Will appreciate any help on this!
Thanks,
Oscar

I get that also when using Spry Tabbed panels, but the pages
I am working
with are huge .. a set of 5 tabbed panels with two nested
sets of 5 panels
in two of the five first level panels. That's not the page
referenced
either .. though that is the message.
However, when I click "yes" it continues to respond and
finishes .. the
opposite of what you are describing. I was about to ask if
there is a
preference that can be set to make this timeout longer. I
agree that it is
annoying.
Nancy Gill
Adobe Community Expert
Author: Dreamweaver 8 e-book for the DMX Zone
Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
2003)
Technical Editor: Dreamweaver CS3: The Missing Manual,
DMX 2004: The Complete Reference, DMX 2004: A Beginner's
Guide
Mastering Macromedia Contribute
Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
Web Development
"flipone01" <[email protected]> wrote in
message
news:f6jous$c3i$[email protected]..
> Sometime after using Spry in Dreamweaver CS3, I began
seeing the following
> message:
>
> "A script in file c:\[filepath]\Adobe Dreamweaver
> CS3\configuration\shared\spry\designTime\EditingUtils.js
has been running
> for a
> long time. Do you want to continue?"
>
> This is very frustrating because Dreamweaver stops
responding and acts
> like it
> is about to crash.
>
> If I select 'Yes' the program stops responding again
until the notice
> reappears. If I select 'No' the file I have opened does
open. But the
> message
> continues to be displayed periodically, especially
whenever I try to do a
> refresh.
>
> Will appreciate any help on this!
>
> Thanks,
> Oscar
>
>

Similar Messages

  • How to verify JavaScript alert message display on page with C#?

    Hi All,
    I have a question about verify the JavaScript alert message on page. For example, I input the script in browser address like: "javascript:onmouseover=alert('popup windows')" . How to verify there's a alert message displayed on page with C#?
    Thanks

    Are you trying to use some automation or ? What the previous solution is they have put the text in the dom for you to pull out with C# or other languages.
    if you are trying to automate this through a browser maybe look into WebDriver
    WebDriverWait wait = new WebDriverWait(driver, 2);
    wait.until(ExpectedConditions.alertIsPresent());
    Alert alert = driver.switchTo().alert(); var alertText = alert.Text;
    alert.accept();

  • DW CS3  with Spry Video Workshop Tutorials

    Hi
    Has anyone else has attempted to go thru the Video Workshop
    tutorials for using Spry with DW CS3 Trial version?
    I am trying to learn how to use Spry and have gone thru the
    Using Spry Framework for Ajax by Joseph Lowery. The problem I have
    is that the example demonstrated in the tutorial simply does not
    work as advertised in the video presentation (at least not using my
    copy of DW CS3 Trial download). Getting exasperated I decided to
    follow step by step the process in the accompanying HTML version of
    the exersize only to discover glaring errors in the text of the
    exersize - (Steps 9 and 10 have NOTHING to do with the example -
    but thats beside to point here).
    Here is what I have done so far:
    1. I downloaded the zip file with the code for the tutorials,
    created a DW local development copy and uploaded the files to the
    testing server. The "testing server" is Apache on my XP Pro SP2
    system.
    2. In the root directory of the sample site used ion the
    tutorial has a number of files which can be used as a starting
    point for the tutorials. I have selected a file called
    05_ajax_spry.htm and followed the steps in the tutorial to create
    the Master / Detail regions and the Master data table.
    3. At the completion of the exersize I should be able to
    perform the following:
    Sort either of the two columns in the
    Master Region's Table
    click on a data row in the master
    table and observe the correct image and description forthat row in
    the Detail Region.
    3. Neither of these work - The only thing that does work is:
    - The Master Region Table gets created OK as does the Detail
    Region
    - When I browse over the data in the Master Region each
    separate row gets highlighted
    - Onlky the first detail image and detail description are
    displayed in the Detail Region and they never change when I click
    on a row in the Master Region.
    4. Now, I have gone thru the process several times in the
    belief that I must have missed something - but so far I cant
    pinpoint what that could be.
    So, I decided to have a look at the next example which
    applies an Accordian Widget to the page. This example is based on
    another file in the root of the tutorial site called
    http://beta/dwcs3spry/06_spry_widgets.htm.
    This file essentially starts off where the previously worked on
    exersize finishes. Upon examining the code of this file I noted a
    difference in the Spry code applied to the table rows in the Master
    Region. The code for the Master table in each example is:
    05_ajax_spry.htm after completion of the exersize:
    <table id="events">
    <tr>
    <th spry:sort="name">Name</th>
    <th spry:sort="location">Location</th>
    </tr>
    <tr spry:repeat="dsEvents" spry:setrow="dsEvents"
    spry:hover="rowHover" spry:select="rowSelected">
    <td>{name}<br />
    {date}</td>
    <td valign="top">{location}</td>
    </tr>
    </table>
    06_spry_widgets.htm - untouched or edited in the associated
    exersize:
    <table id="events">
    <tr>
    <th
    onclick="dsEvents.sort('name','toggle')">Name</th>
    <th
    onclick="dsEvents.sort('location','toggle')">Location</th>
    </tr>
    <tr spry:repeat="dsEvents"
    onclick="dsEvents.setCurrentRow('{ds_RowID}');"
    spry:hover="rowHover" spry:select="rowSelected">
    <td class="eventNameTD">{name}<br />
    {date}</td>
    <td class="locationTD">{location}</td>
    </tr>
    </table>
    Note the onclick events in the latter version.
    I guess my question is "How do I get these onclicks in place
    using DWCS3's" wizards ?" - I am using the Trial version of DW CS3.
    And, I note when I checked the code for the SpryData.js that it is
    Version 1.3. This i is the SpryData.js file that is included in the
    downloaded zip file for the DW CS3 Video Workshop Spry tutorials.
    Many thanks.

    OK - I got it sorted. I created a new site which is a copy of
    the tutorial except that I included a new folder for the Spry
    Assets so that when I added the Spry stuff DW CS3 loaded the v1.4
    files into the new folder for the Spry files instead of using the
    pre-existing files supplied in the tutorial - and it works as
    advertised.
    This may help someone else who comes across a similar problem
    when using the Video Workshop files.
    Although the video tutorials provide an intro into using DW
    CS3 it is a pity that the tradition estalished by Macromedia of
    including excellent tutorials WITH Dreamweaver have been dropped
    now that Adobe has control. Those examples provided in the supplied
    tutorials were excellent and would be nice to have back. They
    certainly covered more ground than the pityful Help now included
    with DW CS3 and the current poor examples in the Video Workshops.
    Perhaps Adobe could improve the level of Quality Control on the
    Video Workshops and expand the scope of the tutorials it could
    improve things. This release of DW is a poor showing for Adobe
    after the take-over. I just hope it gets better with the next
    release - soon.

  • Warning messages didn't show up

    Hello,
    I am trying to implement modification, that posting in transaction VL02N will display warning message when budget is exceeded. Solution is attached to Note 985734 and described in Note 447102:
    "However, if you use transactions MIGO, MB1A, VL01, VL01N, VL02 or VL02N to carry out postings, the CO checks run.
    However, the posting is only then interrupted if the system issues error messages. In this case, all warning and error messages, in particular those of the availability control, are logged.
    If the system does not issue any error message during the posting, but issues an availability control warning message, which is linked with an e-mail to the person responsible (this conforms to action 2 in the definition of the tolerance limit of the availability control), the posting is not interrupted as described above and the system does not issue an availability control warning message. However, an e-mail is sent to the person responsible."
    I slightly modified the modification to include transaction VL02N and my problem is that after statement MESSAGE is executed, the message don't come up and the program flow continues and I don't understand why. Here's a link to youtube with my debugger: http://www.youtube.com/watch?v=N7aB0pzjLgs
    Could someone explain me why the warning message didn't show up, please?
    Thanks,
    Pavel Kraxner
    P.S. In the end of the video is a comment in notepad that error messages are working OK, which is correct, but they are executed at different place (AC_DOCUMENT_CREATE returns sy-subrc = 1 in contrary to Warning messages) .. on that particular place any message didn't show up and I don't know why..

    there is probably a place where there is a CALL FUNCTION ... EXCEPTIONS error_message = ...
    If any message is sent inside the function module (or in one of its called procedures, at any level), then these messages are ignored. That's explained in [sap library|http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbaa0635c111d1829f0000e829fbfe/frameset.htm].
    To check that, look at all the function modules which are displayed in the abap stack (in the debugger), and check how they are called.

  • To through custumize warning messages while creating PO

    Hi All,
    I want to through some warning message throgh user exit while creating PO is there any standar message id i can use to through warning message i know '00' with number 398 but that is working only for error message.
    Regards
    Sagar

    If you're doing these in an exit, you decide in your code whether A,E,I,W, message type.  Beware though, how you present...you might want to do I messages with the "display like E" addition.  I utilize message 016 from message class GR a lot...It's just placeholders and you can then issue messages with three or four values, like:
      message e016(gr) with
      <document> <item> 'text' 'more text'
       etc....  mix and match up to four values, literals, constants, text-elements, etc.

  • Warning messages with the option to continue or cancel

    I am fairly new to the world of JSF and I need to have the ability to present a warning to the user, and allow them the option to continue or to cancel. I need to do this via a message on the page with a link rather than a javascript alert box. The basic usability would be this, the user uses the webapp to create an object, they can then go in and edit the object, while editing they have the option to delete the object, the "delete" control is a button. If they click on this button, I need a way to warn the user but allow them to continue anyway. Currently we have a facility to add a warning to the page, but what I would like to do is add a link or even a button to that page that will allow the delete to take place. Does anyone have any ideas? I've spent quite a few hours on google and haven't found anything similar to what I'm trying to do. The inability to use javascript has been dictated to me, so that is not an option.

    Try this...
    Create two similar "submit" buttons. The only difference is that one will reload the current page, with your warning message displayed. The second will actually execute the delete action.
    When the page is first viewed, the first button will be rendered and the second button will not be rendered. You can facilitate this using the rendered attribute on the commandLink or commandButton, and then tying that to a boolean variable in the backing bean.
    When the first delete button is clicked, you perform the necessary action to display the warning message, flip the rendered boolean, and return the same page again. The page will be reloaded, this time with the second button rendered and the first button not rendered.
    When the second delete button is clicked, you perform the delete, flip the boolean again (especially if your backing bean is in session scope!) and return the user to the appropriate page. If the user chooses cancel, then remember to flip the boolean again.
    Hope this helps!
    CowKing

  • Popup with Warning message

    All,
    In my custom page I want to display a warning message with OK button.... user should click on OK to continue the process....
    What is the best way to address this requirement ???

    Are you looking for a javascript popup or a confirmation page kind of soln.
    If you are looking for a confirmation page kind of soln check OADialogPage samples in Toolbox tutorial
    If you are looking for javascript popup check the site,
    http://mukx.blogspot.com/2007/07/javascript-in-oa-framework.html
    With regards,
    Kali.
    OSSI.

  • SSIS package fails with the error as given below. But its warning messages are incorrect.

    My SSIS package loads data from access database to SQL Server database.
    It's a straight copy. It fails with the below warnings and error message as shown below:
    Error messages:
    [OLE DB Source [113]] Error: There was an error with OLE DB Source.Outputs[OLE DB Source Output].Columns[RetentionID] on OLE DB Source.Outputs[OLE DB Source Output]. The column status returned was: "Text was truncated or one or more characters had no
    match in the target code page.".
    [OLE DB Source [113]] Error: The "OLE DB Source.Outputs[OLE DB Source Output].Columns[RetentionID]" failed because truncation occurred, and the truncation row disposition on "OLE DB Source.Outputs[OLE DB Source Output].Columns[RetentionID]"
    specifies failure on truncation. A truncation error occurred on the specified object of the specified component.
    [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on OLE DB Source returned error code 0xC020902A.  The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure
    code is defined by the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the failure.
    There are 3 warning messages even before I run the package. Warnings are all about the mismatch between the source and destination column sizes.
    I cross checked the source and destination column sizes. The destination column sizes are fairly high than the source column sizes.
    It worked well all the while and when we are going to pre-prod it is throwing errors. Any help is highly appreciated.
    Thank you.

    It worked well all the while and when we are going to pre-prod it is throwing errors. Any help is highly appreciated.
    Please check if the dev destination table has same column data types and size as compared with pre prod table
    Thanks, hsbal

  • BI Publisher report ends with Warning Message for Pivot  type reports..

    Hi,
    I had used BI reporting(xml publisher) to develop our all reports and registered in R12 and works fine for all the tabular/forms type reports but it fails with the warning message(colored in yellow) for Pivot type reports. The output comes in xml..
    When I changed the pivot table type report to tabular it comes with pdf. No issues.I do not know how to solve this issue...
    Please help me on this..
    Thanks
    Imran

    Welcome to the forums !
    Pl post details of OS, database and EBS versions, along with the complete error message.
    HTH
    Srini

  • Warning message, if Quantity=0, when creating a sales order with VA01orVA02

    Hi Experts,
    Currently, if the user do not enters any value in QUANTITY field, while creating a sales order(or even VA02 too) ..........we are getting a Warning message(VU001).
    So, I need to change it to hard error message type, am changing the message type, but, its not reflecting, and still its throwing a warning message(VU001)!!
    Let me know that, What is the correct user exit to incorporate my changes?
    From where this message generating? am keeping a watch point with this message (VU001), but, its not stopping!!
    System is ECC 6.0
    repliaes appreciated
    thanq
    Edited by: SAP ABAPer on Dec 22, 2008 4:38 PM

    thanq
    (the reason, why my original code was worked is that, I put my code in SAVE user exit!!)
    yes, its working, but, the scaenrio is different, so, its like,
    if the user entered my_matnr with quantity = 0,
    then presses ENTER,
    now, we are getting a WARNING MESSAGE of message class & # is VU001, saying the Item 000010 is quantity 0...........so, here I need to change it to HARD ERROR message.
    So, as soon as press the ENTER button(after enetring 0 qty matnr)........I need to get HARD error message, so, where should I incorporate the changes? is it MOVE FIELD TO VBAP user exit?
    thanq

  • Since uninstalling / reinstalling iTunes I am not able to sync iPhotos with my Apple TV with the following warning message stating that this is due to a 'problem on your computer. The disk could not be read from or written to'. Please help!

    Since uninstalling / reinstalling iTunes I am not able to sync iPhotos with my Apple TV with the following warning message stating that this is due to a 'problem on your computer. The disk could not be read from or written to'. Please help!

    Welcome to Apple Discussions!
    Is all the software on your computer up to date?
    iTunes
    iPod Updater
    Also, try The Five R's
    btabz

  • Warning message at the time of GR for a material with Batch Management

    Dear All,
       I am new to MM,
         We are using batch at plant level. For some materials user don’t want maintain
         Batch classification in Material Master. At the time of Goods Receipt posting with ref-to PO user getting warning message like <b>’For batch 0000000139 of material 212030602400000 4F10, no class could</b>’. I check system messages setting transaction code OCHS for batch management, but I didn’t found this type of message in the list.
    Plzz can any one help me where I need to change system settings?
    Thanks in advance.
    Meeravali shaik.

    HI,
    Check in the IMG node Logistics general > Batch Management > Define attributes of system messages.
    Regards,
    RitiG

  • Photoshop Elements 11 installed on Mac Mini OS X 10.9.5. Application running successfully on bot main user and administrative accounts for considerable time with no warning messages. When established a new user account on same computer and try to call up

    Photoshop Elements 11 installed on Mac Mini OS X 10.9.5. Application running successfully on bot main user and administrative accounts for considerable time with no warning messages. When established a new user account on same computer and try to call up elements receive message “Some ot the application components are missing from the Application directory. Please reinstall the application.” How do I correct this problem without disturbing application in main user account?

    Brooks lansing if you create a new Administrator account does the same issue occur?  If so then it is likely that there is a file permission failure and file permissions have been set for the existing Users instead of the groups they belong to.
    Have you removed and reinstalled Photoshop Elements 11?  This may reset the file permissions to the correct state to allow it to work under new accounts.

  • When i open itunes the warning itunes Library.itl appears with the following message. ..."it cannot be read because it was created by a newer version of itunes. after checking software updates we have the lastest version.  What to do?

    when i open itunes the warning itunes Library.itl appears with the following message. ..."it cannot be read because it was created by a newer version of itunes. after checking software updates we have the lastest version.  What to do?

    Perhaps check to see if you're accidentally running two different versions of iTunes. There's some information on troubleshooting that in the Opening iTunes section of the following document:
    Troubleshooting iTunes installation on Mac OS X

  • I couldnt update my itune as it was coming up with a warning message so i uninstalled it and now it wont let me re installl it? when i hit download off apple website it goes to thank you for downloading itunes but it didnt download.

    i couldnt update my itune as it was coming up with a warning message so i uninstalled it and now it wont let me re install it? when i hit download off apple website it goes to thank you for downloading itunes but it didnt download.

    Hi,
    Please uninstall your creative cloud desktop app and re-download it from the below link:-
    Creative Cloud Help | Creative Cloud for desktop
    and then follow the same steps that you have been following.
    Hope that works for you.
    Regards
    Sarthak

Maybe you are looking for