Validation errors flash when migrating site to html 5

Hello,
I am in the middle of migrating my website to HTML5. My website contains a few .swf files that I've
embedded in myt html code. When I am validation my site (at W3C) I get a few errors. I hope someone
can help me with this problem.
This is the code i am using:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,24" width="270" height="175">
<param name="movie" value="flash/header_v8_1_orangeflower.swf?button=1" />
<param name="quality" value="high" />
<param name="menu" value="false" />
</object>
When validating i get this error:
  Line 63, Column 131: Element object is missing one or more of the following attributes: data, type.
…ub/shockwave/cabs/flash/swflash.cab#version=8,0,0,24" width="270" height="175">

I also recommend swfobject... but sometimes all the extra IE conditional statements that comes with version 2+ can cause problems. I like the earlier 1.5 version myself.
Either version.... they are still both Flash detection methods. The real stregth of using Flash detection is the ability to add "Alternate content".... NOT as a mean of just placing Flash on a Web page. That can be done with just HTML <object> code.... no swfobject needed.
The single <object> method..... Very simple and clean:
<object data="path_to_file/file.swf" type="application/x-shockwave-flash" width="insert_width_of_movie" height="insert_height_of_movie">
  <param name="movie" value="path_to_file/file.swf">
  <param name="SomeOtherParam" value="ParamValue">
</object>
Edit as needed for your content
Best wishes,
Adninjastrator

