Why does fireworks add and extra quote on exporting html and images... looks like this -----  align=""left"

Hi Adobe Community,
I had this issue on previous versions of Fireworks.
Why is it happening? Is there a glitch in the software? I thought it would be fixed in the CC version..
here is a snippet of code that is exported.
  <td><table style="display: inline-table;" align=""left" border="0" cellpadding="0" cellspacing="0" width="810">
Basically where ever there is a align="left" it is exported as align=""left"
This leaves me to do a find and replace to fix the code. Kind of annoying.
Personally I thought this would of been fixed in this version.
Please advise and how to fix this and prevent it from happening.
See screenshots below for my fireworks export settings.
Please help.

Anyone out there experience this?

Similar Messages

  • Why does connmand add and delete route to 87.106.208.187?

    Hi
    Each time connmand starts the following is logged:
    connmand[323]: eth0 {add} route 87.106.208.187 gw 192.168.0.1 scope 0 <UNIVERSE>
    connmand[323]: eth0 {del} route 87.106.208.187 gw 192.168.0.1 scope 0 <UNIVERSE>
    I can see that I'm not the only one wondering: https://01.org/jira/browse/CM-657
    The source code does not seem to contain the IP adresse, nor does the IP exist in my /etc or /var/lib/connman/

    Gusar wrote:Is 87.106.208.187 your DNS server? connman by default creates a local DNS server and creates appropriate routes so that it works. If you don't want that, start it with --nodnsproxy
    No, I use dnsmasq on my router, so it's 192.168.0.1
    Some more lines from my log to give some context:
    connmand[313]: eth0 {update} flags 36867 <UP>
    connmand[313]: eth0 {newlink} index 2 address 94:DE:80:78:E9:6A mtu 1500
    connmand[313]: eth0 {newlink} index 2 operstate 2 <DOWN>
    connmand[313]: eth0 {RX} 616 packets 232709 bytes
    connmand[313]: eth0 {TX} 723 packets 133796 bytes
    connmand[313]: eth0 {update} flags 102467 <UP,RUNNING,LOWER_UP>
    connmand[313]: eth0 {newlink} index 2 address 94:DE:80:78:E9:6A mtu 1500
    connmand[313]: eth0 {newlink} index 2 operstate 6 <UP>
    connmand[313]: eth0 {del} route 192.168.0.1 gw 0.0.0.0 scope 253 <LINK>
    connmand[313]: eth0 {del} route 0.0.0.0 gw 192.168.0.1 scope 0 <UNIVERSE>
    connmand[313]: eth0 {del} address 192.168.0.2/24 label eth0
    connmand[313]: eth0 {del} route 192.168.0.0 gw 0.0.0.0 scope 253 <LINK>
    connmand[313]: eth0 {del} route fe80:: gw :: scope 0 <UNIVERSE>
    connmand[313]: eth0 {add} route fe80:: gw :: scope 0 <UNIVERSE>
    connmand[313]: Skipping disconnect of carrier, network is connecting.
    connmand[313]: eth0 {del} route fe80:: gw :: scope 0 <UNIVERSE>
    connmand[313]: eth0 {add} route fe80:: gw :: scope 0 <UNIVERSE>
    connmand[313]: eth0 {add} address 192.168.0.2/24 label eth0 family 2
    connmand[313]: eth0 {add} route 192.168.0.0 gw 0.0.0.0 scope 253 <LINK>
    connmand[313]: eth0 {add} route 192.168.0.1 gw 0.0.0.0 scope 253 <LINK>
    connmand[313]: eth0 {add} route 0.0.0.0 gw 192.168.0.1 scope 0 <UNIVERSE>
    connmand[313]: eth0 {add} route 87.106.208.187 gw 192.168.0.1 scope 0 <UNIVERSE>
    connmand[313]: eth0 {del} route 87.106.208.187 gw 192.168.0.1 scope 0 <UNIVERSE>

  • Some of my bookmarked sites such as aol and facebook, look like This, suddenly: 0 1 45 Send a New Message Messages See All Messages0 unread Notifications See All Notifications Pati Beardsley Home Use Facebook as:

    0
    1
    45
    Send a New Message
    Messages
    See All Messages0 unread
    Notifications
    See All Notifications
    Pati Beardsley
    Home
    Use Facebook as:

    0
    1
    45
    Send a New Message
    Messages
    See All Messages0 unread
    Notifications
    See All Notifications
    Pati Beardsley
    Home
    Use Facebook as:

  • Why does a find and replace method remove whitespace?

    I have method that searches for a string in a FM document and replaces it with a variable. If for example, there was a string foobar that I wanted to replace with the variable barfoo. Then, I expect this text:
    Lorem ipsum dolor sit amet, foobar consectetur adipiscing elit. Vivamus sed purus urna, ac tristique tortor. Nam auctor tellus non enim pulvinar a vestibulum neque tincidunt.
    To be changed to this text:
    Lorem ipsum dolor sit amet, barfoo consectetur adipiscing elit. Vivamus sed purus urna, ac tristique tortor. Nam auctor tellus non enim pulvinar a vestibulum neque tincidunt.
    However, while the text does do the replace it also removes the whitespace between the variable and the text that appears right after the variable so it actually looks looks like this:
    Lorem ipsum dolor sit amet, barfooconsectetur adipiscing elit. Vivamus sed purus urna, ac tristique tortor. Nam auctor tellus non enim pulvinar a vestibulum neque tincidunt.
    Why is the find and replace method removing the whitespace and how do I prevent that from happening? The method is provided below.
    function FindAndReplaceString(pDoc, findString, replaceVariable)
        if (typeof pDoc != 'undefined'&&typeof findString != 'undefined'&&typeof replaceVariable != 'undefined'&&pDoc.ObjectValid()&&findString.length>0&&replaceVariable.length>0)
            var vVarFmtStatus=checkVarFmStatus (pDoc, replaceVariable);
            if (vVarFmtStatus=='In Doc')
                var tr = new TextRange();
                var findParams = new PropVals();
                var frame = pDoc.MainFlowInDoc.FirstTextFrameInFlow;
                var restoreTR = pDoc.TextSelection;
                tr.beg.obj = tr.end.obj = frame.FirstPgf;
                tr.beg.offset = tr.end.offset = 0;
                findParams = AllocatePropVals(1);
                findParams[0].propIdent.num = Constants.FS_FindText;
                findParams[0].propVal.valType = Constants.FT_String;
                findParams[0].propVal.sval = findString;
                tr = pDoc.Find(tr.beg, findParams);
                var vLoopCounter=0;
                while(FA_errno === Constants.FE_Success&&vLoopCounter++< 1000)
                    pDoc.TextSelection = tr;
                    pDoc.Clear(0);
                    var newVar = pDoc.NewAnchoredFormattedVar(replaceVariable, tr.beg);
                    var varLength = newVar.TextRange.end.offset - newVar.TextRange.beg.offset;
                    tr.beg.offset += varLength;
                    tr = pDoc.Find(tr.beg, findParams);
                if (vLoopCounter>0)
                    Log (vLogFileName, 'In the document \''+pDoc.Name+'\', the string \''+findString+'\' was replaced with the variable \''+replaceVariable+'\' '+vLoopCounter+' times.\n')
                if (vLoopCounter>1000)
                    recordErrors (vErrorLog, 'ERROR: In the document "'+pDoc.Name+'", the find and replace operation was stopped after executing '+vLoopCounter+' times. The term being searched for is "'+findString+'" the replacement variable is "'+ replaceVariable+'".')
                pDoc.TextSelection = restoreTR;
                pDoc.ScrollToText(restoreTR);
                } else {
                    recordErrors (vErrorLog, 'ERROR: The find and replace operation failed because the variable '+replaceVariable+' does not exist in the following doc: '+pDoc.Name)
            } else {
                recordErrors (vErrorLog,'Invalid or unitialized parameter passed to function FindAndReplaceString')

    Hi,
    Not at the moment. Please post in http://forums.adobe.com/community/muse/ideas so other users can vote on the feature request.
    Thanks,
    Abhishek

  • Why does the color and or tone of my image change?

    Why does the color and or tone of my image change after working in LR for a couple of hours? I open LR and everything looks fine - work for a couple of hours on the same shoot - but then the pictures start to look flat or greenish cast as time goes by. All the files get flat and the greenish cast after a couple of hours - the ones already worked on and the newer ones I'm pulling up to work on. RAW files downloaded from a Canon 30D. Also exporting to PSCS2 as PROPhoto results in a flat image. I switched back to export AdobeRGB.

    Hola - thanks for the reply - yep - closing and then opening LR helps - but can't do that all the time after processing 3 or 4 files.
    One reply was a corrupt monitor color profile - So I deleted that one and loaded a new adobeRGB profile. That helped a little also for a while - I then reloaded my monitor drivers and refreshed them - that help for a day - the greenish cast is back It works fine on my laptop for now. The same pictures that look greenish in LR look great in Canon DPP. So it probably wasn't the color profile or monitor drivers. My issue started with the small scale previews so I bumped that up. Still have the issue. I finished up a project and now going to uninstall and reinstall LR. Let's see what happens with a fresh install. andy.

  • What is the colored spinning disk, and why does it appear, and how do I get rid of it?

    What is the colored spinning disk, and why does it appear, and how do I get rid of it?

    Repairing permissions will help as will running the UNIX commands. This widget will do all but the pram.
    http://db.tt/Lob4XtPB  Maintenance Widget  One of those links will get you the widget.
    To reset the pram hold the Command+Option+P+R when starting up, wait through 4 startup sounds before letting go.

  • Why does my 4g and 3gs i phone get my message when its not group message?

    why does my 4g and 3gs i phone get my messages,same household but not group message same apple itune account thou.

    On each device check the following in the Settings app.
    Settings > Messages > Send and Receive
    Make sure the proper phone numbers and/or email address is selected on each. Deselect those that you don't want to use an a particular device.

  • Why does stuffit open and create a new folder every time I save a pages document?

    Why does stuffit open and create a new folder every time I save a pages document?

    Because you are saving it to the desktop, Pages documents are actually zipped files and Stuffit is set to uncompress desktop files.
    Either don't save to the desktop (bad practice) or check the preferences in Stuffit to see if you can turn off unstuff files on desktop.
    Peter

  • Why does my keybord and mousepad stop responding every 10-20 sec?

    why does my keybord and mousepad stop responding every 10-20 sek? lasting for a few seconds.
    this is a new problem that started this friday.
    what to do?

    Try resseting the devices or changing the batteries. Also try restarting your MacBook. You should be shutting down every night.

  • Why does my Iomega and WD keep shutting down?

    why does my Iomega and WD keep shutting down?

    Was gonna reply "cause they are unremitting pieces of crap" (got two Iomega NAS boxes out for repairs as we speak), but I'll bite anyway....
    Care to provide more information as to what troubles you? The description you have provided isn't exactly rich in details, don't you think? And my telepathic thinking cap is also out of order at the time....

  • Why does movie stop and show the home screen

    why does movie stop and show the home screen

    (A) Try reset iPad
    Hold the Sleep/Wake and Home button down together until you see the Apple Logo.
    Note: Data will not be affected.
    (B) Close all apps in the multi-task window
    1.Double-click the Home button.
    2. Swipe the app's preview up to close it.
    3. Preview will fly off the screen.

  • I have a iphone6 why does my daughter and my husband receive my text messages

    i have a iPhone 6 why does my husband and daughter get my text messages

    Do you share the same account and Apple ID and computer user account? If so:
    Using More than One iDevice on the Same Computer
    This applies mainly to couples who are adding another device and do not want their email, messages, etc. being duplicated on both devices. To begin read: How to use multiple iPhone, iPad, or iPod devices with one computer. You need to establish a separate Apple ID and password for whomever will use the new iDevice. See Apple - My Apple ID and Frequently asked questions about Apple ID. The easiest way is to do this on the computer using iTunes: iTunes- How to set up an Apple ID within iTunes.
    On the computer create a new user account for the person with the new iDevice. This will be the user account that person will always use. He/She will no longer use the other user account. This way that person will have a separate iTunes Library. Note that once done you cannot "share" apps under a single Apple ID. Each of you must purchase your own apps under your own Apple ID. When you decide to split up like this one of you will need to re-purchase the apps that they want to use.
    Start by transferring the new device(s) to a new account along with all your data.  Save any photo stream photos that you want to keep to your camera roll (unless they are already in the camera roll) by opening your Photos app, tap on Albums icon at the bottom. Now, tap on My Photo Stream album; tap Select; tap on the photos you want to select;, tap the share icon (box with upward facing arrow) in the lower left corner; then tap Save to Camera Roll.
    If you are syncing notes with iCloud that you want to keep then you need to open each of your notes and email them to yourself. Later you can copy and paste the text into new notes created in your new account.
    Tap on Settings > iCloud > Delete Account (only deletes it from this device, not from iCloud; the person keeping the current account will not be affected,) provide the password to turn off Find My Phone and choose Keep on My iDevice when prompted.  Sign in with a different Apple ID to create your new account. Choose Merge to upload your data.
    Once you are on separate accounts, you can each go to icloud.com and delete the other person's data from your account.
    Note: The essence of the above was created by user, randers4. I
    have made substantial changes to improve readability and syntax.

  • HT204370 why does my video and sounds not play at the same time when watching movies

    why does my video and sounds not play at the same time when watching movies

    Welcome to the unity.
    Upon which device are you watching your movies and are you using a home theatre system for your audio.

  • Why does my mac create extra archive copies

    why does my mac create extra archive copies

    osx 10.6.7 is creating a duplicate archive copy of any file?
    For example i click on hold option on keyboard then let go on desktop it would normaly make a second copy but this time it is makeing a third copy but as an archive type that includes a black arrow along side the third new copy?
    how or where can i turn that feature off or disable that archive third copy setting....
    Thanks.....

  • Why does Fireworks CS5 not show in Adobe Extension Manager CS5.5?

    Hello,
    I have problem with Extension Manager CS5.5.
    But i have been found worng version of Extension Manager CS5. How do i move to new version of Extension Manager CS5.5?
    I have been found help but it can not work while i am using command
    http://help.adobe.com/de_DE/extensionmanager/cs/using/WSB4845EDD-14E5-476a-B749-FF328830D1 4F.html
    i have been tried ..
    look like this "Adobe Extension Manager CS5.exe" -enable product="Fireworks CS5" extension="Fireworks CS5"
    But Extension Manager CS5.5 does not show "Fireworks CS5?
    How do i fix this?

    Hi,
    1. Extension Manager CS5.5 is used to manager products of CS5.5. Extensions of Fireworks CS5 can only be managed by Extension Manager CS5, which could be downloaded from below link.
    http://www.adobe.com/exchange/em_download/em50_download.html
    2. The '-enable' is used to enable extensions, not product. Fireworks CS5 shall be listed automacially in Extension Manager CS5.
    Tell us if you have further problem.
    Thanks,
    Guo

Maybe you are looking for

  • Is it ok to install Exchange 2013 on Windows Server 2012 Standard?

    Hello everyone, I'd like to know if it is ok/safe to install Exchange Server 2013 on Windows Server 2012 Standard? As I started doing some research and noticed a page where Microsoft states they don't recommend running Exchange on Server 2012 Standar

  • Not able to ASM instance as sysasm after upgrade?

    Hi, I have upgraded ASM instance from 10.2.0.4 to 11.1.0.6. After upgrading couldn't able to login as sysdba and ASMCMD also. but i can login as sysdba. Please help sqlplus "/as sysasm" SQLPlus: Release 11.1.0.6.0 - Production on Tue Apr 12 01:26:38

  • OSX 10.5 simply WON'T install on my G5

    I just recieved my copy of OSX 10.5 in the mail today, and have been trying desperately to install it ever since Everything seems to work fine, except my hard drive doesn't show up, thus there is nowhere to install OSX to Am running a late model G5 (

  • Problem on communication Oracle 10g / java

    when i wrote in french and i store special characters as ' é ' , ' è ' , ' â '... and i try to select these data from a java application( on the NetBeans IDE 6.7) with a 1.6 JDK, these special characters are showen as '?' !!! so hwo cani do to get my

  • Is the WIFI Wien in Austria accepted as an educational institution?

    hi, is the WIFI Wien in Austria accepted as an educational institution? Can I as a teacher from the WIFI Wien buy the creative cloud teacher edition?