Can't load flash panorama swf

I have a swf you can see here http://www.jimslounge.com/graff.swf
the following code loads other swf's just fine but not this one it just doesn't load no error message.
this.createEmptyMovieClip("mcHolder", this.getNextHighestDepth());
var oListener:Object = new Object();
oListener.onLoadInit = function(mcContent:MovieClip):Void {
//    mcContent._xscale = 10;
//    mcContent._yscale = 10;
var mclLoader:MovieClipLoader = new MovieClipLoader();
mclLoader.loadClip("graff.swf", mcHolder);
mclLoader.addListener(oListener);

I found sometning that worked at this site.
var vr:MovieClip = _root.createEmptyMovieClip("vr", 1);
vr._lockroot=true;
// move the upper left corner
vr._x=100;
vr._y=200;
var myLoader = new MovieClipLoader();
var myListener = new Object();
myListener.onLoadStart = function () {
// Set the dimensions and position of the pano
  vr.window_width=500;
  vr.window_height=380;
  vr.window_x=100;
  vr.window_y=10;
myListener.onLoadInit = function () {
  // your initalisation of the pano, add Hotspots,...
  // You can also set the window size here but you need to use the API
  vr.pano.setWindowSize(500,380);
myLoader.addListener(myListener);
myLoader.loadClip("graff.swf", vr);
//loadMovie("graff.swf", "mySquare");

Similar Messages

  • How can I load an external SWF into a movie clip that's inside other movie clip?

    Hi.
    I creating my first flash (actionscript 3.0) website but I'm
    stuck with a visual effect I want to create.
    I have a window on my website called contentWindow. Every
    time you click a button this window is supposed to leave the stage,
    load the requested content and return to the stage.
    The sliding window is a movie clip with 83 frames, 21 to
    enter the stage, 21 to leave the stage again, 20 for nothing (its
    just to simulate the loading time) and 21 to return to the stage.
    Now my goal is, when the user clicks on a navigation button,
    the window exits the stage, loads an external SWF with the content,
    and then returns to the stage.
    I've the "window" movie clip with an instance name of
    "contentWindow". Inside there is another movie clip with an
    instance name of "contentLoader". The content that the user
    requested should appear inside the "contentLoader".
    Now, when the contentWindow leaves the stage, I get this
    error message:
    quote:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at rwd_fla::MainTimeline/trigger()
    If I switch
    "contentWindow.contentLoader.addChild(navLoader);" for
    "contentWindow.addChild(navLoader);" it works fine, but the
    external SWF doesn't move with the window.
    How can I load an external SWF into a movie clip that's
    inside other movie clip?

    Hi,
    Recently, I have been putting together a flash presentation.
    And I am just wondering if the following might help you, in your
    communication with the said swf file:
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE,
    onComplete);
    function onComplete(event:Event):void
    event.target.content.thinggy_mc.y -= 100;
    Not the best example, but this allows you to target a mc
    within an external swf file. I think if you look up this code, you
    will have an answer ;)
    Kind Regards,
    Boxing Boom

  • Loading flash 8 SWF in adobe AIR, loses the stage width in flash 8 SWF

    Currently i am using a CS3 IDE to compile AIR application.I
    am trying to load the flash 8 SWF inside my AIR application.After
    loading the SWF, when i try to trace the stage width inside the
    flash 8 SWF , it says undefined.Not sure why..
    Googling few hours not able to get the solution.
    Please help me on this, urgently needed.
    Thanks in advance

    This is a fairly common question on these forums. Basically,
    AS2 and AS3(Flex/AIR) can't communicate directly. You will either
    need to use LocalConnection or use ExternalInterface and javascript
    to pass info between the 2.

  • Loading Flash Paper swf causes all other button events to fail

    Hi Everyone,
    I have created a project with Flash which I am using Zinc to publish as a projector for both Macs and Pcs. Now, in this app I am loading a pdf document converted to a Flash Paper swf. The moment I load this swf file into my project, it appears as though all other button events fail. If I remove the code which loads in the flash paper swf, all buttons function as expected.
    Can anyone please help me with a reason / solution for this?
    Any help is greatly appreciated!
    Cheers!

    Did that and there were no errors shown at any point, such as when publishing the .apk file.
    I found a solution. I was under the impression I needed to use touch events for it to work on a tablet, and changing those to normal mouse events solved the problem. Still not sure why it wouldn't work the other way, but for now it works as needed.
    Thanks!

  • Problem loading flash 5 swf in flash 8

    The problem is this:
    I am trying to load a flash 5 swf movie using the loadMovie
    function.
    The problem is that it loads on my computer, but it doesn't
    on the client's computer! I have Flash Player 8. Could this be a
    problem? Could it be that he's having an older version of Flash
    player? I asked him and he didn't answer me yet. So I'm also asking
    you...
    Do you know what the problem might be???
    Here's the code...
    loadMovie("game.swf", "gameHolder_mc");
    right, not that complicated! :) I can't see why it would work
    on ONE computer and NOT WORK on ANOTHER.
    Please, can someone help me?
    Thanks

    if that code works for a flash 8 player it will work for a
    flash5 player or later. however, there may be other code in the
    flash 8 swf that might not work for an older player.

  • Loaded flash 8 swf's instance problem !

    Hi,
    I am loading a Flash 8 .swf file in Flex 3. Initially its
    working fine.
    But whenever we tried to load a another instance of that swf
    or trying to load in a separate container again, its producing
    wrong output with colors and mouse events.
    We tried with the same swf file making two different file
    (map1.swf, map2.swf), and loading them separately. But its also
    buggy.
    The MovieClip structure of one swf (map1.swf) in flash is
    like - _level0.Map.Map.NA.
    We made one swf 's (map2.swf) structure to test like -
    _level0.Map2.Map.NA
    Where colours of 'NA' instances are depending on xml and
    mouse event applied to them.
    If we load them in Flex 3 and trace out the loaded swf
    instances, whichever swf loaded first, flex started to use those
    instances everywhere.
    e.g. If map2.swf loaded first and map1.swf second, then Flex
    debug console shows -
    '_root.Map2.Map.NA' - for map2.swf and
    '_level0.diff_map_load0.pan2.contentPane.UIComponent33.instance37.instance67.Map2.Map.NA'
    - for map1.swf.
    Again, If map1.swf loaded first and map2.swf second, then
    Flex debug console shows -
    '_root.Map.Map.NA' - for map1.swf and
    '_level0.diff_map_load0.pan2.contentPane.UIComponent33.instance37.instance67.Map.Map.NA'
    - for map1.swf
    For both of the cases which one is loaded first, working
    correctly and the second one producing wrong results with colors
    and mouse events.
    Help and Suggestions needed.
    Thanks,
    Debasish Bouri.

    Authorware is old. EOD'd, in fact now.
    It's native support only officially handles Flash 6. Flash 7
    usually
    works fine if nothing 'fancy' (i.e. new components) has been
    added to
    the SWF. Flash 8 and above, however, pretty much aren't going
    to work at
    all in Authorware *using the native sprite*.
    However, if you add the Shockwave Flash ActiveX control to
    your
    flowline, that uses the same control as IE does. So as long
    as your user
    has the Flash IE player on their machine, you can load
    whatever SWF
    version that player supports.
    Working with the ActiveX control is a bit more tricky. Check
    the ActiveX
    example in your Authorware 7\ShowMe directory for an
    example...
    The biggest downside to the ActiveX approach is those SWFs
    are 'always
    on top'. Makes for good playback but you can't layer anything
    on top of
    those SWFs unfortunately (except maybe other ActiveX
    controls, which
    causes lots of flickering).
    HTH
    Erik
    Jacks007 wrote:
    > Hi All,
    > I've been creating SWF's in Flash v6 (I think it was v6)
    and they worked fine
    > in AW 7. I now have Studio 8 and can't get them to open
    in AW7 without saving
    > as the earlier version. Does anyone know why it does not
    work or if AW needs
    > an update to get the Flash 8's to work in AW as a
    Version 8 SWF?
    >

  • How can I load "Flash Player" with my IP not being licensed for Adobe? Thank You

    My IP isn't licensed for Adobe servives. How can load Flash Player without this?
    Thank you.

    Flash Player is a free product. There is no need to own or purchase any of the comemrcial products to access it.
    http://www.adobe.com/go/getflashplayer
    If you have any specific problems, you need to provide more info and explain better.
    Mylenium

  • Can not load an external swf file from my site

    Hi ...
    I have a fla file which is loading external swf files from my local folders.
    I inserted some of the swf files to a web site and tried to load them from the site, not from my local folder...
    So it gave me a security error like below:
    *** Güvenlik Sanal Alanı İhlali ***security domain-area violation
    http://www.celiktek.com.tr/KIRIL.swf' SecurityDomain öğesi -- security domain element, 'file:///C|/Users/Acer/AppData/Local/Temp/Untitled%2D1.swf' uyumsuz bağlamına erişmeye çalıştı - tried to reach this incompatible url
    SecurityError: Error #2070: Güvenlik sanal alan ihlali -- security area violation: http://www.celiktek.com.tr/KIRIL.swf arayanı - searcher of this can not reach stage in file:///C|/Users/Acer/AppData/Local/Temp/Untitled%2D1.swf içindeki Stage'e erişemiyor. -
    at flash.display::Stage/requireOwnerPermissions()
    at flash.display::Stage/get numChildren()
    at KIRIL_fla::MainTimeline/frame1()
    so in my computer, I can load this swf , but how from a website ?
    thnx ...

    Thnaks ...
    I tried to use the securiyt panel that is openede and I added there my site
    www.celiktek.com.tr/KIRIL.swf
    but I still take the error
    *** Güvenlik Sanal Alanı İhlali ***
    http://www.celiktek.com.tr/KIRIL.swf' SecurityDomain öğesi, 'file:///C|/Users/Acer/AppData/Local/Temp/Untitled%2D1.swf' uyumsuz bağlamına erişmeye çalıştı
    SecurityError: Error #2070: Güvenlik sanal alan ihlali: http://www.celiktek.com.tr/KIRIL.swf arayanı file:///C|/Users/Acer/AppData/Local/Temp/Untitled%2D1.swf içindeki Stage'e erişemiyor.
    at flash.display::Stage/requireOwnerPermissions()
    at flash.display::Stage/get numChildren()
    at KIRIL_fla::MainTimeline/frame1()
    from my code
    var req:URLRequest=new URLRequest("http://www.celiktek.com.tr/KIRIL.swf");
    var lod:Loader=new Loader();
    lod.load(req);
    addChild(lod);
    lod.x=0;
    does this code works on your computer ... I know it is a weird question ... you dont have to try ...

  • Flex 4.6 IOS Mobile packager - can it load and play swf's dynamically at run time?

    I have an app that shows the viewer slides in a SWFLoader object.  I load the slides at runtime from a remote server.  When I package the app for IOS using 4.6 the swf slides load and play fine in the IOS emulator on the PC.  They don't load, however, when I deploy to a provisioned iPad. 
    My guess is that IOS can handle doesn't know what to do with dynamically loaded swf data.  I'm not positive though because it plays in the emulator.  Is that emulator truly emulating xcode or is it running flash?
    Note:  this same app plays an rtmp flash stream just fine even on the device itself.  Just can't handle a dynamically loaded swf.

    The correct answer to this question appears to be that Apple's terms of service *do not* prohibit the loading of swf's on IOS from remote servers dynamically at runtime.  They prohibit the loading of swf's that *contain executable ActionScript code*. 
    I loaded a PPT into Adobe Connect and then retrieved the resultant slide swf's from the Connect server.  I took these swf's and loaded them into my iPad app, dynamically at runtime, from a remote server.  The swf's loaded and animations played.  I made no changes to my code.  I'm just using a plain old SWFLoader object.
    Loading swf's dynamically at runtime from remote servers into IOS works - if you make the swf's right.  How to do that I'm not sure.

  • How can I load flash ads dynamically? ASP, but probably the same in PHP

    I have a flash advert that will run on a website for one month. At the end of the month the advert will change to another flash advert. I am trying to achieve this by way of entering the name of the flash file into a database so my client doesn't have to hand code the change, but I am struggling to get the way I thought would work to actually work and would like some advice on how to do it.
    The way I am doing it is to take the code created by DW's insert flash action, and I am then changing the path (in all four instances) from:
    _dataimages/_rightbanner/test2/Untitled1.swf
    to have it served dynamically like this:
    _dataimages/_rightbanner/<%=(rs_bannerright.Fields.Item("fld_image") .Value)%>.swf
    This isn't working though!
    Are there any other ways I can achieve this? Is there any tutorials out there I can learn from?
    I have tried server side includes too, but still no joy.
    Any advice on what is going wrong for me, or any suggestions or examples on how to dynamically change from one flash file to totally different one would be really appreciated.
    Thanks
    Mat
    [Moved to Dreamweaver Application Development forum by moderator]

    How can I create multiple versions of a video within the same project?
    You can't. You make separate projects using the same or different clips, segments, transitions, titles, etc. You can even duplicate the first project and then modify/make the desired changes in the duplicated project. Each project can then be burned as a different DVD or as different titles on the same DVD if there is enough room.

  • Can't load Flash Player - - help!

    I have been trying to download the new Flash Player. My system says it's download and it shows that it is downloaded but when I go to Youtube or a game site it says Plug-In failure. My computer is an iMac, system OSX10.9.2. It says that if I have antivirus turned on Flash Player will not load right. I've turned off every antivirus button I can find in my computer but it still wont work. Can you please help me? I use Firefox and Safari.

    Another thing since you mentioned it...
    YOU DON'T NEED ANTIVIRUS ON A MAC - under any circumstances.
    OS X already includes everything it needs to protect itself from viruses and malware. Keep it updated with software updates from Apple.
    "But how do I protect myself against viruses? Don't Macs have Intel processors? Can't they get viruses?"
    A much better question is "how should I protect my Mac":
    Never install any product that claims to "speed up", "clean up", "optimize", or "accelerate" your Mac. Without exception, they will do the opposite.
    Never install pirated or "cracked" software, software obtained from dubious websites, or other questionable sources. Illegally obtained software is almost certain to contain malware.
    Don’t supply your password in response to a popup window requesting it, unless you know what it is and the reason your credentials are required.
    Don’t open email attachments from email addresses that you do not recognize, or click links contained in an email:
    Most of these are scams that direct you to fraudulent sites that attempt to convince you to disclose personal information.
    Such "phishing" attempts are the 21st century equivalent of a social exploit that has existed since the dawn of civilization. Don’t fall for it.
    Apple will never ask you to reveal personal information in an email. If you receive an unexpected email from Apple saying your account will be closed unless you take immediate action, just ignore it. If your iTunes or App Store account becomes disabled for valid reasons, you will know when you try to buy something or log in to this support site, and are unable to.
    Don’t install browser extensions unless you understand their purpose. Go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone.
    Don’t install Java unless you are certain that you need it:
    Java, a non-Apple product, is a potential vector for malware. If you are required to use Java, be mindful of that possibility.
    Disable Java in Safari > Preferences > Security.
    Despite its name JavaScript is unrelated to Java. No malware can infect your Mac through JavaScript. It’s OK to leave it enabled.
    Block browser popups: Safari menu > Preferences > Security > and check "Block popup windows":
    Popup windows are useful and required for some websites, but popups have devolved to become a common means to deliver targeted advertising that you probably do not want.
    Popups themselves cannot infect your Mac, but many contain resource-hungry code that will slow down Internet browsing.
    If you ever see a popup indicating it detected registry errors, that your Mac is infected with some ick, or that you won some prize, it is 100% fraudulent. Ignore it.
    Ignore hyperventilating popular media outlets that thrive by promoting fear and discord with entertainment products arrogantly presented as "news". Learn what real threats actually exist and how to arm yourself against them:
    The most serious threat to your data security is phishing. To date, most of these attempts have been pathetic and are easily recognized, but that is likely to change in the future as criminals become more clever.
    OS X viruses do not exist, but intentionally malicious or poorly written code, created by either nefarious or inept individuals, is nothing new.
    Never install something without first knowing what it is, what it does, how it works, and how to get rid of it when you don’t want it any more.
    If you elect to use "anti-virus" software, familiarize yourself with its limitations and potential to cause adverse effects, and apply the principle immediately preceding this one.
    Most such utilities will only slow down and destabilize your Mac while they look for viruses that do not exist, conveying no benefit whatsoever - other than to make you "feel good" about security, when you should actually be exercising sound judgment, derived from accurate knowledge, based on verifiable facts.
    Do install updates from Apple as they become available. No one knows more about Macs and how to protect them than the company that builds them.
    Summary: Use common sense and caution when you use your Mac, just like you would in any social context. There is no product, utility, or magic talisman that can protect you from all the evils of mankind.

  • For some reason, Adobe Acrobat Installer is on my computer & I can't load Flash

    No, I did not load Acrobat or Reader, only have Adobe Air. I cannot find Adobe Acrobat Installer on my Windows XP. When, I go to download Flash a message pops up Saying:" Adobe Acrobat Installer, Only a Single Instance of this Application can Run". I use Chrome for my FB games, because I need Flash. I don't have any idea how this happened. Yes, I posted this in Adobe's forum, also. Any ideas?:

    Hello Elainemacko
    1. Fist I would uninstall any version of Abobe Flash plugin or active x installed.
    Please go to '''Add or Remove Programs''' ([http://support.microsoft.com/KB/307895 Click Here to see how to uninstall programs from Windows XP]) and check you don't have "'Abobe Flash Player"' Installed, If so uninstall it.
    2. [http://www.adobe.com/products/flashplayer/distribution3.html Click here to go to Adobe Flash Player Distribution] (This is the off line installer)
    3. Click '''Download EXE Installer''' Under '''Windows''' and save the file.
    4. Once downloaded double click the install files. '''make sure to close any browser you have open first'''. (At the time of writing this it should be called "'install_flash_player_15_plugin.exe"')
    5. Once the installer finishes installing [http://www.adobe.com/software/flash/about/ Click Here] to go to the "'Check Abobe Flash is installed and up to date Page"' to test if the installer install Adobe Flash properly.
    Please let me know if this solves you problem.

  • Can't load flash based webcam since 10.6.5 update

    since updating today, my webcam is no longer detected on any flash based webcam site (i.e. tinychat, meebo, etc). I have uninstalled and reinstalled latest version of the Adobe Flash plug-in, I have adjusted and checked all the proper settings in the Global Settings window for Flash. I've called Apple, they said call Adobe. I called Adobe, they said call Apple. You get the picture. Any ideas?

    Several users are currently finding problems with Flash based video web sites, perhaps due to timing differences in the various update cycles of the developers.
    Therefore, check all third-party items like Flip4Mac, Safari "Extensions", web-based chat items, social web site "toolbars", etc., to be sure you are using the latest versions compatible with your system. Uninstall any with known issues pending their next update.
    If you are still having problems, here are some things you can try. Depending on system configuration and installed third-party items, various users have reported different methods of restoring Flash video website functionality. Which might work for you seems to be a matter of what you have added to your system, so keep trying any relevant to your system until you find the one that might work for you.
    (1) For those who have installed Google plugins, user OysterOyster reports that uninstalling them restores proper iSight function with Flash and Mac OS X 10.6.5.
    If Google is your problem, the GoogleVoiceAndVideoUninstaller.app should be in your hard drive's Library/Application Support/Google/ folder. (not your *Home > Library* folder)
    Several users confirm that using the Google uninstaller works to restore Flash video functions.
    Some other users, including those who do not use the Google plugins, have found other remedies.
    (2) User joew13 reports that installing the 64-bit Flash plug-in beta for Mac OS X (DMG, 8.7 MB) fixed Flash sites for him.
    This link allows download of the 64-bit plugin beta from an official Adobe page:
      http://labs.adobe.com/downloads/flashplayer10.html
    or, to download the beta directly, click this link--> http://tinyurl.com/2frejs4
    Several other users have confirmed success after the beta update.
    (3) User imagerle downgraded Flash to version 10,0,45,2 to restore Flash video.
    If this older version is not available on a backup or an old install disk, it can be downloaded from Adobe's Archived Flash Players page:
      http://kb2.adobe.com/cps/142/tn_14266.html
    (4) User sirjoe82 and others have reported that uninstalling Flip4Mac restored their Flash video website functions.
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod touch 4.1

  • CAN'T LOAD FLASH PLAYER IE WINDOWS 7

    Hello,
    I can't watch any video on IE 8 (even after a reset) any more (Firefox ok !) because Adobe Flash Player (latest version) won't download/install.
    I get the same message every time :
    "The version of adobe flash player ActiveX that you are trying to install is not the most current version. Please visit http etc Adobe ..."
    Thank you very much for your help.

    The Flash uninstaller has to be in the same directory as where you're typing the command. For example, I had to place mine in C:\Documents and Settings\Compaq_Owner.
    I had this same message with my Flash player and this solved it! Thank you for posting the link to the technote!

  • I can't load Flash Player

    When I visit a site that has a live stream, it does not work.
    I downloaded Flash Player on 4/23/2014.
    When I try to install the Flash Player software, I get a message "Certificate Authentication Failed".
    Using Foxfire, clicking on TOOLS and clicking on ADD_ONS, it says Flash Player is 'Always Active'. When I click on PLUGINS, 'Shockwave Flash 12.0.0.77' is listed. I Click on 'Get Add-ons' the video window says 'No video with supported format and MIME type found.'
    When I visit http://helpx.adobe.com/flash-player.html I click on:
    1. Check if Flash Player is installed on your computer.
    It responds with:
    Sorry, your computer does not have the latest Flash Player installed.
    Please go to step 2. ( Your version12.0.0.77 Latest Version13.0.0.182 )
    It seem I need to install a new version but I can't seem to.
    Thanks!

    Download the installers
    for Windows: http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_text_4
    for Mac OS X: http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-mac.html#main-pa rs_text

Maybe you are looking for

  • 2013 27'iMac wont stay in TDM

    I have two 2013 27' iMacs linked via TB cable. I am attempting to use one to the iMacs as a secondary display. However, the taget iMac  goes to sleep after only a few minutes and drops out of TDM. initially I thought it may be a simple energy saving

  • Using CURRENT_ITEM_NAME in Read-Only Logic??

    Is there a way to get the current item name in the read-only sections? I'm trying to pass the item name to a function to decide if it should be read-only. Thanks! btw, I'm using version 2.2.0.00.32

  • Nano SIM adaptor got stuck inside my Lumia 1020

    I forced to remove the nano SIM adaptor and after I tried a regular micro SIM and my Lumia 1020 gave me an error message saying SIM was not detected. I read many horrors stories like mine :-( I'm wondering if that happened to someone here on the foru

  • Moving photos around in an event

    I was reading some other posts but want to make sure I've got it straight. I've been wanting to move some photos around in an event and now my understanding is that I CAN'T do that. I cannot move the photos around in the event but will have to create

  • Is MCPD higher level certification?

    Dear All, I am working as a Sr. Developer and I have more than 5 years of experience on visual studio and sql server. I am planning to do certification. Please could anyone give me suggestion which is better for my professional.  I surfed on net and