Similar Messages

  • Permissions error messages when migrating presets/preferences (Mac)

    When the program starts it asks if I want to take the preferences from CS5.1 and migrate to 6 but when I say yes it gives me all kinds of error messages that the files are locked and when I quit it says it can't say my preferences
    Would you like to migrate presets from the following versions?
    Line: 212 - An error occurred when migrating the preset from...
    ~/Library/Preferences/Adobe Photoshop CS5.1 Settings/WorkSpaces/KD
    to...
    ~/Library/Preferences/Adobe Photoshop CS6 Settings/WorkSpaces/KD
    Line: 215 - An error occurred when migrating the preset from...KD
    Administrative privileges are required to migrate these presets.
    error messages - Line: 215 - An error occurred when migrating the preset from...Keith
    When quiting PS - error message - Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder.

    I'm sure a lot of work went into this feature, but...
    Automated upgrades are always highly called-for but in practical terms almost never good to do.
    Trying to save a little time in setting a brand new application up seems a little silly, given that it's not a given that all your preferences and settings from the old version will be directly applicable to the new version, and an automated transfer could copy some problems latent in your old settings to the new version.
    Why not just install the new version afresh, then go through and review all the settings and make appropriate choices?  You need to get familiar with the new version anyway.
    Then, if later you find out something's missing or seems different, you can always fire up the old version and note or save the settings and make the same settings in the new version.
    This is more years of experience than I care to admit talking.
    -Noel

  • TS4002 "Unknown validation error" appears when I'm trying to sign in to mobile me under preferences. I am not receiving incoming email on my mac pro.

    "unknown validation error" appears when I'm trying to sign in to mobile me under preferences. I cannot receive email on my mac pro.

    Mobile Me was withdrawn well over a year ago. If you still see Mobile Me in your system preferences it is because you have an old operating system.
    iCloud has replaced mobile me, but you would need OS X 10.7.2 or better to use iCloud.

  • Error IWAE0037E when migrating mid-sized WebLogic 8.1 project

    Hi guys,
    I am working on a project to upgrade legacy WebLogic 8.1.5 application into Workshop 9.2.2 using the migration tool. I am getting the following error message when trying to compile the migrated EJB entity bean codes. No warnings were reported during the upgrade process. I tried searching in Dev2Dev for IWAE0037E but no results were returned. Please let me know if you have encountered similar issues and any pointers on how to resolve them. Thanks in advance. :^O
    Error Message:
    IWAE0037E The interfaces of the linked enterprise bean WorkGroupBean do not match those in EJB ref ejb/WorkGroupBean in module EJB.jar.
    The error points to the application.xml generated by WebLogic 8.1.5.
    This is the original EJBgen annotations and the import wizard inserted annotations.
    * @ejbgen:entity default-transaction="Mandatory"
    *   ejb-name = "WorkGroupBean"
    *   data-source-name="ds.CommonDS"
    *   table-name = "WORKGROUP"
    *   prim-key-class = "java.lang.Integer"
    * @ejbgen:jndi-name
    *   local="ejb.WorkGroupLocal"
    * @ejbgen:file-generation local-class = "true" local-class-name="WorkGroupLocal" local-home = "true" local-home-name="WorkGroupLocalHome" remote-class="false" remote-class-name="WorkGroup" remote-home="false" remote-home-name="WorkGroupHome" value-class = "false" value-class-name = "WorkGroupValue" pk-class = "true"
    * @ejbgen:finder ejb-ql="SELECT OBJECT(o) from WorkGroupBean as o" generate-on="Local" signature="Collection findAllWorkgroupBeans()"
    * @ejbgen:finder ejb-ql="SELECT OBJECT(o) from WorkGroupBean as o where o.wkgName = ?1" generate-on="Local" signature="Collection findWkgId (java.lang.String gParamValue)"
    @Entity(defaultTransaction = Constants.TransactionAttribute.MANDATORY,
            ejbName = "WorkGroupBean",
            dataSourceName = "ds.CommonDS",
            tableName = "WORKGROUP",
            primKeyClass = "Integer")
    @FileGeneration(localClass = Constants.Bool.TRUE,
                    localClassName = "WorkGroupLocal",
                    localHome = Constants.Bool.TRUE,
                    localHomeName = "WorkGroupLocalHome",
                    remoteClass = Constants.Bool.FALSE,
                    remoteClassName = "WorkGroup",
                    remoteHome = Constants.Bool.FALSE,
                    remoteHomeName = "WorkGroupHome",
                    valueClass = Constants.Bool.FALSE,
                    valueClassName = "WorkGroupValue",
                    pkClass = Constants.Bool.TRUE)
    @Finders({
        @Finder(ejbQl = "SELECT OBJECT(o) from WorkGroupBean as o",
                generateOn = Finder.GenerateOn.LOCAL,
                signature = "Collection findAllWorkgroupBeans()"),
        @Finder(ejbQl = "SELECT OBJECT(o) from WorkGroupBean as o where o.wkgName = ?1",
                generateOn = Finder.GenerateOn.LOCAL,
                signature = "Collection findWkgId (java.lang.String gParamValue)")
    @JndiName(local = "ejb.WorkGroupLocal")
    @WeblogicCompatibility(entityAlwaysUsesTransaction = Constants.Bool.TRUE)

    Hi Vincent
    I found couple of support cases where the same error happened because of CMR in EJB or due to the way you import your ejb project for upgrade.
    Could you please open a support case at http://support.bea.com and an engineer would be able to look at your application and help you with it?
    Vimala-

  • "Multiple Validation errors" message when creating new project in   FCPX

    As a test I have now managed to change the file format from older quicktime file to .m4v and  import into FCPX.  I had to use Handbrake to change the file format to .m4v. If a free software can do this then why can't the $300 FCPX - and allow me to import directly?  This would save me MANY hours of extra work!
    But then, when I try and edit this - first trying to create a new project  I get the message "Multiple validation errors occurred"  The same message even if I try and custon settings rather than use the default
    Does this mean that after all the work and hours it took me to tarnscode the file format, import and then render etc - I will be unable to use FCPX - to edit this footage?

    Update on trying to create a new project - and getting "Multiple Validation errors" message
    I quit FCPX and tried to use iMovie to make a clip to send to you.  Decided against this - and so I opened FCPX again
    To my surprise there were now over ten projects - as every attempy had appeared!  This is bizarre - why did they not show up when I tried to create them first? 
    So, I had to delet most and just use one.  This appears to be working as a project and is allowing me to edit clips into it.
    It will be a reall bummer though if I have to do this every time I need to create a new project!

  • Mandatory field validation error occurs when user cancels out of blank "cre

    Hi - I'm building an application using Oracle 10g 9.0.5.2, with ADF/UIX/Struts.
    I followed the technique described in the tutorial
    http://otn.oracle.com/obe/obe9051jdev/uixtutorial/lesson_uix.htm
    In that example they have a page called BrowseDeptEmp. On this page is a
    create button, which is linked to a /createEmpAction before displaying the
    FormEmp uix page, where the user is supposed to enter new employee data.
    So I did the same thing, but I added a cancel button on the FormEmp.uix page.
    If the user presses cancel on the FormEmp page, it goes through a 'rollback' DataAction (with a rollback operation dragged on it) and then back
    to the main page.
    here's my problem:
    If the user
    1. clicks the create button on the BrowseDeptEmp page
    2. Sees the blank form in the FormEmp page
    3. Changes his mind (does not want to add a new employee) and clicks cancel
    The FormEmp page displays validation errors on the fields that are mandatory in the DB! So the user
    can't cancel out of the create page unless he fills in the mandatory fields...!!
    How do I cancel out of a create page 1) without entering any data on the page and 2) without getting
    mandatory field validation messages?
    It must be simple but i can't figure it out....
    Please help :)
    Thanks
    Des

    I don't understand how this can happen if the user has not entered any data.
    Is there a commit action somewhere that is being triggered before the rollback?
    is your cancel button a submit button?
    one way to fix this is to convert the submit button into a
    regular button and have the regular button go directly to your DataAction (the one with the rollback).
    you can automatically create this button by drawing a pageLink from the page to the DataAction in the page flow diagram.

  • "Entitlements are not valid" error message when trying to sync ipa file from iTunes to iPad

    Is anyone else getting this error message, "Entitlements are not valid",  when trying to sync .ipa file from iTunes to iPad?
    The issue I'm having is getting the ipa file that was built by the 'Adobe Flash Packager for Iphone' installed into my iPad.
    So, I have a swf file that works and was able to publish it into the Android Market.  I then compiled and build the same flash project with the Packager for Iphone into an .ipa file.  But when I try and install this .ipa file into my iPad to do my testings, i'm getting the error message. 
    I would like to test my ipa file in my iPad device before submitting it to the Apple Store.
    Any help would be appreciated. thank you.

    Developing for iphone can be amazingly complicated and frustrating.  (even before you start coding).  The process of having to create a Certificate, to approving the Certificate, to Assigning the deviceIDs to the certificate, to creating the AppIDs, to creating the provisioning profiles and then creating the .p12 file... is just too tedious. 
    I solved the problem of the "Entitlements are not valid".   The AppID i had set in the iPhone Developer Portal did not match that of the AppID i had set in the Adobe Flash CS5 -> Publish Settings.  (ie. com.yourdomainname.yourappname).  After I re-entered my AppID and compile, i was able to sync the .ipa file into my ipad. 
    I wish the error message had been a little more descriptive.  Could have saved me a whole day.
    I hope this helps others.  But my guess is, if you don't set the 40 character device ID correctly, or the email in the signingcertificate correctly, you'll get this same generic error message.

  • Unknown error (0x1008) when migrating to cluster shared volume.

    Hi All,
    Currently have 4 HV hosts with FC IBM SAN. Each host is Hyper-V Server 2008 R2 6.1.76.01, System Center 2012 Virtual Machine Manager 3.0.6062. The SAN has been broken up into 20 LUN's, each LUN has been formatted NTFS and hosts the single VHD file for each
    of the 20 VM's.
    We have provisioned a 3TB CSV to use as a sort of staging area and are attempting to migrate each VM to this in order to consolidate and recreate the individual LUN's into another CSV.
    When attempting to perform a live storage migration we receive the following error almost instantly.
    Error (12711)
    VMM cannot complete the WMI operation on the server (DGHVS02.example.com.au.local) because of an error: [MSCluster_Resource.Name="DTHV_EXAMPLEVM03_8abc6468-ae4a-41db-bd67-d787b81a6772"] 
    Unknown error (0x1008)
    Recommended Action
    Resolve the issue and then try the operation again.
    There is nothing in the event logs on either server (VMM or HV host).
    We have also attempted to start a debug trace but the VMM event providers are missing.
    Any help would be much appreciated.

    This has been solved.
    [MSCluster_Resource.Name="DTHV_EXAMPLEVM03_8abc6468-ae4a-41db-bd67-d787b81a6772"]
    This is resource is added by DoubleTake to each VM which manages live replication to a DR site. Once replication was stopped for this VM storage migration worked.
    Hope this helps someone else.......

  • Error message when viewing site in IE on PC

    I've designed a site for a client using Muse. The site works great in all the Mac browsers and Chrome and Firefox for PC. When viewing it using IE, I get an error message (attached) when going from the home button to a certain page. The rest of the site works fine and the page works with nothing missing once I hit the OK button.
    Anyone have any idea what is causing the error and how to remedy the IE problem? Any help would be appreciated.
    TIA

    I had a quick look at your code and found;
    The issue happens on page load and is not confined to the button.
    When I copy| paste the page code into my browser I can load it without errors… this suggests a script error of some kind.
    <link rel="stylesheet" type="text/css" href="css/where-to-buy.css?459606632" id="pagesheet"/>
    <!--[if lt IE 9]>
    <link rel="stylesheet" type="text/css" href="css/iefonts_where-to-buy.css?78722181"/>
    <![endif]-->
    <!-- Other scripts -->
    This comment is suspicious but I can't see that style sheet to test it… did you comment it out to test a font and forget to put it back?

  • Misleading Error message when saving Site

    Need Help, Dreamweaver CS5 reports that the root folder for the site I am saving in going to save it in another folder. I have checked all folder links in the site configuration dialogs but none point to the root folder displayed in the error message. This seems to be a configuration file error. I have multiple sites and it seems to happen on all of the site when I save any site configuration.

    My local sites are setup as follows:
    Using two local webservers:
    Zend
    Coldfusion
    No confilcts on webservers, I only run one webserver at a time.
    localhost:8500 is Coldfusion
    localhost:8080 is Zend
    Have a testing directory with the same name as the local directory in the proper hdocs or www for the proper language.
    All have remote sites and are active and functional.
    Local Sites Respository (Each Site is a self contained website, Some static, Some PHP, Some Coldfusion)
    For Example:
    C:\Users\SEOMarketing\My Web Sites\Newcar
       No Local Testing Server
    C:\Users\SEOMarketing\My Web Sites\Ventura-Stone
      No Local Testing Server
    C:\Users\SEOMarketing\My Web Sites\NewDraperySite
      Local Testing Server C:/Program Files (x86)/Zend/Apache2/htdocs/NewDraperySite
    C:\Users\SEOMarketing\My Web Sites\FBG
      Local Testing Server C:/Program Files (x86)/Zend/Apache2/htdocs/FBG
    C:\Users\SEOMarketing\My Web Sites\learningcoldfusion
      Local Testing Server: C:/ColdFusion9/wwwroot/learningcoldfusion

  • Error message when migrating Mail.

    I've installed Yosemite on a 5 or 6 year old iMac. When I try and open mail it starts to migrate my old data and I get this error message:
    Your Mail index has been damaged. To repair it quit Mail. Mail will repair the index the next time you open Mail.
    First off, Mail is not open. When I try and open it, it starts to migrate again and I get the same error message.
    Thanks for any help.

    I recently upgraded from OS X 10.6 to 10.10. I encountered failure identical to the above post. Here was one possible workaround
    Restore a recent backup of my computer (running 10.6) to an external drive.
    Startup my computer from the external drive.
    Upgrade to 10.7. (I suppose 10.8 or 10.9 might have worked.)
    Launch "Mail" and allow it to upgrade mail from 10.6 to 10.7. Repeat this step for each user account of the computer.
    Upgrade to 10.10.
    Launch "Mail" and allow it to upgrade mail from 10.7 to 10.10. Repeat this step for each user account of the computer.
    Thoroughly test to ensure all data is present.
    Use a cloning app such as SuperDuper, clone from the external drive to the internal drive. This will erase the internal drive, so step #7 above is critical.
    Variants of this procedure are possible. For example, this variant involving Migration Assistant also seems to work.
    Restore a recent backup of my computer (running 10.6) to an external drive.
    Startup a computer from the external drive.
    Locate a computer running 10.7. (I suppose 10.8 or 10.9 might have worked.)
    Use Migration Assistant to relocate your account(s) from the 10.6 external drive to the 10.7 computer.
    Launch "Mail" and allow it to upgrade mail from 10.6 to 10.7. Repeat this step for each user account of the computer.
    Thoroughly test to ensure all data is present.
    Startup your computer in the already upgraded 10.10.
    Delete your account(s) from 10.10. This will erase data, so step #6 above is critical.
    Use Migration Assistant to relocate your account(s) from the 10.7 computer to your 10.10 computer.
    Launch "Mail" and allow it to upgrade mail form 10.7 to 10.0. Repeat this step for each user account of the computer.
    Summation: If you want to keep "Mail", don't upgrade directly from 10.6 to 10.10. Step up with something in between. Hopefully a future patch to 10.10 will make the upgrade from 10.6 easier.
    More advanced: If you are tech savvy and know where files are stored in the Library, you can just replace many steps above with a process involving just moving the needed files. These seem to be located here in 10.6 and 10.7...
    ~/Library/Mail/
    ~/Library/Mail Downloads/
    ~/Library/Preferences/com.apple.mail.*
    Where ~ references your home folder such as Macintosh HD/Users/yourname, and where * is a wildcard for any characters.
    Tip: If you launch the Mail app, stop and restart to avoid caching issues.

  • Key not valid error message when trying to download software

    i cant download software for my envy 5532 keep getting error message ( key not valid for use in specified state ). 
    This question was solved.
    View Solution.

    This problem is related to Microsoft Update KB2918614
    The fix is to remove this update.
    How to remove a Windows Update in Vista
    If the fix works I recommend that you 'hide' it so that it doesn't get reinstalled automatically.
    Instructions below:
    If you don't want Windows to install an update, you need to hide it.
    Open Windows Update by clicking the Start button . In the search box, type Update, and then, in the list of results, click Windows Update.
    In the left pane, click Check for updates.
    When Windows finds updates for your computer, do one of the following:
    Click the link that tells you important updates are available if you have important updates to hide.
    Click the link that tells you optional updates are available if you have optional updates to hide.
    Right-click the update you don't want to install, and then click Hide update. The next time you check for updates, the update won't be automatically selected or installed.  If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
    If you found my answer helpful please say thanks by clicking on the Thumb's Up icon. Thanks!

  • Error Message when uploading site

    Ok I've designed my web site all looks good on iWeb
    I have paid for a web domain name and hosting site
    I fill out the site Publishing Settings using FTP server
    I test connection and gives me the thumbs up all is ok
    www.futurelegacies.co.uk
    I then try to publish entire site and I get error message back saying (There was an error communicating with the FTP server. Try again later or check service provider) I have checked and everything is good at server end
    Any suggestions how to upload or any how to use my designed iWeb pages and upload them another way
    Suggestions welcome
    Iain

    I often have the same problem that solves itself after a few hours.
    No explanations.

  • Error code when migrating pics from iPhotos to Photos

    Migrating iphotos to photos stops at 30% with error code  "An unexpected error had occurred".  HELP

    Maybe these two Apple documents will help:
    Migrating from iPhoto for iOS to Photos on iOS 8 - Apple Support
    Get help finding your Photos in iOS 8 or later - Apple Support

  • System Error message when deleting site

    Hi
    Not sure if anyone else is having issues with Business Catalyst, but I am trying to delete one of my sites but keep getting the following message:
    An Error Occurred
    An error occurred processing your last request.
    Please go back and try again.
    It has been the same for the last 2 days. I am a Creative Cloud member and currently have 3 sites on BC. One of them is no longer required.
    Logging in to my account and deleting through the normal procedure: Site Settings - Site Management - Delete Site. I get to the point where I put in my password but that's as far as I get before I get the error message. 
    Anyone else experiencing issues? As I'm still waiting for an answer from Adobe I thought I might throw the question out to others who may have some insight.

    Unfortunately there is no "delete" option on the BC portal for me. Not sure if it is because I am a CC user. I did read in an earlier message in one of the forums here that the delete option on the Partner Portal was removed for CC users so that they could easily access the delete option through BC instead. Not sure if that is still correct.
    To be quite honest - it seems like every time I try to delete this particular site through BC, it actually takes my other sites offline. Really strange.
    Hoping that the solution is an easy one. Adobe have replied which is good but their suggestions have not worked as yet. Still waiting for more assistance.
    Varun - I thank you for your prompt reply - I really appreciate it.

Maybe you are looking for

  • Portage from PC to Mac with adobe Creative Cloud program

    I will buy a creative cloud program to work on my PC with Microsoft Windows. If I change to a macintosh platform can I transfer my creative cloud on a Mac ?

  • Audit log missing in message in Message Monitor

    Hi, I am facing a weird problem. I found this in one of my scenario where we are using AS2 adapter and its an IDoc to file scenario. When I go to details of messages in message monitor in RWB,sometimes the Audit log is empty. It is happening randomly

  • Enterprise developer program

    Hi, My boss asked me to locate information on the enterprise developer program, I know that it's a yearly subscription of $299, but does this mean that it's $299 per developer? or can you create a team and it's just subscription per company at $299?

  • XMP metadata lost from PNG files after saveing

    Hello, i am using Photosop CS3 SDK. through my plug-in I put some metadata in the file using XMP SDK 4.4.2. For PNG files, if the file is modified and saved, all the XMP metadata is lost from the file. The following steps are being done. 1. Put some

  • Airport Express won't join my existing wireless network...

    I have Broadband in my house. I have a wireless modem also. I have spent hours trying to have Airport Express join the network so I can use the music streaming feature, but I have so far not been successful. I have seen a lot of references to it bein