Adobe Connect Enterprise Server 6 doesn't work on Firefox and Chrome

Hi everyone,  we are using adobe connect enterprise server 6 recently the layout on Chrome and Firefox looks horrible but it works fine on IE, i have attach a photo of how it look on Firefox, any suggestion what the problem might be, thanks in advance.
When we get this when we login:
function showContentWithNav(url, pres, session, cw, ch, noScale, scrollbar, toolbar, status, location, target) {
        if (target == undefined)
            target = "";
no need for adding session in URL. could be misused or mistakenly sent by user to others.
and then used to access to webapp by someone.
-- REMOVING IT   --
var w, h, l, t;
if (pres) {
w = 0.96 * screen.width;
h = 0.76 * screen.height;
l = (screen.width - w) / 2;
t = (screen.height - h) / 2;
} else if (noScale) {
w = cw;
h = ch;
l = (screen.width - w) / 2;
t = (screen.height - h) / 2;
} else {
if (cw > 0 && ch > 0) {
if (cw <= screen.width) {
w = cw;
h = w * ch /cw;
if (h > screen.height) {
h = screen.height;
w = h * cw / ch;
} else {
w = 0.4 * screen.width;
h = 0.3 * screen.height;
l = (screen.width - w) / 2;
t = (screen.height - h) / 2;
var options = "toolbar=" + toolbar + ",status=" + status + ",location=" + location + ",resizable=1,left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
if (scrollbar==false)
options += ",scrollbars=no";
else
options += ",scrollbars=yes";
var win = open(url, target, options);
     * Default showContent window, which displays popup w/ no navigation.
    function showContent(url, pres, session, cw, ch, noScale, scrollbar, target) {
      var toolbar = 0;
var status = 0;
var location = 0;
showContentWithNav(url, pres, session, cw, ch, noScale, scrollbar, toolbar, status, location, target);

I opened a new Flex project and then tried again. I finally found that it's not a problem of flash but div rendering.
It seems Firefox and Chorme don't pass mouse wheel event automatically if div layout is set to "absolute".
Although this is not a Flex issue, any idea of passing that event to flash will be appriciated. I haven't find a way to do it so far :-(
What I'm doing is editing the "index.tamplate.html" to test. I added a div to contain the div of "flashContent" and set it's style to:
    position: absolute;
    top: 150px; left: 150px;
    height: 250px; width: 250px;
    z-index: 10;
Another div's z-index is set to 1 to test the overlay effect.
The reason why I added a div to contain the original div of flash, is I cannot figure out a way to effectively edit the CSS of the "flashContent" div.
Any help will be thankful!!

Similar Messages

  • CpSetValue doesn't work in Firefox and Chrome?

    I've made changes in CaptivateMaintimeline.as as suggested by Jim Leichliter in his blog. And I use the following simple htm:
    <!-- Copyright [2008] Adobe Systems Incorporated.  All rights reserved -->
    <!-- saved from url=(0013)about:internet -->
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>test</title>
    <script src="standard.js" type="text/javascript"></script>
    </head>
    <body   bgcolor="#F1F4F5">
    <center>
    <div id="CaptivateContent"> 
    </div>
    <script type="text/javascript">
       var so = new SWFObject("test1.swf", "Captivate", "924", "557", "9", "#CCCCCC");
    so.addParam("quality", "high");
    so.addParam("name", "Captivate");
    so.addParam("id", "Captivate");
    so.addParam("wmode", "window");
    so.addParam("bgcolor","#F1F4F5");
    so.addParam("menu", "false");
    so.addVariable("variable1", "value1");
    so.setAttribute("redirectUrl", "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash");
    so.write("CaptivateContent");
    </script>
    <script type="text/javascript">
    //document.getElementById('Captivate').focus();
    //document.Captivate.focus();
    setCaptivateVariable("username", "Ahmet Cetin");
    setCaptivateVariable("useremail", "[email protected]");
    setCaptivateVariable("userid", "58345");
    document.getElementById('Captivate').focus();
    document.Captivate.focus();
    //document.reload;
    //JBL:  Custom Function to set Captivate Vars via Javascript
    function setCaptivateVariable(myVariable, myValue)
    //alert(myVariable + ": " + myValue);
    //alert("");
    document.getElementById('Captivate').jim_cpSetValue(myVariable, myValue);
    </script>
    </center>
    </body>
    </html>
    When I run this in IE8, it works almost! perfectly (when I show $$useremail$$ in label in CP4, it shows only [email protected] - one character missing, but anyway, it is not really important for now).
    The funny thing is this code doesn't work in Firefox or Chrome. But when I enable any of the alert inside the setCaptivateVariable function, it works also almost! perfectly. Any idea?

    Hi Ahmet and welcome to the forums!
    When you use a text caption to display variables in Cp, you also have  the option to choose how many characters get displayed.  The default is  15.  If you know your variable will be larger, set the value  accordingly.  Also, document.getElementById('Captivate') works only for  IE.  document.Captivate works for the rest.  Look at the default.htm publishing  template provided by your Captivate install to see how they detect the  browser.  You can do it their way, but I prefer using jQuery to do the  browser detection.  It's cleaner and easier to implement.

  • Bug? Mouse wheel doesn't work on Firefox and Chrome when added an application skin

    I added a customized skin to make the background of Flex to transparent. The skin is created by the "new file wizard" and only changed the "backgroundRect" 's alpha to "0".
    It works with no problem in IE8.0.6001 and Opera11.6 but doesn't respond to any mouse wheel event in FireFox 11.0 and Google Chrome 17.0.963.79.
    Is it a BUG?
    The flash player's versions are: IE:11.1.102.55; FireFox:11.1.102.55; Chrome:11.1.102.63; Opera:11.1.102.55

    I opened a new Flex project and then tried again. I finally found that it's not a problem of flash but div rendering.
    It seems Firefox and Chorme don't pass mouse wheel event automatically if div layout is set to "absolute".
    Although this is not a Flex issue, any idea of passing that event to flash will be appriciated. I haven't find a way to do it so far :-(
    What I'm doing is editing the "index.tamplate.html" to test. I added a div to contain the div of "flashContent" and set it's style to:
        position: absolute;
        top: 150px; left: 150px;
        height: 250px; width: 250px;
        z-index: 10;
    Another div's z-index is set to 1 to test the overlay effect.
    The reason why I added a div to contain the original div of flash, is I cannot figure out a way to effectively edit the CSS of the "flashContent" div.
    Any help will be thankful!!

  • JQuery/Javascript not working on Firefox and Chrome

    Hi guys, I've had this Jquery/Javascript on my page for a long time. This has stopped working. If the user clicks on buttons on the Apex page, nothing happens.
    It works on IE but doesn't work on Firefox and Chrome. It used to work fine.
    Is there anything I can change to make it work on all 3 browsers?
    Firefox error console shows a syntax error at this point in the script:
    $allButtons.click(function(){
    itemChanged = false;
    var toDo = $(this).attr('data-submitval');
    eval(toDo);
    Please can someone help?
    This is the full script:
    <script type="text/javascript">
    //<![CDATA[
    var itemChanged = false;
    $(document).ready(function(){
    var $items = $(':input');
    var $htmlButtons = $(':button[id]');
    var $templateButtons = $(':button[class]');
    var $allButtons = $($htmlButtons).add($templateButtons);
    $items.change(function() {
    itemChanged = true;
    $templateButtons.attr('data-submitval', function(){
    return $(this).attr('onclick').toString().split('\n')[2];
    $htmlButtons.attr('data-submitval', function(){
    return this.id;
    $allButtons.removeAttr('onclick');
    $allButtons.click(function(){
    itemChanged = false;
    var toDo = $(this).attr('data-submitval');
    eval(toDo);
    $('a').click(function(event){
    if ($(this).children('img[id="P&APP_PAGE_ID._DATE_PICKER_IMG"]').length > 0) {
    event.preventDefault();
    eval($(this).attr('href'));
    window.onbeforeunload = function() {
    if (itemChanged) {
    return 'You have made changes to data on this page. If you navigate away from this page without first saving your data, the changes will be lost.';
    //]]>
    </script>
    Thanks
    Sam
    Edited by: sam on 29-Jan-2013 03:50

    JavaScript doesn't work on any site at all? If particular sites are the issue, or you get specific error messages, please let us know.
    Usually the only two ways to disable JavaScript in Firefox are:
    (1) Options dialog > Content tab<br>
    (2) NoScript add-on (or other security-related add-ons)
    Normally Safe Mode bypasses issues caused by add-on problems or non-default settings, so it's worth considering external issues.
    Does JavaScript work normally in any other browsers you have installed?

  • Adobe Flash 11.4 doesn't work on firefox

    I am currently using windows 7 and firefox 14.0.1
    After updating to the latest version of adobe, which is 11.4, anything that requires flash doesn' work. I have tried this on internet explorer 9 and google chrome, which worked perfectly. So, the issue here is that adobe flash 11.4 doesn't work on firefox; also, the browser worked fine before the update. Any help would be appreciated.

    Well, for example: youtube.com, it would say an error occurred; otherwise, those that requires flash would display a white box instead.
    For C:\Windows\system32\Macromed\Flash:
    These are the files within it:
    -FlashInstall- text doc.
    -FlashUtil64_11_4_402_265_Plugin app
    -NPSWF64_11_4_402_265.dll app extension
    C:\Windows\syswow64\Macromed\Flash:
    -FlashPlayerTrust folder
    -FlashInstall text doc.
    -flashplayer.xpt file
    -FlashPlayerPlugin_11_4_402_265 app
    -FlashPlayerUpdaterService app
    -FlashUtil32_11_4_402_265_Plugin
    -mms.cfg
    -NPSWF32_11_4_402_265.dll
    Thanks for your reply to my issue.

  • Safari 5 Blank Page - Works in Firefox and Chrome

    Hi there,
    I have been creating a website in dreamweaver, and the preview in safari doesn't seem to work and it's getting rather irritating. I think it's something to do with javascript, as the main page i put the java above the css and it worked. But the second page only worked when i deleted the css.
    Take a look : http://www.dawoostuffs.com/HTML WEBSITE/test2.html
    It works in firefox and chrome but doesn't seem to load in safari.
    Thanks.

    Sure
    you've got two of these...
    <!--
    (start of a comment)
    but only one of these
    --> (end of a comment)
    so it seems Safari thinks the entire page is made of two comments, with a missing end tag - comments don't display - so we see nothing.
    Camino or Firefox, say - has the common sense to think that you (or Dreamweaver) probably made a mistake.

  • Site can't be viewed with IE, works with Firefox and Chrome

    I have a family site that works fine with Firefox and Chrome, but with when we created a new page and uploaded it, it can't be viewed with IE.
    http://www.thetravelintexans.com/states.htm was modified to add the very last picture in the last row, it was uploaded and works fine.
    If you click on the last picture Andrew at Disney, it takes you to this page http://www.thetravelintexans.com/AndrewsDisney.htm .  This page acts like it is loading in IE, but quickly says Done at the bottom of the screen, but it is blank.  The source code can be viewed, but no detail of page at all.  Again, it works fine with Firefox and Chrome.
    I am using Dreamweaver CS4.
    Thanks for any hints.
    Fred Blair

    IE does get a bit anxious when it does not have DOCTYPE to work to. It tends to fall back into a quirks mode and behave irrationally. Makes me think of myself when I do not have goalposts to aim for.
    Solution, merely give your pages a valid DOCTYPE and all is well. For more info see here http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.thetravelintexans.com%2FAndre wDisney.htm
    Gramps.

  • Automator "Connect to Server" doesn't work with spaces in volume name

    I'm trying to use an old Automator Workflow I had set up in Snow Leopard that connected to a list of specified server mounts (both Windows smb:// and Apple afp://). It works fine for most of them, until it hits a mount point that has a space in it, where it fails. Looking at the debug area it looks like it's trying to connect to "smb://Server/Example%20Name" instead of "smb://Server/Example Name" and failing. Yet, when I use the "Connect to Server…" functionality in Finder, the same URL works just fine. Is there any syntax that will make this work correctly in Automator?

    As I said I never used this before Lion and I don;t have any smb shares to test on but this is what I've found which may be of help:
    The following workflow connects to my MB from an iMac:
    Notice that the MB name is administrator's MacBook with a space and an apostrophe. Notice the %chars for the space and the apos so I don't think that the %20 for the space in your case is causing the problem.
    When I tried this by entering afp://administrator's MacBook it failed. The error message showed the special chars converted as in the url that worked what was missing was the everything after the _ in the name.
    When I did a connect to server in the Finder and selected Recent servers from the pull down and selected administrator's MacBook the url in the action above was shown. I copied the url from the server address line and pasted into the Automater action.
    This might be of some help in your case at least it might show if the %20 is really causing the problem.
    regards

  • How can I get version 3 of Firefox. One web site that I need to use monthly hasn't upgraded their software & it doesn't work on Firefox, Google Chrome or Internet Explorer

    Up until two months ago I was able to access this one web site (www.melaleuca.com). It is a site that I order from monthly. When I type the address in I get a screen saying "the connection was reset while the page was loading". I called their tech support & of course it's never their fault, it must be my computer! NOT! I go on financial trading and banking web sites that are super crypted, so it's not my computer. The tech support said that their web site only works with Firefox 3.0. I told them that was dumb! My other theory is that one of those insidious "upgrades" that Microsoft is always doing changed something, but they're never going to admit to it. I can access the web site on my iPhone, but that is tedious. Help!

    I'm sorry I don't have an answer to your problem, but I wrote to them also to get back the old Firefox, where Google was there. I lost one of my toolbars with certain
    bookmarks, this is a major headache. If you get any info. I would like it if you could let me know and I will do the same. [email protected]

  • Why doesn't work in Firefox and IE?

    We made a site by Edge, it does work in Chrome and Safari but not on Firefox and IE, need a help to fix that!!

    The Alt attribute isn't meant to show as a tooltip on hover.<br />
    The Alt attribute is meant to show if the image isn't or can't be displayed.<br />
    The title attribute is meant to show if you hover an image or link.<br />
    If there is no title attribute, but there is an alt attribute then IE will show the alt attribute as a tooltip.<br />
    Firefox doesn't do that, so if the title attribute is missing then you do not see a tooltip if you hover an image or link.<br />
    * http://www.w3.org/TR/html401/struct/global.html#title title
    * http://www.w3.org/TR/html401/struct/objects.html#alternate-text
    So if you add title="Smiley face" then Firefox will display the tooltip.
    <pre><nowiki><img src="smiley.gif" alt="Smiley face" width="42" height="42" title="Smiley face" /></nowiki></pre>

  • Adobe Connect Enterprise Server service fails at startup

    New to Adobe forums so please excuse if this is not the correct place for this topic.  I am attempting to migrate database content from a production DB to a test DB and make it accessable by the test server.  I did successfully tranfer all table records using SSIS but overwrote some of the server specific records.  I also copied the "content" folder over to the test server as well.  I went back and manually adjusted the records to reflect the test servers configuration but the service never fully starts and begins to restart repeatedly.  I did restart the DB instance, Adobe and Flash services, and finally restarted the OS with no luck.  The following exception is being generated:        
    Exception occurred in startup.
    [05-26 08:47:56] brze (c) <status code="too-much-data"/>
    [05-26 08:47:56] brze (c) com.macromedia.airspeed.StatusException$TooMuchData: <status code="too-much-data"/>
    [05-26 08:47:56] brze (c) at com.macromedia.airspeed.Rows.getRow(Rows.java:57)
    [05-26 08:47:56] brze (c) at com.macromedia.airspeed.db.DBStatement.getRow(DBStatement.java:238)
    [05-26 08:47:56] brze (c) at com.macromedia.airspeed.dal.DAL.registerHost(DAL.java:270)
    [05-26 08:47:56] brze (c) at com.macromedia.airspeed.main.Main.run(Main.java:385)
    Would appreciate any pointers before I scrap the DB and go through a restore.  Oh, yes the test server was functioning before I migrated the content.
    Thanks

    Unfortunately, that was one of the first things we verified and increased to 10 gig and then 100 gig with no change.  Ultimately, the error/issue was caused by improper login information (userID and password).  Once this was aligned, the services started without issue.  So, the error message was not meaningful.   Now we have other issues related to content corruption/DB synch but that will require a new thread.
    Thanks for the advice,
    Lee

  • IMessage connected to wifi doesn't work for iPhone and ipad

    My ipad and iPhone worked great with iMessage on wifi until one week ago. As far as I'm aware nothing has changed. So, I'm not sure what happened. I've checked for updates on both devices and on iMessage and everything is currently updated to the latest version.
    On both devices, I have tried turning iMessage off and on and I've confirmed I have both a phone number and email to send and receive messages. I have tried to reset all network settings as well as the hard reboot. I have also logged out and into my iMessage ID and Apple ID. Nothing seems to work.
    The thing I find very strange us that started happening with both devices at the same time. So, I confirmed that my wifi signal is fine as well as trying wifi signals in other locations. I am still having the same problem. Can anyone help?

    Unable to make or receive FaceTime calls after April 16, 2014
    http://support.apple.com/kb/TS5419
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Adobe Flash Player Working in Firefox and Chrome but not in Internet Explorer

    I've already install - uninstall (many times) but it didn't work in internet explorer. What's happening???
    Please help..

    Please read this:     http://forums.adobe.com/thread/657743  
    Thanks,
    eidnolb

  • Gmail doesn't work in Firefox and it constantly freezes up.

    I have been getting the type error can't access dead object since version 14.01. Since upgrading I have had nothing but problems with Firefox. # times i have reverted back to 14.01 to get it to work with some semblance of consistency. I upgrade every time a new version become available but the problem doesn't go away.
    I finally tracked the problem to Gmail. I only get the error when I try to open Gmail. Also Firefox is running like a pig since 14.01.
    Constantly freezing up, getting the not responding message. Sometimes I just can't move my mouse for a minute or so.

    I have done the safe mode thing to no avail.
    I will try the other stuff.
    Ever since i moved from 14.01 through the various versions to 18, I have had problems with Firefox. It is very slow and lots of time I get a Not Responding message.
    I notice this error only happens when i access Gmail. I also notice that when I am in Google images, my Firefox really slows down and it also crashes a lot as the page of google images tries to load.
    It seems all my Firefox problems have a tie in with Google.

  • SVG displaying issue when textpath is refering to an id - working in Firefox and Chrome

    So I found a bug in the latest Internet Explorer. You can see it in this fiddle:
    http://jsfiddle.net/5uc17jwr/21/
    Works great in Chrome and Firefox
    but does not show all text elements in Internet Explorer. So the question is why are
    just 2-3 words displayed?
    There is no reason for that. The lines are no where negative and also the 3. oder 4. works is like all the others.
    I found something that said the size needs to be 100% or so, but that did not work.
    So how can I get it working on the IE11?
    Thanks

    Hi,
    re: http://fiddle.jshell.net/5uc17jwr/21/show/
    at a guess, I would suspect that you have one too many commas(,) in your jsen variable...
    eg.
    var foo={'name':'river1','name':'river2','name':'river3',,'name':'river5','name':'DeNial',};
    Using your browsers developer tool console compare the string of currentmap (type currentmap in the console tab)
    this (ignoring exogenous commas) is a known 'feature' of the JSON parser.
    Regards.
    Rob^_^

Maybe you are looking for

  • Lenovo G560 - WLAN Driver

    Hi,   I am looking for the driver on my notebook Lenovo G560. I reinstalled my OS on Windows 7 and everythink is good, but I dont have chance to connect to my Wifi(802.11) I downloaded and installed almost all Wireless LAN drivers on this page: http:

  • HT1338 how to update 10.6.2 to 10.6.8

    I am trying to sync  My mac to Iphone 4 to dowm load itune as  I did before. but today I got the meassege that  it need itune 10.6.8 0r higher. In order to dowm load itune

  • Iphone 5 sync with itunes problems HELP!

    This is the first ever Apple product I have owned so I am use to just dragging songs over to my blackberry file and it would send them to my phone straight away nice and easy. I have the latest itunes and iphone5 software. I am finding it difficult t

  • Intercompany Ind

    hi In derivation rule in COPA one CO consultant used Intercompany Ind. Please tell me how and where this indicator is created. because on a copied client of QA it is not shown. regards

  • Playstation 2.04 PUP file

    Yeah it is 2.51 here's the link https://www.playstation.com/en-us/support/system-updates/ps4/