AC_RunActiveContent.js , produces inproper /embed tag + fix

Hello,
After trying to get rid of some javascript errors while
debugging i noticed that the AC_RunActiveContent.js file creates an
</embed> tag which is actually not needed in proper html.
to remove this and to get rid of the error i changed line:
187 to:
187: //gideon change improper html: str += '>
</embed>';
188: str += '>';
for reference:
http://www.w3schools.com/tags/html5_embed.asp
http://www.html-reference.com/EMBED.htm
Thanks, Gideon

Thanks Rob,
I’ll give your script a shot. I’m noticing some
other strangeness with Adobe’s script. I’ve got one old
Mac OS X (10.3.9) machine to test with and both Safari (1.5) and IE
(5) have trouble with the auto install of the plug-in. Safari just
downloads the dcr to the user's hard drive (what’s up with
that? ;-) and does nothing more … IE goes to the download
page but the system is miss identified as needing the classic
plug-in. If I manually install the proper plug-in everything works.
The site has been tested with newer Macs and apparently everything
works so it could be the age of the machine … hopefully your
script will clear some of this up.

Similar Messages

  • Embed Tag Problem

    Hi;
    I have the following code:
    <body topmargin='0' leftmargin='0' marginheight='0' marginwidth='0'>
    <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='100%' height='100%' id='seaFlightPreloader' name='seaFlightPreloader'>
       <param name='movie' value='SeaFlightPreloader.swf'>
       <param name='allowfullscreen' value='true'>
       <param name='allowscriptaccess' value='always'>
       <param name="allowScriptAccess" value="sameDomain" />
       <embed id='seaFlightPreloader'
              name='seaFlightPreloader'
              src='SeaFlightPreloader.swf'
              width='100%'
              height='100%'
              pluginspage="http://www.macromedia.com/go/getflashplayer"
              type="application/x-shockwave-flash"
              allowscriptaccess='always'
              allowfullscreen='true'
       />
    </object>
    which produces 100% width but only about 10% height! See here: http://seaflightvi.com/
    What do?
    TIA,
    beno
    </body>

    Hi Raymond ,
    It is not related to JSF actually when i use <embed> tag.if i give the path of the pdf which is in my local machine it is giving that access denied.
    I pasted that pdf in my war and it is working now

  • A fast automatic tag fixer for owners of Zen and other tag based players

    Fast automatic tag fixer for owners of Zen and other tag based players.
    I've written a simple freeware utility for fixing mp3 tag discrepancies. It is intended for use before uploading a bunch of albums to a tag-only media player. There's like a million of such programs out there, but this one is based on my exprience with the Creative Zen player, so it could be useful for fellow owners of the device.
    First, the utility scans mp3 album folder tree looking for tag inconsistencies and suggesting corrections. After that you can review (and cancel/modify if needed) the corrections and apply the changes.
    The detected tag errors can be corrected either manually or semi-automatically with the integrated Discogs search. There's a tuneable compilation processing feature, which helps keep compilation albums in one piece on your player.
    You can check the utility out here http://taghycardia.narod.ru/english.html
    Feature suggestions, bug reports welcomed.

    The free program has been vastly updated since the last post.
    Now, it can find and embed cover art for mp3 albums automatically, or it can do the opposite, remove cover images from mp3 files if you need to save space on your player or mobile device. In addition, there is an ability to correct wrong track order automatically and get exact tracklists from Discogs.
    The URL is updated, too: http://taghycardia.info

  • CFGRID outputs EMBED tag in IE 6

    Weird problem: On my production machine ColdFusion outputs an
    OBJECT tag for the CFGRID generated applet and everything works
    fine. On my dev machine (same OS (Windows 2003, patch level, CF 5
    service pack, same code) for some reason ColdFusion outputs an
    EMBED tag for the CFGRID generated applet ... and the applet
    doesn't work or show up. I applied all patches and fixes for CF 5.
    I'm using XP and IE 6 against these two systems. It has to be a
    ColdFusion or server setting somewhere. I've tried it on a number
    of machines and the Java VM version of the requesting machine
    doesn't seem to matter.
    Thanks!
    Kegger

    thanks for responding. Yep, tried that also but I am still getting the same "uknown plugin" message on Firefox. Did you try that and it worked? It used to work for me when it was 1.5 but when I change it to 1.6, no go.
    I was at Java One and meant to go to the Deployment BOF to ask the team but didn't manage to get there.
    Thanks!
    Charlene

  • Choosing JRE used by Plug-in in OBJECT OR EMBED tags

    I have successfully used the type attribute of the EMBED tag to choose the Plug-in version with fire fox and used the clsid of the OBJECT tag to choose the Plug-in version used by IE to run an applet.
    Is there a way in the OBJECT or EMBED tags to force the selected plug-in to use a specific JRE that is known to be installed?

    http://www.mozilla.org/docs/web-developer/upgrade_2.html
    some text from this site:
    APPLET
    The APPLET element has been deprecated in HTML 4.01 in favor of OBJECT.
    <p>
    <applet code="HelloWorldApplet.class" height="200" width="350"></applet>
    </p>can be converted to:
    <p>
    <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    codebase=
    "http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,0"
    codetype="application/java" standby="Loading of applet in progress..."
    height="200" width="350">
    <param name="code" value="HelloWorldApplet.class">
    <!--[if !IE]>
    Mozilla 1.x, Firefox 1.x, Netscape 7.x and others will use the inner
    object, the nested object
    -->
         <object classid="java:HelloWorldApplet.class"
         standby="Loading of applet in progress..."
         height="200" width="350">
         <p>Your browser does not seem to have java support enabled
         or it does not have a Java Plug-in.<br>
         <a href="http://www.java.com/en/download/manual.jsp">You can download
         the latest Java Plug-in here. (free download; 15MB)</a></p>
         </object>
    <!--<![endif]-->
    </object>
    </p>The above code will work for MSIE 6, Mozilla-based browsers and other standards-based browsers; also, it will validate in either HTML 4.01 transitional or HTML 4.01 strict.
    Explanations on the code:
    According to HTML 4.01 recommendation, when an <object> is not rendered (because its content type is unsupported or because it does not support ActiveX controls), then the browser should render its contents instead: here, it is another <object>, an alternate <object>. Here, the inner <object> will be rendered by browsers not supporting java plug-in triggered by an ActiveX.
    classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93":
    this clsid value will make the MSIE 6 browser use the highest possible version (installed on the user's machine) of JRE. Sometimes, MSIE 6 users have several JRE plug-in versions installed.
    codebase=
    "http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,0":
    the codebase defines the minimum version for the JRE; here it is 1.4.2. In case the browser does not have a java plug-in or if its version is earlier than 1.4.2, then an automatic download of the latest 1.4.2 version will start. This may be a debatable choice: on one hand, the latest available JRE plug-in has several security patches and bug fixes, on the other hand, forcing a 15MB download without a prior explicit consent of the user can not be best.

  • Quicktime Embed Tags

    Quicktime embed tags, found at:
    http://www.apple.com/quicktime/tutorials/embed.html
    Webpage in question:
    http://taras.shacknet.nu/~public1/plpp/vintro.html
    So I'm trying to put an MP4 video on this web page. I set the AUTOPLAY tag to TRUE. According to Apple's site, the movie will start playing as soon as Quicktime has determined that enough of it has downloaded to allow for uninterupted play. Well, it seems that the movie doesn't start playing until the entire movie is downloaded. I'm completely out of ideas on how to remedy this situation. Additionally, it seems that your browser will just freeze until the whole movie is downloaded. This seems to happen in all browsers on Mac and PC. How do I fix this?
    Also, on a related topic, does anybody know how I can redirect to another web page automatically once the movie is finished? Thanks.
    Message was edited by: Sawtooth501

    So, one bit of confusion. You said that as it is right now my sight can't be viewed with Windows using IE, but I have tested it using Windows IE and I can view in in there just fine (and of course, quicktime is installed). Also, as far as the codecs, I used MP4 Video and AAC Audio, which I thought was standard.
    I did "save as" to the movie in Quicktime Pro, and that put it inside a .mov container. I swithced out the video files. It still seems that the video does not start playing automatically, but waits until the whole thing has downloaded. Am I clear to understand that the problem then is with the <embed> tags that I'm using instead of using javascript? I am a relatively new web developer, and I'm using Dreamweaver CS 3. I could figure out the javascript if I have to, but I want to keep things as simple as possible. Is switching to Javascript the only way to make the movie start automatically? Any way to do it with the <embed> tags that dreamweaver uses? Alternatively, would it be easier just to convert this whole thing to flash video and use that?
    Also, my second question still stands: How do I automatically redirect the page to a different URL once the movie is done playing? Thank you very much for the help!

  • (Quicktime) Embed Tags and upcoming ActiveX changes

    I apologize if this is not the correct forum for such a question, but the "Developer" section didn't seem quite appropriate and Apache can be considered a UNIX technology so here goes . . .
    I am updating my web pages to prepare for changes in future versions of IE, as detailed in "Apple's Preparing Websites with Active Content for Upcoming Changes to Internet Explorer for Windows". My question is using these changes, how might I present users with a "Click to Play" image that updates the web page with the appropriate code without loading a new page.
    To clarify, once a user goes to any web page, that user should be able to click an image that would load the Apple-recommended Javascript function QTWriteOBJECTXHTML in its place. I'm guessing I want a Javascript function to replace itself with another Javascript function.
    Does anyone know how to do this?
    If I find a way to do this in before I get a definitive answer, I'll post what I find.
    Thanks in advance.
    mistersquid
    Dual 2.5 GHz G5 + 15 PB 1.25 GHz + 12 iB 1.33 GHz + 1 GHz MDD   Mac OS X (10.4.6)  

    Hi mistersquid,
       This is about as far from the correct forum as you can get. This has nothing to do with Apache per se. It is purely a question about HTML and JavaScript. However, there are some folks here that do some web development so you'll probably get an answer. In fact, I'm going to take a shot at it myself if I can figure out what you want.
       I don't understand the part about the image or the purpose of the corresponding link. Why do you want the execution of the recommended JavaScript to depend on a user click?
       If I understand their recommendations correctly, the QTWriteOBJECTXHTML function is invoked as the page loads. It sounds like the change that Micro$oft makes is triggered when an <Object> tag (or similar tag) is encountered while the document is being downloaded. The trick appears to involve adding the <Object> tags as the document is being loaded. By the time the document is rendered, the <Object> tags should be in it and the document should look just like it did before the fix. Thus, I don't see any point in changing the user experience.
       If you do have some compelling reason for changing the user experience, all you have to do is to code the page for that using <Object> or <Embed> tags. Then after you have what you want, do exactly what Apple recommends and simply replace <Object> tags like before. I don't believe that <Object> tags can be containers, can they? If not, it shouldn't be possible to create a page for which their recommendations fail to work in the fashion they describe.
    Gary
    ~~~~
       Diplomacy is about surviving until the next
       century. Politics is about surviving until
       Friday afternoon.
          -- Sir Humphrey Appleby

  • Embed tags and divs?

    I have a Flash files embeded in a div. The div adds space to
    the bottom
    of the embed tag it seems. If I add line-height:0 the problem
    goes way
    visually in the browser, but in design view in DW is still
    there. I have
    also notice that the same is true for some of my other divs,
    they have
    this little space under them in design view in DW.
    #rightSide_index {
    float: left;
    width: 515px;
    padding: 0;
    margin: 0;
    /*line-height:0;*/
    http://www.agilitygraphics.com/clients/cs/
    What could this be happening? Sorry for the audio on the
    Flash file, I
    can't mute it at the moment.
    Thanks a lot!

    Hi mistersquid,
       This is about as far from the correct forum as you can get. This has nothing to do with Apache per se. It is purely a question about HTML and JavaScript. However, there are some folks here that do some web development so you'll probably get an answer. In fact, I'm going to take a shot at it myself if I can figure out what you want.
       I don't understand the part about the image or the purpose of the corresponding link. Why do you want the execution of the recommended JavaScript to depend on a user click?
       If I understand their recommendations correctly, the QTWriteOBJECTXHTML function is invoked as the page loads. It sounds like the change that Micro$oft makes is triggered when an <Object> tag (or similar tag) is encountered while the document is being downloaded. The trick appears to involve adding the <Object> tags as the document is being loaded. By the time the document is rendered, the <Object> tags should be in it and the document should look just like it did before the fix. Thus, I don't see any point in changing the user experience.
       If you do have some compelling reason for changing the user experience, all you have to do is to code the page for that using <Object> or <Embed> tags. Then after you have what you want, do exactly what Apple recommends and simply replace <Object> tags like before. I don't believe that <Object> tags can be containers, can they? If not, it shouldn't be possible to create a page for which their recommendations fail to work in the fashion they describe.
    Gary
    ~~~~
       Diplomacy is about surviving until the next
       century. Politics is about surviving until
       Friday afternoon.
          -- Sir Humphrey Appleby

  • Embed tag is not working with Mozilla Firefox 23, 24 and 25

    Requirement:
    While loading the java applet on a page, if the user system do not have plugin loaded then our code should redirect the user to get Java 1.6 plugin.
    At present I am using below two URL for automatically JRE6 download
    • IE : https://java.sun.com/update/1.6.0/jinstall-6-windows-i586.cab#Version=1,6,0,31<br />
    [When user tries to access the applet page from IE browser then he/she is getting pop-up message for JRE6 installation, provided that the user system don’t have any JRE installed]. This scenario is working IE8,9,10<br />
    • Mozilla family : https://javadl.sun.com/webapps/download/AutoDL?BundleId=60336
    Below is the used script for ‘Object’ and ‘embed’ tag:
    <pre><nowiki><script language="javascript" >
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" name="OrderApplet"';
    WIDTH = 775 HEIGHT = 600
    codebase="https:\/\/java.sun.com\/update\/1.6.0\/jinstall-6-windows-i586.cab">';
    <PARAM NAME = "type" VALUE="application\/x-java-applet;version=1.6.0_31">';
    <PARAM NAME = "scriptable" VALUE = "true" >';
    <COMMENT>';
    <EMBED type="application\/x-java-applet;version=1.6"
    pluginspage="https:\/\/javadl.sun.com\/webapps\/download\/AutoDL?BundleId=60336">
    <NOEMBED>
    <\/COMMENT>;
    <\/NOEMBED><\/EMBED>;
    <\/OBJECT>;
    </script></nowiki></pre>
    User is getting pop-up message for JRE6 installation with browser IE8, 9, and 10 and also with Mozilla Firefox 22, but it’s failing with latest version of Mozilla Firefox23,24 and 25.
    I have gone through so many sites but could find any reason for this behavior.
    I have provided JRE6 32-bit version download URL, here I don’t think so I’m doing any version incompatibility because both the JRE6 and Mozilla Firefox are 32-bit version. And 64 bit Firefox version is not available for windows.
    I’m not sure why the code is working with Firefox 22 and its lower version but
    doesn’t work with higher version than firefox22….like 23,24,25
    Can anyone help to sort out this issue?
    Thanks, <br />
    Sumit

    Sorry for the delay in getting an answer, yesterday was a holiday in the USA.
    This forum is for Firefox user support, not for web developer support. My rough guess is that since Mozilla has blocked all but the most recent update for Java 7 Plugins - https://addons.mozilla.org/en-US/firefox/blocked/ - and Firefox 23 brought in a new '''Simplified interface for notifications of plugin installation''' - http://www.mozilla.org/en-US/firefox/23.0/releasenotes/ - that is probably why you're having a problem with versions of Firefox after Firefox 22.
    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    ''You'll need to register and login to be able to post in that forum''.

  • I am trying to use the embed tag - to embed an html page with in a page embed src="page.html" /

    <pre><nowiki><!DOCTYPE HTML>
    <html>
    <body>
    <embed src="page.html" />
    </body>
    </html></nowiki></pre>

    The <embed> tag works in Windows IE 9, and Opera, Now! But not in Firefox yet. Whats up with that? I guess we will see who is going to be left behind.

  • Issue while playing video in firefox 19 using embed tag with mplayer2 plugin

    In mozilla firefox embed tag not working properly. the embed video starts playing after browser is resized. Can anyone help me out playing video in ff without resizing the browser? Below is the html code. The below code works in fine in other browser
    <pre><nowiki>
    <object id="MediaPlayer1" width="400" height="300" classid="CLSID:6BF52A52-394A-11d3- B153-00C04F79FAA6"
    standby="Loading Windows Media Player components..." type="application/x-oleobject">
    <param NAME="AutoStart" VALUE="True">
    <param name="uiMode" value="none">
    <param name="PlayCount" value="9999">
    <param name="url" value="C:\SR\documents\library\2013\Video\sample_1363245215320.avi" />
    <embed type="application/x-mplayer2" src='C:\SR\documents\library\2013\Video\sample_1363245215320.avi' NAME="MediaPlayer" WIDTH="400" HEIGHT="300" ShowControls="0" ShowStatusBar="0" ShowDisplay="0" autostart="1"> </embed>
    </object></nowiki></pre>

    Maybe try to use the file protocol instead.
    <pre><nowiki>src="file:///C:/SR/documents/library/2013/Video/sample_1363245215320.avi"
    </nowiki></pre>
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Display a message while loading using EMBED tag

    Hi
    I am using an Embed tag to pull a pdf from the backend. the pdf files are huge so it takes time to load and I want a loading message to be displayed till the form is completely loaded, so i am using onload attribute of Embed tag, but i dont think its firing because i still see the "loading" message even after the page has loaded...
    Can any one help me plzzz...

    Hi,
    Try using the FM  
    Increase the percentage for each loop        
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
                  EXPORTING
                    PERCENTAGE = 50
                    TEXT       = text-025.

  • How we will get parameters when we uses EMBED tags

    hi ,
    how we will get parameter from applet in netscape. When my swing applet using OBJECT tag, runs in IE it works fine.
    And im able to getting parameter. But in the case of Netscape (that means when i used EMBED tag) im not able to getting the parameter.
    How we will give <param tag in the case of EMBED tag. Im sending my snippet which is for only netscape.
    <EMBED type="application/x-java-applet;version=1.2.2"
    width="800" height="1200" code="myclass.class" codebase='mycodebase'
    pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html">
    <NOEMBED>
    </COMMENT>
    No JDK 1.2 support for APPLET--please download the plugin.
    </NOEMBED>
    <param name='parameter' value='value'>
    </EMBED>
    If anybody helps, very much thankful to them
    thanks in advance

    Parameters should be inside the EMBED tag, like this :
    <EMBED type="application/x-java-applet;jpi-version=1.3.1" CODE = "Editor.class" WIDTH = 350 HEIGHT = 200 scriptable=false pluginspage="http://java.sun.com/products/plugin/1.3.1/plugin-install.html"
    TOOLBAR="true"
    TOOLBAR.FLOAT="true"
    TOOLBAR.ALIGN="east"
    >
    Matthieu

  • Embed tag and validation

    I am using Dreamweaver to place .swf into my page. It
    generates an embed tag which never passes W3C validation. How do I
    place a .swf and still be compliant with the standards?

    Hi.
    SWFObject is very simple to implement:
    http://blog.deconcept.com/swfobject/
    "BrianArena" <[email protected]>
    escribió en el mensaje de
    noticias news:fpihuc$oc1$[email protected]..
    >I am using Dreamweaver to place .swf into my page. It
    generates an embed
    >tag which never passes W3C validation. How do I place a
    .swf and still be
    >compliant with the standards?

  • Embed tag always caling QT

    Hello
    I placed a simple embed tag in a page and it always calls for
    the Apple QuickTime player for what is only an mp3 file. I have
    (Windoze) configured to use the Windows Media Player for any mp3,
    but it still uses the QT. This is totally outside of the expected.
    How do I make sure it used the installed player for that file type.
    tia

    I don’t know of any way to do that.

Maybe you are looking for

  • Adobe Bridge Search Stuck On Current Folder

    to start off, the adobe bridge search feature is loaded with glitches. sometimes it works great, other times not at all. well, today when i opened the program and tried to search for some files i found that for some reason i was only able to search i

  • How to send the jsp page to .txt format

    Hi All Please suggest me how to create a .txt file using the desformat. My requirement is file should be saved as txt format and it will be sended by mail to be user pager. He can see the txt file through his pager. I tried several techniques but it

  • Query in MD04 Report

    Hi Everyone, A Query in MD04 Stock/Requirement list. Actually in MD04,after choosing the indicator in MRP2 of material master record to '2 - Storage location Planned separately' for a particular storage location, the planned orders for that materials

  • I need to download Acrobatt X Std. for reinstallation

    I need to download Acrobat X Std. for reinstallation Where do I find it and can you please provide a link? Here is my SN from what came with the Dell computer: <serial number removed by moderator>

  • Multiple values for a field

    Hi All,         In the vendor repository, i have fields like Phone No, Fax Number, Email addresss which should hold multiple values. i.e One vendor may have have multiple phone no's or email address. How should this be managed. Is it by the Qualifier