LocalConnection not working in IE

The website I've made has one SWF of buttons that basically
tells a second SWF which frame to display. I'm using the
localConnection to do this and it work perfectly in Firefox,
Safari, and Opera, but not in IE.
I've seen this same question asked in the forums before, but
never answered.
I've attached the code I'm using to embed...
Does anyone know what I need to do to make this work in IE?

I don't really see any problems with this embed. If you send
me your .fla, I'll take a looksee for ya.
My email is [email protected]

Similar Messages

  • Air localconnection not working

    Hi
    I have a simple question: I have two SWF files that communicate through a localConnection.
    This works fine, but as soon as I publish one of the two SWF's as an AIR app, the connection
    is refused.
    What is the difference between a localconnection from SWF to SWF compared to a localconnection from
    AIR to SWF ?
    Update: I have read and tried all the instructions on this page:
    http://help.adobe.com/en_US/AIR/1.5/devappsflash/WS5b3ccc516d4fbf351e63e3d118666ade46-7c7e .html
    Using allowdomain with the application id and user id doesn't help either.
    The biggest problem is debugging: there's no way to tell where the error occurs and why.
    Eerk

    Cycle power on your router, the printer, and all your iOS devices.
    http://www.apple.com/support/iphone/assistant/airprint/

  • LocalConnection() not working with Internet Explorers

    Hi
    I have a webpage with two flash components on it. one swf
    file communicates with the other, or that is the idea. This works
    fine with mozilla firefox, but when I open the page with Internet
    explorer, the two swf files do not communicate with each other.
    Does anyone know why?
    Many Thanks
    Leo

    do you have different player versions in your different
    browsers?

  • LocalConnection to run a function in another .swf not working....

    I'm trying to establish a LocalConnection so that I can communicate between my navbar & the main page on my website. Here is the code I have so far for the sending and receiving AS3 files, please let me know if you see anything out of the ordinary. The idea is that when you click on one of the icons on the navbar my "book" slides down to the center of the screen on the correct page. I actually have 4 buttons but only included the code I'm using for two in order to make this post shorter. The same idea is used for all four buttons though.
    Sending:
    var sending_lc:LocalConnection;
    sending_lc = new LocalConnection();
    servicesBtn.buttonMode = true;
    portfolioBtn.buttonMode = true;
    function servicesBtnOver(event:MouseEvent):void{
    servicesBtn.gotoAndPlay('over');
    function servicesBtnOut(event:MouseEvent):void{
    servicesBtn.gotoAndPlay('out');
    function servicesBtnClick(event:MouseEvent):void{
    sending_lc.send("my_lc_as3", "gotoServicesPage");
    servicesBtn.addEventListener(MouseEvent.ROLL_OVER, servicesBtnOver);
    servicesBtn.addEventListener(MouseEvent.ROLL_OUT, servicesBtnOut);
    servicesBtn.addEventListener(MouseEvent.CLICK, servicesBtnClick);
    function portfolioBtnOver(event:MouseEvent):void{
    portfolioBtn.gotoAndPlay('over');
    function portfolioBtnOut(event:MouseEvent):void{
    portfolioBtn.gotoAndPlay('out');
    function portfolioBtnClick(event:MouseEvent):void{
    sending_lc.send("my_lc_as3", "gotoPortfolioPage");
    portfolioBtn.addEventListener(MouseEvent.ROLL_OVER, portfolioBtnOver);
    portfolioBtn.addEventListener(MouseEvent.ROLL_OUT, portfolioBtnOut);
    portfolioBtn.addEventListener(MouseEvent.CLICK, portfolioBtnClick);
    Receiving:
    import com.greensock.*;
    import com.greensock.easing.*;
    var receiving_lc:LocalConnection;
    receiving_lc = new LocalConnection();
    receiving_lc.connect("my_lc_as3");
    receiving_lc.client = this;
    var bookPosition:String = "up";
    function gotoServicesPage(event:MouseEvent):void {
         book.gotoAndStop('webDesignPage');
    if (bookPosition == "up");
            TweenLite.to(book, 2, {y:830});
              var bookPosition == "down";
    function gotoPortfolioPage(event:MouseEvent):void{
         book.gotoAndStop('porftolioPage');
    if (bookPosition == "up");
            TweenLite.to(book, 2, {y:830});
             var bookPosition == "down";
    The reason I'm keeping track of whether the book is in the "up" or "down" is so that if it's in the down position already it doesn't re-tween back onto the screen. I am new to declaring and using variables; TweenLite; and LocalConnection so there is probably some simple problem with my AS3 code (although no errors are coming up in Flash). Any help would be much appreciated.

    Alright I'm going to fix one problem at a time, starting with the LocalConnection. I've checked several websites for tutorials and examples but cannot seem to get it working properly. I'm just trying to run a simple function over it and can't get it working. Once I can get it working, I'll modify the rest of the code to do what I need. Right now I'm just trying to use it to run a function (slideServicesIn) in a seperate swf. file. I've checked and rechecked the code and just can't figure out why it's not working.
    Here's the sending code:
    import flash.net.LocalConnection;
    import flash.events.MouseEvent;
    var lc:LocalConnection = new LocalConnection();
    function servicesBtnClick(event:MouseEvent):void{
    lc.send("my_lc_as3","slideServicesIn");
    servicesBtn.addEventListener(MouseEvent.CLICK, servicesBtnClick);
    Looks pretty simple.... And here's the receiving code:
    import flash.net.LocalConnection;
    var lc:LocalConnection = new LocalConnection();
    lc.connect("my_lc_as3");
    /*If you're not familiar with TweenLite or TweenMax, I can revise the code. I can't get it to work even just to go to a certain frame label. This seems pretty basic if you are even a little familiar with TweenLite/Tweenmax*/
    import com.greensock.*;
    import com.greensock.easing.*;
    import com.greensock.plugins.*;
    var bookPosition:String = "up";
    var currentPage:String;
    function slideServicesIn ():void{
             if (bookPosition = "up"){
             //Goes to a certain frame label in the book movie clip
             book.gotoAndStop("webDesignPage");
             //Slides the book down 825px from the top of the screen using TweenLite
             TweenLite.to(book, 3, { y:825 } );
             bookPosition = "down";
             currentPage = "book.servicesPage";
            else () {
             //Fades out the current page using TweenLite
             TweenLite.to(currentPage, 1, { alpha:0, ease:Quad.easeIn } );
             //Fades in the Web Design Page using Tweenlite
             TweenLite.to(book.webDesignPage, 1, { alpha:1, ease:Quad.easeIn, delay: .2 } );

  • LocalConnection send not working consistently

    Hi
    I facing an issue with LocalConnection.send.
    I have two AIR applications (both on the same local m/c) and there are about 6000+ messages sent from one application to another via LocalConnection.send.
    Each message is less than 800 bytes. The messages to be sent are queued and each one is sent only after StatusEvent of the one currently sent is received.
    This sometimes works perfectly fine i.e. all 6000+ messages are  successfully sent from one App to the other but at times many of the messages fail (about 300+) to get sent....the send API throws error status but provides no reason why it failed. And once it starts failing all subsequent messages fail.
    What could be the possible reasons why localconnection send works fine at times and at times it throws error for the same message thats being sent ??

    hi
    ive had problems with this too - i found that sometimes the old connection (eg from a previous test movie) was still 'live' even though no swfs were running and this would stop the connection working the next time i did test movie.
    i was connecting an AS2 swf and an AS3 swf in the browser so a different scenario to yours but it could be the same 'problem'?

  • DispatchEvent not working in debug mode

    Hello,
    I have a localconnection, and when I receive a message from
    the local connection I dispatch an event. However, the dispatch
    event does not work. I step into the code and go into some
    Macromedia code for the "mx.events.EventDispatcher.dispatchEvent"
    and "mx.events.EventDispatcher.dispatchQueue", and when I inspect
    my variables the eventObj has both a target and a type set, but
    when the code tries to access them through eventObj.target and
    eventObj.type it returns null.
    Also, this only happens in debug mode (Debug -> Debug
    Movie) and not in test mode (Control -> Test Movie). In test
    movie the exact same code works flawlessly.

    Im not very sure just try to help but look this one
    mx.utils.Delegate
    i look for some issue with your problem and i think this can help
    you.

  • BrowserLab not working?

    When I try to use BrowserLab it returns a server error - not working ?

    Yes. In fact it was the behavior you described in Safari that makes me think so. No matter how BrowserLab is started, it will make an attempt to link to DW. In the relatively rare case when the LocalConnection communication is broken, it can cause exactly the behavior you described. Did you close/restart DW at all during this process? If not, how long was the interval between when it was broken and when you saw it working again? I think there is about a 5-10 minute timer when our communication will attempt to reset itself.

  • Not work tablet UI on Prestigio 5080 PRO tablet

    I read that browser.ui.layout.tablet = "1" can fix this problem. But it not works. I can work only in pnone interface that is not good for my 8'' tablet.

    Would it be possible for you to share the problematic pdf and OS information  with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • Adobe Bridge CS5 in windows 7 not working?

    Adobe Bridge CS5 in windows 7 not working. I was using bridge perfectly for last 2 years. It stops working since 3 days. I tried to install updates. Showing some error to install.
    Tried to install creative cloud..again some error. Error code : 82
    Could you please advice how I can fix my adobe bridge.

    https://www.youtube.com/watch?v=xDYpTOoV81Q&feature=youtu.be
    please check this video I uploaded..this is what happens when I click adobe bridge.. just blinks and go off. bridge not working on task manager

  • ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Partner application logoff not working

    We have a partner application registered with sso with custom login screen. The login works fine. We use the following code to logoff the partner application in logoff.jsp
    response.setHeader("Osso-Return-Url", "http://my.oracle.com" );
    response.sendError(470, "Oracle SSO");
    session.invalidate();
    but the logoff is not working properly. It is not invalidating the session and the logout http request is not going from the application server to the sso server.
    Are there any additional configurations for SSO logoff.Any help is appreciated.
    Thanks

    Hi
    The WF should also trigger if i add the Partner function in UI.If i change any Attribute the WF triggers but i dont want to change the attribute when i add the partner function.
    If i have only one event for WF that is Partner Change the WF will not trigger it for the 1st time when i save the UI. But next i come to the same saved doc and add a partner function then the Wf triggers.
    So this means that Partner change is active.
    the issue here is i need to trigger the WF on , the 1st time i save the UI, for which i wil be using Attribute Change and next time when i come back to saved doc the and add only the partner function and no changes are made to attributes the WF should again trigger.
    Thanks
    Tarmeem

  • IPhone 4 Voice Memos not working/saving

    Hi there,
    I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to view all voice memos is not working so I can't play them from my iPhone and nothing new is saving to my iTunes. Please help!

    I've always had the "Include Voice Memos" option selected. I think that only pertains to syncing voice memos from iTunes to the iPhone after it has been copied to iTunes. It has to be the new OS/iTunes not communicating that new memos have been recorded. For some reason they won't sync when I want them to, and then a few syncs later they magically appear.
    By the way, I'm VERY comfortable with the iTunes and iPhone systems. I've been using iTunes for 5 years, and I've been recording class lectures with the iPhone voice memo app (and another app) for a couple years. It's not an error of not seeing that the memos were added; they don't exist in my library or music folders.
    JUST OUT OF CURIOSITY, POST WHICH FIRMWARE YOU ARE RUNNING EXACTLY!!!
    I'm on an iPhone 4, running firmware 4.0.1

  • Installed Premiere Pro CS4 but video display does not work?

    I just got my copy of CS$. After installing Premiere I found two things that seem very wrong:
    1) video display does not work, not even the little playback viewer next to improted film clips located on the project / sequence window. Audio works fine.
    2) the UI is way too slow for my big beefy system.
    My pc is a dual boot Vista-32 and XP system with 4GB of memory installed and nvidia geforce 280 graphics board with plenty of GPU power. The CS4 is installed on the Vista-32 partition. My windows XP partition on the same PC with Premiere CS2 works great and real fast.
    Any ideas how to solve this CS4 install issue?
    Ron

    I would like to thank Dan, Hunt, and Haram:
    The problem is now very clear to me. The problem only shows up with video footage imported into PP CS4 encoded with "MS Video 1" codec. So this seems to be a bug. The codec is very clearly called out and supported within various menues but video with this codec just will not play in any monitor or preview window. In addition the entire product looks horrible with respect to performance while PP CS4 trys its best to play the video. Audio will start playing after about 30 seconds. And once in awhile part of video shows up at the wrong magnification before blanking out again.
    My suggestion to the Adobe team: fix the bug and add some sample footage to the next release so new installations can test their systems with known footage.
    My PC is brand new with the following "beefy" components:
    Motherboard
    nForce 790i SLI FTW
    Features:
    3x PCI Express x16 graphics support
    PCI Express 2.0
    NVIDIA SLI-Ready (requires multiple NVIDIA GeForce GPUs)
    DDR3-2000 SLI-Ready memory w/ ERP 2.0 (requires select third party system memory)
    Overclocking tools
    NVIDIA MediaSheild w/ 9 SATA 3 Gb/sec ports
    ESA Certified
    NVIDIA DualNet and FirstPacket Ethernet technology
    Registered
    CPU: Intel Core 2 Quad Q9550
    S-Spec: SLAWQ
    Ver: E36105-001
    Product Code: BX80569Q9550
    Made in Malaysia
    Pack Date: 09/04/08
    Features:
    Freq.: 2.83 GHz
    L2 Cache: 12 MHz Cache
    FSB: 1333 MHz (MT/s)
    Core: 45nm
    Code named: Yorkfield
    Power:95W
    Socket: LGA775
    Cooling: Liquid Cooled
    NVIDIAGeForce GTX 280 SC graphics card
    Features:
    1 GB of onboard memory
    Full Microsoft DirectX 10
    NVIDIA 2-way and 3-way SLI Ready
    NVIDIA PureVideo HD technology
    NVIDIA PhysX Ready
    NVIDI CUDA technology
    PCI Express 2.0 support
    Dual-link HDCP
    OpenGL 2.1 Capaple
    Output: DVI (2 dual-link), HDTV
    Western Digital
    2 WD VelociRaptor 300 GB SATA Hard Drives configured as Raid 0
    Features:
    10,000 RPM, 3 Gb/sec transfer rate
    RAM Memory , Corsair 4 GB (2 x 2 GB) 1333 MHz DDR3
    p/n: TW3X4G1333C9DHX G
    product: CM3X2048-1333C9DHX
    Features:
    XMS3 DHX Dual-Path 'heat xchange'
    2048 x 2 MB
    1333 MHz
    Latency 9-9-9-24-2T
    1.6V ver3.2

Maybe you are looking for

  • 10.3.9 Won't stay connected to a SMB Share

    I have a G5 iMac running 10.4.10 and a G4 iBook running 10.3.9. On my home network I have a NAS drive (Simpleshare by Simpletech) running a Linux system. The NAS has a common share named NETFOLDER used to store common files, MP3s etc. I can connect t

  • Any way to get split mono tracks in a Multicam Sequence?

    I have video from 4 different cameras which I'm trying to sync as a Multicamera clip. They sync great, but the audio mapping is not how I want it. All the cameras recorded 2 separate audio channels, but they appear upon import in Premiere as Stereo.

  • How can I record a drum part for longer than 1 minute?

    How can I record a drum part for the length of a normal song, say 3 or 4 minutes?

  • Import file question

    Can you import a .wmv file into FCP5 or iDVDhd? Any suggestions! I haven’t had any luck but I’m a beginner. Thanks for yall’s help!

  • Link to external file

    I have a table with field name LINK (varchar2(255)) with item on the form :P20_LINK. My intention is to store some kind of hyperlink to this field. So in the form, it should be there is a button that allow the user to browse the file located on the s