[Edited by moderator subject] fatal error in XML parsing

1. fatal parsing XML: structure of an invalid document, livel file C:\Documents and setting\Hort ResearchNZ application Data\Adobe\Dreamwever len CS5.5 - we configuration\workspace\classic .xml

and second message: 2. the following provision is missing or can not be read: C /: Documents and setting\Hort ResearchNZ\application Data\Adobe\Dreamwever len CS5.5 - we configuration/workspace\classic.xml demand will not have a correct layout, please load one of windows.workspace.

The problen is the program does not open, uninstalled and reinstalled.' the poroblem began when I up downloaded a Web page.

Download, installation, commissioning , with respect to Dreamweaver forum>

reset your preferences-

Legacy: http://helpx.adobe.com/after-effects/using/preferences.html

Dreamweaver: restore preferences | Dreamweaver CS6, Dreamweaver CC

Flash: http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html

Illustrator: http://helpx.adobe.com/illustrator/using/setting-preferences.html

InDesign: https://forums.adobe.com/thread/526990

Photoshop: https://forums.adobe.com/thread/375776

Tags: Dreamweaver

Similar Questions

  • TypeError: Error #1090: XML parser failure: element is incorrect.

    So I try to do a carousel 3D Vertical using Flash CS3, ActionScript 3, a program called TweenMax and XML. The site that I got a tutorial is a dead site, so no help there.

    Here is the error I get:

    TypeError: Error #1090: XML parser failure: element is incorrect.
    at outrageouslycooltitlescreennoerrors_fla::MainTimeline/xmlLoaded()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()

    And here is the actionscript code that I have:

    Import TweenMax
    Import gs.*;

    Path to the XML file
    var xmlPath:String = " " http://download139.mediafire.com/ugg079ku9srg/7h8ki2fbhti272b/cookies.XML ";

    Store the XML file in a variable
    var xml;

    Create a loader and load the XML. When finished, call the function xmlLoaded
    var loader = new URLLoader();
    Loader.Load (new URLRequest (xmlPath));
    loader.addEventListener (Event.COMPLETE, xmlLoaded);

    Call the function
    function xmlLoaded(e:Event):void {}

    Make sure that the variable is not null
    If ((e.target as URLLoader)! = null) {}

    Create a new XML object with the XML data that is loaded
    XML = new XML (loader.data);

    Call the function that creates the menu
    createMenu();

    }

    }

    Need to know how many items on the stage
    var numberOfItems:uint = 0;

    An array that contains all menu items
    var menuItems:Array = new Array();

    Set the focal length
    var focalLength:Number = 350;

    Set the vanishing point
    var vanishingPointX:Number = stage.stageWidth / 2;
    var vanishingPointY:Number = stage.stageHeight / 2;

    Calculate the angleSpeed in the ENTER_FRAME listener
    var angleSpeed:Number = 0;

    Radius of the circle
    var radius: Number = 128;

    This function creates the menu
    function createMenu (): void {}

    Get the number of menu items, as we have
    numberOfItems = xml.items.item.length ();

    Calculate the difference in angle between the elements of menu in radians
    var angleDifference:Number = Math.PI * (360 / numberOfItems) / 180;

    Use a meter to see how menus have been created
    var: County: uint = 0;

    Performs a loop over all the < button > < / button > nodes in the XML document
    for each {(var point: XML dans xml.items.item)}

    Create a new menu item
    var menuItem:MenuItem = new MenuItem();

    Calculate the angle of departure for the menu item
    var startingAngle:Number = angleDifference * count;

    Define an attribute "currentAngle" for the menu item
    menuItem.currentAngle = startingAngle;

    Position of the menu item
    menuItem.xpos3D = 0;
    menuItem.ypos3D = RADIUS * Math.sin (startingAngle);
    menuItem.zpos3D = RADIUS * Math.cos (startingAngle);

    Calculate the ratio of scale for the menu item; the further question, the ratio of scale
    var scaleRatio is focalLength /(focalLength + menuItem.zpos3D);.

    Scale of the item of menu according to the scale ratio
    menuItem.scaleX = menuItem.scaleY = scaleRatio;

    Position of the menu item to the stage (from 3D to 2D coordinates coordinates)
    menuItem.x = vanishingPointX + menuItem.xpos3D * scaleRatio;
    menuItem.y = vanishingPointY + menuItem.ypos3D * scaleRatio;

    Add text to the menu item
    menuItem.menuText.text = item.label;

    Add a variable "linkTo" for the URL
    menuItem.linkTo = item.linkTo;

    Say the text field do not intercept mouse events
    menuItem.mouseChildren = false;

    Affect the MOUSE_OVER, MOUSE_OUT, then click event for the menu item listeners
    menuItem.addEventListener (MouseEvent.MOUSE_OVER, mouseOverItem);
    menuItem.addEventListener (MouseEvent.MOUSE_OUT, mouseOutItem);
    menuItem.addEventListener (MouseEvent.CLICK, itemClicked);

    Add the menu item to the array of menu items
    menuItems.push (menuItem);

    Add the menu item to the stage
    addChild (menuItem);

    Assign an initial alpha
    menuItem.alpha = 0.3;

    Add a blur at the element
    TweenMax.to (menuItem, 0, {blurFilter: {blurX:1, blurY:1}});}})

    Update County
    Count ++;

    }

    }

    This function is called when a mouse is over an element
    function mouseOverItem(e:Event):void {}

    Interpolation of element properties
    TweenMax.to (e.target, 0.1, {alpha: 1, glowFilter: {color: 0xffffff, alpha: 1, blurX:60, blurY:60}, blurFilter: {blurX:0, blurY:0}});}})

    }

    This function is called when a mouse is over an element
    function mouseOutItem(e:Event):void {}

    Interpolation of element properties
    TweenMax.to (e.target, 1, {alpha: 0.3, glowFilter: {color: 0xffffff, alpha: 1, blurX:0, blurY:0}, blurFilter: {blurX:1, blurY:1}});}})

    }

    This function is called when the user clicks on an element
    function itemClicked(e:Event):void {}

    Navigate to the URL that is assigned to the menu item
    var urlRequest:URLRequest = new URLRequest (e.target.linkTo);
    navigateToURL (urlRequest);

    }

    Add a listener to EVENT_FRAME for animation
    addEventListener (Event.ENTER_FRAME, moveCarousel);

    This function is called in each frame
    function moveCarousel(e:Event):void {}

    Calculate the angular position mouseY speed
    angleSpeed = (mouseY - stage.stageHeight / 2) * 0.0002;

    To loop through the menu items
    for (var i: uint = 0; i < menuItems.length; i ++) {}

    Store the menu at a local variable item
    var menuItem:MenuItem = [i] menuItems like MenuItem;

    Update the current angle of the question
    menuItem.currentAngle += angleSpeed;

    Calculate a ratio scale
    var scaleRatio is focalLength /(focalLength + menuItem.zpos3D);.

    Scale of the element according to the scale ratio
    menuItem.scaleX = menuItem.scaleY = scaleRatio;

    Set of new 3D coordinates
    menuItem.xpos3D = 0;
    menuItem.ypos3D = radius * Math.sin (menuItem.currentAngle);
    menuItem.zpos3D = radius * Math.cos (menuItem.currentAngle);

    Update the coordinates of the element
    menuItem.x = vanishingPointX + menuItem.xpos3D * scaleRatio;
    menuItem.y = vanishingPointY + menuItem.ypos3D * scaleRatio;

    }

    Call the function that sorts the elements so that they overlap correctly
    sortZ();

    }

    This function sorts the items so that they overlap correctly
    function sortZ (): void {}

    Sort the table so that the element that has the highest
    z position (= further) is the first in the table
    menuItems.sortOn ("zpos3D", Array.NUMERIC |) Array.DESCENDING);

    Define the new index for the item children
    for (var i: uint = 0; i < menuItems.length; i ++) {}
    setChildIndex (menuItems [i], i);

    }

    }

    the problem is in your xml file.

  • Uninstall and reinstall DWCS4? [edited by moderator subject]

    I have Dreamweaver CS4 and get an 150:30 error when launching. Called in Adobe support and they told me I had to uninstall and reinstall the program. I don't no how to do this.

    What operating system?

    Uninstall the Creative Suite 4 and point products (Mac OS X)

    Remove Creative Suite 3 and CS3 products

    Run the cleanup tool, and then restart the computer

    The Adobe Creative Cloud Cleaner tool allows to solve installation problems

    To re - install, download the software from Adobe

    Download the CS4 products

    Install (double-click on the downloaded file), and then enter your serial number CS4.

  • Relocation of DW will destroy the files of my site? [edited by moderator subject]

    I have Dreamweaver CS4 for Mac.  Recently, I tried to update my Web site and received an error code 150:30, my license has expired.  I downloaded the recovery of license application, but it doesn't start.  Should I uninstall and reinstall Dreamweaver?  It will destroy my files?

    The files of your site are not stored within DW.  Separately, they are stored on your local hard drive. Remove the CS4 will not affect your site files.  But before you resort to re-install CS4 check out this other link.

    Error "licensing for this product has expired" | CS4, CS5

    Nancy O.

  • Can I redirect visitors small window using a media query? [edited by moderator subject]

    I can go about this * back. But, I have a Web site that works great on the desktop and laptop computers and I have versions of the same thing that work well on tablets and phones. Is is possible to use a query to open the version appropriate for each device?

    If the media is the only reason why you are now separate web sites, it is time to think about it.   One sensitive website should suffice.

    The last time I looked, less than 42 percent of desktop computers laptops have more Flash Player. And keep per cent fall.  The most popular mobile & tablets have 0 support for Flash.  Then for all purposes, the Flash is a web technology dead.

    I ditch the Flash/SWF stuff and replace it with HTML5

    Nancy O.

  • What is the single plan of DW App? [edited by moderator subject]

    What will I get if I buy dreamweaver plan unique app at $ 19.99 per month? Should I buy animate edge, edge inspect, reflow edge, edge code separately or these apps will come with dreamweaver. Help, please.

    AFAIK, you can't buy products Muse or edge separately.  They are only available with full creative cloud Plan; not just any single app plan.

    Nancy O.

  • Serial number incorrect - what to do? [edited by moderator subject]

    I am trying to reinstall my downloaded version of dreamweaver cs5 and it tells me that the serial number is not valid.  It was purchased on a discount in 2011 Web site, which has since went bankrupt.  How can this problem be solved?

    No, you can have 2 plants under licenses Creative Suite.

    On the other computer, select help > update profile (or something similar) which should bring you to the ID that was used. Make sure you use this Id in the second installation.

  • Solid black border on the table? [edited by moderator subject]

    How can I put a solid black border around 1 table in an HTML file in Dreamweaver? When I increase the value of border of 0 to 1 or 2, it displays a gray border. Just need to black Uni

    Nancy's comments still apply to most. Make your table-tag

  • Transfer a former DW (CS4) to a new computer? [edited by moderator subject]

    I bought Adobe Creative Suite 4 Web Standard in 2009 and it downloaded on my computer... Since then, I had get another computer. Any way for me to download the same dreamweaver on my new computer? Or o I need to buy again?

    This one. that I don't know.

    Here's another link...

    http://prodesigntools.com/download-Adobe-CS4-and-CS3-free-trials-here.html

    There the available Standard website.

    DON'T FORGET TO FOLLOW THE "INSTRUCTIONS VERY IMPORTANT."

    .. .or the links no longer work.

  • Background selection missing in the property inspector in CS6? [edited by moderator subject]

    My selection of BG (insert Background Image) is missing from my new C6 of Dreamweaver properties panel. I just moved upward from an earlier version of Dreamweaver, which she. How can I get the BG Image insert / modify link? Thank you

    Hi Jim,.

    If you bought a (one-time) perpetual version of Dreamweaver CS6 and not tell the salesperson on your specific needs, it is unlikely that they would have provided you Muse as an option. Other than that, Nancy he covered in his response.

    If you are within the cancellation policy, you could probably cancel your purchase and then subscribe to Muse instead.

    Let us know if you need more information.

    Thank you

    Preran

  • Why DW preview does not imitate a direct site looks in IE? [edited by moderator subject]

    Site looks good in DW CS6 "Preview" for IE.  Yet, when I download it on the host and the view, he lives in IE, the page layout is off.  Why is this?  What is the point of the preview function?

    The problem is not with an excerpt from DW because IE is still IE.   Is something missing on the side server.

    Ensure that all external scripts, CSS files, images, etc. have been uploaded to the correct folders on your server.   And that the paths to these files are correctly pointing to the site and not files: / / to your local hard drive.

    Nancy O.

  • Where is the page title and the property inspector? [edited by moderator subject]

    Why have I not the window title in the toolbar, and why I do the inspection at the bottom of my window panel

  • How we made this page? [edited by moderator subject]

    Hi, I'm new to Web sites so please forgive me my basic questions. I saw a site that I really like and wonder how it was made, and if it can be made with DW. 'S called it africatravelresource.com. Could someone explain to me if they have just linked 100s of background images or is it a really cool slider that they use with transparencies? Thank you for your help

    To more directly answer your question...

    "A beginner would be able to do a site like that in DW?"

    A beginner total, unfamiliar with html, css and javascript? N °

    The program is not built in functionality to do everything from this site of in the Design "WYSIWYG" view (misnomer) interface (there is no menus for ' create a background slide show full page "for example), which is where most beginners tend to work. You must understand how html and css work together, as well as some basic principles of javacript, to get this finished product.

    With respect to the importation of third-party code, Yes, you can enter the code in DW from outside sources, however if you wish to change any aspect of it, you need to do it by hand. DW doesn't give you the contextual menus and dialogs to change things that are not part of the program (or an extension built especially for DW) dialogue and in the great majority of cases, Fashion Design work will give you a fairly broken search page.

    If you are familiar with html, css, and javascript, we can certainly make DW, the site you are requesting everything was actually DW, at least to some extent.

  • Spry in CC2014 options? [edited by moderator subject]

    Where the menus of gout (spry assets) in Dreamweaver CC 2014, please?  It has no any option in "Insert"-> e t c.

    Spry was removed from DW there are several versions. What you trying to do?

  • DW8-&gt; DW CC2014.1 migration issues? [edited by moderator subject]

    I am interested in buying the new version of Dreamweaver, but I'm currently using Macromedia Dreamweaver 8, as a way to manage my website.  I'll be able to use the files currently held in Dreamweaver 8?

    As you probably understand, Dreamweaver is simply a text with a few addons to make it easier for HTML, CSS and JavaScript documents be created and maintained. Who is concerned, nothing has changed in all versions of Dreamweaver.

    What has changed is the way in which the addons work and create the markup. This is due to changes in previous versions of the HTML and CSS for the current versions.

    In response to your question: Yes we can!

Maybe you are looking for

  • New iMac to factory settings reset

    How to reset a new iMac to factory settings?  Something odd began to happen with the cursor the thought of waiting time after a summary typo Web page the first day or the day I got this machine. I would like to start all over again from factory setti

  • ScanJet g4050 not compatible with El Capitan

    ScanJet g4050 no longer works with El Capitan. I have iMac and on the update of OS X 10.11 the scanner stopped communicating with the computer. Any suggestions?

  • Horizontal lines KDL - 32 L 4000

    32 "Bravia (model KDL - 32L 4000) shows a flaw of the horizontal line across the screen, about 1/3 down from the top of the LCD screen. After 15 minutes of on time the image below the line becomes nervous and not. Research on the defence of the inter

  • Device is bluetooth driver

    No I can use bluetooth porque en me whenever me falta en driver no lo encuentra how hago? Gracias

  • HP7510: Cannot fax using HP7510 because of the error message "not connected to the network.

    I have problems with efax.  He has worked in the past with no problems.  Now I get a message that the printer is not connected to the nework anything.  I can print wireless. The problem is with the sending of faxes.   I tried all of the suggestions I