Why is Flash CC not publishing the "object class id" and the !--[if !IE] -- code like CS6 does?

Here is the HTML I get when I publish with CS6:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
          <head>
                    <title>tooneat_CS6</title>
                    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                    <style type="text/css" media="screen">
                    html, body { height:100%; background-color: #000000;}
                    body { margin:0; padding:0; overflow:hidden; }
                    #flashContent { width:100%; height:100%; }
                    </style>
          </head>
          <body>
                    <div id="flashContent">
                              <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="2560" height="1160" id="tooneat_CS6" align="middle">
                                        <param name="movie" value="tooneat_CS6.swf" />
                                        <param name="quality" value="best" />
                                        <param name="bgcolor" value="#000000" />
                                        <param name="play" value="true" />
                                        <param name="loop" value="true" />
                                        <param name="wmode" value="window" />
                                        <param name="scale" value="showall" />
                                        <param name="menu" value="false" />
                                        <param name="devicefont" value="false" />
                                        <param name="salign" value="" />
                                        <param name="allowScriptAccess" value="sameDomain" />
                                        <!--[if !IE]>-->
                                        <object type="application/x-shockwave-flash" data="tooneat_CS6.swf" width="2560" height="1160">
                                                  <param name="movie" value="tooneat_CS6.swf" />
                                                  <param name="quality" value="best" />
                                                  <param name="bgcolor" value="#000000" />
                                                  <param name="play" value="true" />
                                                  <param name="loop" value="true" />
                                                  <param name="wmode" value="window" />
                                                  <param name="scale" value="showall" />
                                                  <param name="menu" value="false" />
                                                  <param name="devicefont" value="false" />
                                                  <param name="salign" value="" />
                                                  <param name="allowScriptAccess" value="sameDomain" />
                                        <!--<![endif]-->
                                                  <a href="http://www.adobe.com/go/getflash">
                                                            <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                                                  </a>
                                        <!--[if !IE]>-->
                                        </object>
                                        <!--<![endif]-->
                              </object>
                    </div>
          </body>
</html>
And here is the HTML I get when I publish with CC:
<!DOCTYPE html>
<html>
          <head>
                    <meta charset="UTF-8">
                    <title>tooneat</title>
                    <style type="text/css" media="screen">
                    html, body { height:100%; background-color: #000000;}
                    body { margin:0; padding:0; overflow:hidden; }
                    #flashContent { width:100%; height:100%; }
                    </style>
          </head>
          <body>
                    <div id="flashContent">
                              <object type="application/x-shockwave-flash" data="tooneat.swf" width="2560" height="1160" id="tooneat" style="float: none; vertical-align:middle">
                                        <param name="movie" value="tooneat.swf" />
                                        <param name="quality" value="best" />
                                        <param name="bgcolor" value="#000000" />
                                        <param name="play" value="true" />
                                        <param name="loop" value="true" />
                                        <param name="wmode" value="window" />
                                        <param name="scale" value="showall" />
                                        <param name="menu" value="false" />
                                        <param name="devicefont" value="false" />
                                        <param name="salign" value="" />
                                        <param name="allowScriptAccess" value="sameDomain" />
                                        <a href="http://www.adobe.com/go/getflash">
                                                  <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                                        </a>
                              </object>
                    </div>
          </body>
</html>
Also why are the DOCTYPE html and html tags different? The HTML published by CC is missing all that jazz about W3C....??

Nested object embeds when used with IE conditionals actually have greater compatibility, but we're stretching the mark back to IE5-8:
http://www.bobbyvandersluis.com/flashembed/testsuite/
You can see SWFObject's example communication with callback page utilizes it (view source):
view-source:http://www.bobbyvandersluis.com/swfobject/testsuite_2_2/test_com2.html

Similar Messages

  • Attempting to understand object/class data and the actor framework...

    I'm currently trying to understand why changing a typedef within class data of a class (named measurement.lvclass) causes all of the "launch nested actor" vi's to break.  I feel like I'm trying to use a ratchet with a phillips screw or something, is there something I'm fundamentally missing here? 
    I was under the impression that you can populate class data clusters with information that might require read/write in different methods (the vis in the measurement class called by the do.vi of that particular msg class... we still call them methods right?).
    thx

    Thanks for the tips, theyre appreciated, 
    I think I can chalk this one up to a lack of communication with another developer on the project...  We actually found a realy interesting issue involving a type def input on a subvi where any updating of it causes labview to crash when you attempt to save that subvi. if I get time I want to try to isolate it and maybe post it up here for a closer look under more experienced eyes...  due to being under pressure, we had to disconnect form the type def and basically update it manually which is a PITA but got the system running...
    thanks again
    -pat

  • Flash AS3 OOP = Can 1 objects class find and change another objects xy properties?

    What I have is a game with a Level object, inside the Level is a Player object, and they don't have instance names given, what I'm trying to figure out is how to do is make it so that the player can change the x or y properties of the Level object.
    To be more precise, I'm making it so that when the player moves in a certain direction, he either moves accross the stage, or he starts moving the Level object around the stage, it'd be in an Event kind of function, now I can easily make the Player move, but I don't know how to make the Level object move which the player is inside of.
    Is anyone able to help me on this please?

    I tried a simple getter setter idea, but it doesn't seem to work
    public class Mover
      private var _moveValue:Number = 5;
    public function Mover()
      Player.shift = _moveValue;
    public class Player
    private var _vx = 0;
    public static function set shift (_move:number):void
      _vx = _move;
    public function Player
    addEventListener(Event.ENTER_FRAME, onEnterFrame);
    function onEnterFrame(event:Event):void
    x += _vx;
    Thats with my limited imagination and knowledge of AS3 here so far... is that going completely wrong? If so are there any good examples or tutorials I could check out to get a better idea of what I'm trying to do?

  • Why ill the flash player not intialize even after disabling firewall and antivisurs software

    Why will the flash player not intialize even after disabling firewall and anitvirus software?

    Windows XP and internet exployer?  I can get the flash player to begin the
    download but stops at about 50% initalization
    Greenleaf Compaction, Inc.
    142 W. Main
    P.O. Box 265
    Hopkins, MI  49328
    Phone:  1-877-552-9369
    Fax:  (269) 793-7298
    New email address: [removed]

  • Flash will not publish + FLV question

    Hello,
    I am currently building a game in Flash CS4, but am stuck due to a Flash problem. I have searched the forums for a sollution, but have yet to find one.
    The Problem:
    Adobe Flash will not export, or publish my .FLA file, nor will it create a .SWF at the chosen destination under the publish settings. Whenever I try to export/publish my .FLA, the export/publish pop-up window opens, and the progress bar runs all the way through. Once that is done, the window which normally appears immediately afterwards, in order to test the flash, does not appear.
    Furthermore, Flash seems to have deleted the .SWF, and any other files I wish to publish the moment the publish/export process is completed.
    The strange thing about this problem is that I may be lucky and have Flash actually export and publish correctly on its first go. However, when I try again, it won’t publish/export until I restart flash.
    This problem happened on three separate windows machines (Vista and 7) under both Flash CS4 and CS5.
    Note:
    I have discovered that this problem may be related to the many embedded FLV video clips I have created for the game’s character animations (6+ characters with 30 very short animations each).
    These animations were rendered in a 3D CG software, which were then edited in Adobe After Effects, and exported as .FLVs for use in Flash.
    Oddly enough, once I’ve deleted all the embedded FLV clips from the library, Flash will once again publish and export. This is not an acceptable solution to my problem, however. I already searched for any corrupted FLV files, but could not find any.
    My questions are:
    1. What can I do to make Flash publish/export once again, while having my embedded .FLV clips within the library? Is there something I am over-looking, or any settings I must change in Flash?
    2. Which settings (in Adobe After Effects) are best to export .FLVs for use in flash?
    3. If I cannot use FLVs, what other options do I have, in order to use my CG animations in Flash? I tried PNG sequences, but Flash complains about low memory, and crashes (FLVs were working great up until now).
    Any help would be greatly appreciated. Thank you in advance.

    I've also experienced problems with the Publish process dropping out and failing to complete - no error messages in the Output pane or Compiler errors, just a total hang of the Publish status bar (and no published files...).
    I can't say I've pinpointed the exact cause of this, but it may be related to having all objects on the Stage locked (possibly when they are not placed in the main canvas area).
    Adding a new layer and creating a new object seems to help.  If the publish process (including TestScene) has stalled, restart Flash and reload the movie...
    Hope that helps!  It's kinda scary watching that Publish bar disappear into nothingness when you've got literally hours/minutes/seconds left to get the thing built and running :-)

  • HT4623 why my iphone are not responding after i update the latest ios? and the screen displaying itunes icon

    why my iphone are not responding after i update the latest ios? and the screen displaying itunes icon

    You are in Recovery Mode. Follow the instructions below to recover your iPad.
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    If you cannot turn off the device using the slider, press and hold the Sleep/Wake and Home buttons at the same time. When the device turns off, release the Sleep/Wake and Home buttons.
    3. While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button.
    5. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: You need to be patient and repeat the above many times to recover your iPad. Data will be lost.

  • Lightroom 5.6 When I try to publish the photos from Lightroom to SmugMug I get an error Canceling task at the top left side and the photos are not published. I have published photos before just last week so not sure whats going on. Any help would be great

    Lightroom 5.6 When I try to publish the photos from Lightroom to SmugMug I get an error Canceling task at the top left side and the photos are not published. I have published photos before just last week so not sure whats going on. Any help would be great.

    See my first post in this topic:
    https://discussions.apple.com/message/21371126#21371126
    Trashing the preference file may help, as I've outlined in the topic I've linked to. Otherwise, follow the steps regarding removing 3rd party QuickTime components. Also, see the final post by the OP (EEye87) regarding how his problem was resolved (a combination of trashing the preference file and the 3ivx component).
    John

  • I have the new iphone 4s and the camera shutter wont open so i can not take photos it is only 4 weeks old dose anyone know why? :(

    have the new iphone 4s and the camera shutter wont open so i can not take photos it is only 4 weeks old dose anyone know why?

    Have you tried resetting your device by pressing and holding the Home button and power button until the silver apple appears?
    The next step would be to restore the iphone as new in iTunes. If that doesn't work, make an appointment at the Genius Bar at the nearest Apple Store.
    Best of luck.

  • I recently updated my new iphone 4 from ios6 to ios7. All of a sudden, my screen crashed and is now in a flashing white state with lines. I've reset the settings multiple times and the flickering has not disappeared. Please help

    I recently updated my new iphone 4 from ios6 to the current ios7. It has been in use for a few days now and all of a sudden the screen crashed to a white display with lines. I have reset it a couple times but there has been no improvement in reducing the screen flicker. Please help

    First try a Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least Ten seconds... (But can take Longer)... until the Apple logo appears. Release the Buttons
    If no joy... Try a Restore...
    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    3: If the device doesn't appear in iTunes, try using the Steps in this article to force the device into Recovery Mode.
    From Here
    http://support.apple.com/kb/TS3281
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Note on Recovery Mode.
    You may need to try this More than Once... Be sure to Follow ALL the Steps...

  • Why do I get a class conflict between the Prepare SQL.vi and the Get Column Name.vi with the SQL Toolkit compatibility vis from the Database Connectivity Toolkit?

    I have done extensive programming with the SQL Toolkit with LabVIEW versions through 6.1. My customer now wants to upgrade to Windows 7, so I am trying to upgrade to LabVIEW 2009 (my latest purchased version) using the Database Connectivity Toolkit, and the SQL Toolkit Compatibility vis. Everything seemed to be going okay with the higher level SQL operations, but I ran into trouble with the Get Column Name.vi. 
    The pictures below show the problem. The original SQL Toolkit connected the Prepare SQL.vi with the Get Column Name.vi with a cluster of two references, one for connection, and one for sql. The new compatibility vis have a class conflict in the wire because the Prepare SQL.vi contains a cluster with connection, and command references, but the Get Column Name.vi expects a cluster with connection and recordset references. 
    How do I resolve this conflict?
    Thank You.
    Dan

    I've never worked with the old version of the toolkit, so I don't know how it did things, but looking inside the SQL prep VI, it only generates a command, and the the column name VI wants a recordset. I'm not super familiar with all the internals of ADO, but my understanding is that is standard - you only have the columns after you execute the command and get the recordset back. What you can apparently do here is insert the Execute Prepared SQL VI in the middle and that will return what you need.
    I'm not sure why it worked before. Maybe the execute was hidden inside the prep VI or maybe you can get the column names out of the command object before execution. In general, I would recommend considering switching to the newer VIs.
    Try to take over the world!

  • HT201272 You seems not to understand what I mean and what I'm having like problem. I still have my payment recut  from October of this year when I bought 9 songs in the iTunes Store from my iPhone 4S. The problem is from all the 9 songs, 7 are still avail

    You seems not to understand what I mean and what I'm having like problem. I still have my payment receipt  from October of this year when I bought 9 songs in the iTunes Store from my iPhone 4S. The problem is from all the 9 songs I've paid for, only 7 are still available from this list on my iPhone. There is no possibility to download the other 2 without paying for them. I've spoke to the lady from Mississippi on the phone 2 days ago from about 2 hours calling from Belgium but unfortunately she couldn't help me. It's the 3rd time I complain about this. How many time shall I pay for the same songs?? If you can access my music list and my past receipts payment you will be able to find out what I mean. I went back on iTunes I've found the the songs I already downloaded in October that should be on my playlist but if I click on them it will charge me again 0,99 cents. It's been 3 years I've been using the same apple ID with my iPhones. I just wand to get my songs back without having to pay them twice or 3 times

    1. iTunes won't offer cloud downloads for songs that it "thinks" are in your library, even if it "knows" the files are missing. If you've exhaustively searched for the missing files and there is no prospect of repair by restoring to them to their original locations, or connecting to new ones, then delete that tracks that display both the missing exclamation mark and are of media kind Purchased/Protected AAC audio file. Don't hide from iTunes in the cloud when asked, close iTunes, then reopen. You can download from the cloud links or iTunes Store > Quicklinks > Purchased > Music > Not on this computer > All songs > Download all.
    2. Why? Not sure, perhaps 3rd party tools or accidental key presses combined with previously hidden warning messages when trying to organize the library. There is a hint that using the feature to downsample media as it is synced to a device may also be involved, though I've not replicated it. Whatever the reason a backup would protect your media.
    tt2

  • My phone stuck on the log in screen and the only thing apears the apple logo why is that happening?

    my phone stuck on the log in screen and the only thing apears the apple logo why is that happening?

    First try a Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least Ten seconds... (But can take Longer)... until the Apple logo appears. Release the Buttons
    If no joy... Try a Restore...
    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    3: If the device doesn't appear in iTunes, try using the Steps in this article to force the device into Recovery Mode.
    From Here
    http://support.apple.com/kb/TS3281
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Note on Recovery Mode.
    You may need to try this More than Once... Be sure to Follow ALL the Steps...

  • TS3694 why while updating my software there's a error 21 and the iphone get disconnected?

    why while updating my software there's a error 21 and the iphone get disconnected?

    Error 20, 21, 23, 26, 28, 29, 34, 36, 37, 40
    These errors typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.

  • Explicitly extending the Object class

    Hi Everyone,
    I am aware that every object that is running inside a JVM inherits from class Object implicitly. Recently I have come across some code that explicitly extends the Object class, is there any advantage in doing this, please see the code snippet below:
    public class MyClass extends Object{}Thanks heaps for your assistance.
    Regards
    Davo

    I've even seen a
    method that was declared "throws NullPointerException"shouldn't it have been "throws java.lang.NullPointerException" ...
    - I almost cried. Yes, thats truly a terrible habit :(
    a distant cousin of that habit is one I have noticed where the developer
    is totally unable to name anything appropriately..
    to print some things to the screen: "loadData"
    to print things to screen again: "getInformation" *(note: did not 'return' anything).
    ... :(

  • Any idea why a 3 month old new IPad won't turn on?  It has been charged today and was working perfectly last night while I used it to read a book.  I have tried both the sleep/wake button and the on/off button on the front.  Nothing is happening.

    Any idea why a 3 month old Ipad will not turn on?  It has been charged and I haved tried the sleep/mute button and the on/off button on the front.  Nothing is
    happening.  It was working fine last nigh?

    1. Hold both the Sleep/Wake and Home button down together
    2. For 10 to 15 seconds
    3. Until you see the Apple logo
    4. Ignore the red slider
    Note: Repeat it if it doesn't work the first time

Maybe you are looking for

  • Scanning with Acrobat 9

    I am having some strange problems with an application after an upgrade from Acrobat Pro 5 to Acrobat Pro 9. What the application is supposed to do is to scan a document to PDF, save it to some temporary location, display it on the screen and later sa

  • Ticker will not display in IE

    hello I had found this ticker from dynamicdrive....it works good in firefox but not in IE my page currently is at www.meadowlarkco.com/contactus2.php the link to the ticker referencing this is at http://www.dynamicdrive.com/dynamicindex2/ajaxticker.h

  • Hyperion Planning form change not flowing through to Smart View

    Hyperion Planning 11.1.2 and Smaer View 11.1.2. I have a user that installed SV yesterday but has been using planning for years. I made a change on his planning form (just added an account) and he does not see this change in smart view. However, he d

  • Where can I find Safari 2.x

    I accidentally deleted safari entirely a while ago and i've been using Firefox ever since, but now I want to install the new Safari beta and an older version is required in the Applications folder. Where can I download Safari 2.x? PLEASE REPLY IF YOU

  • Bridge CS 5.1 too slow to be usable

    Hi everyone, I'm on a Mac Book Pro (2.8 GHz Intel Core Duo + 4 GB DDR3) and when I upgraded from CS5 to CS5.5, I realized that my new Bridge (5.1) was really full of issues... I click on buttons, and nothing happen (then 2 minutes later, it finally h