No-go SWF, rock-n-roll FLA

Greetings, I have a very peculiar issue with some files I
have received. It is a dynamic page-flip viewer; it will launch
100% success in Flash CS3; yet when the subsequent SWF is launched
outside of Flash CS3 in the Flash Player or a Browser it only
displays blank pages (I.E. the engine is there, yet no XML is
parsed successfully). I have tried this on various machines and
fixed all file permissions to no avail, any comments
appreciated

http://www.vitalicdesign.net/nvidia/nvidia_viewer_us.swf

Similar Messages

  • Old Time Rock and Roll with AE and Element 3D

    Heres some Old Time Rock and Roll with Element 3D. View at 1080P and full frame to really rock out Element is a truly remarkable plugin that takes some playing with to get comfortable with.
    http://www.youtube.com/watch?v=q_QMcgpB21Y …
    (Please stop deleting this post. It relates to using Element in AE.  As a MVP for Adobe I think its valid to share and answer any questions that relate to using this plugin. If you disagree lets talk with Todd K. about this so it can be resolved in a reasonable manner. Thank you.}

    As a participant in many Adobe forums I find that different folks tend to frequent them.
    My thought was the After Effects forum was particularly appropriate since lots of folks are just beginning to put Element to serious use.  The Video Lounge is another totally different group of friends that I just enjoy sharing, getting feedback and starting dialogs with. And in the Premiere forum it touches upon use of dynamic link and just how solid it is today.
    I see it as just targeting different groups of users. If there are no over riding legal concerns, I would hope to be able to communicate with all the various folks I have been in contact with for the last several years in this manner.

  • I pre-ordered the new Save Rock and Roll album by Fallout Boy and now i cant download it even with the email attachment, how can i download it now?

    I preordered the Save Rock and Roll album by Fallout boy from itunes and i cant download it. I received the email and the link on it didnt work.

    Hello Stardestroyer918
    You can download the previous purchase by following the steps in the article below.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Embed AS3 swf into a AS2 FLA?

    HI, I have a flash site designed in AS2 and want to embed a
    AS3 video player in it. If I republish the AS2 site to AS3 the
    website doesnt function, and if I load the AS3 swf into the
    website, the Player doesnt function.
    I need the AS2 functionality on the website and I need the
    advanced AS3 functionality on the video Player.
    Is there any way to get these two guys to talk to each
    other?

    Creating a 3rd fla, to load the AS2 Fla and the AS3 FLA just
    aint gonna fly. This website is updated daily and its just too much
    of a maintenance nightmare.
    However, I do want to use Wabbits suggestion but I dont know
    how to create a web object.
    The GetURL function opens the swf on its own, which I dont
    want to do. I want it to open the AS3 SWF in a small window within
    the page.
    Can someone help please? Thanks in advance,

  • How to import a .swf photogallery to my .fla project?

    Hi, I need help please, I am very new to Flash. I created a
    photo-album that came as a template with CS3 and published it to
    .swf file; separately I am designing a .fla website hoping to use
    the photo-album in it. I imported .swf photo-album into my .fla
    library, but now I am stuck - I don't know how to link this .swf
    file to a button in my .fla site. I tried actionscrip code, but I
    received an error when testing the movie. I can't find an answer to
    this in any of the books I have searched, or online. Can anyone
    share their brilliant knowledge please? Thank you!

    I can't thank you enough for replying; you have to forgive me
    for my coding illiteracy, this is my very first project in Flash.
    I searched some and realized that having a movieclip of the
    photoalbum is better than having an external .swf file, so I will
    go with your second way of linking the album.
    I created a button for the album, and I have converted the
    .swf photoalbum into a movieclip symbol that I see in my library
    now (named it photos). But I can't assign an instance to it - when
    I click on it from the library I get a new 'scene' on the stage
    with all the photoalbum layers, and there is nowhere where I can
    name an instance. So instead I inserted a movieclip symbol on a new
    layer of my .fla site, but as soon as I do it I don't see it on the
    timeline anymore.
    Can you explain what am I doing wrong please, like to a kid?
    I am a bit flustered at not being able to figure this out.
    THANK YOU VERY MUCH
    Liza

  • How to load and unload external .swfs in a main .fla then load another external .swf on top

    I know that the question sounds confusing. I am new to AS3 but a little dangerous with it.
    The project
    I'm putting together a website tour with has a main .fla with navigation buttons. The navigation buttons load external .swfs using X and Y properties. Every external .swf houses a scrubber bar, play pause buttons which calls to a movie clip which houses the animation.
    The problem:
    Everything was working great, until someone mentioned "Hey, what if at the end of each loaded external .swf, a button appears that says "go to next section".
    So basically we are trying to give the user another way to get to the next section in the left hand navigation once the animation ends, in addition to being able to click in the left hand navigation for the next section. It's kind of like when a youTube video ends and it displays a button to go to the next movie that's in line, but you can also do it in the thumnail navigation as well.
    Ok, let's try it. Well, after many nights, searching the web and trying everything I am waving the white flag. I went through the lynda.com book over and over but I get an error message when I add code related to the parent timeline. I can actually get the next section to load on top of the previously loaded .swf, but it's buggy and I think the previous section is showing through underneath. Plus the scrubber isn't really working right. Since every .swf has a scrubber to control it, shouldn't it just load on top of the previous .swf? Do I need to add coding related to the parent timeline?
    I don't know if I should paste my code here, I have a sample .fla too. Help is so greatly appreciated!!!! If this can work, I think it would be very useful for anyone else doing something like this - I would definitely share any knowledge gained!
    Thanks.
    Jen

    If you want to utilize that code as a starting point (hopefully you understand what it does, and that the code actually works), then you need to modify it such that the array at the start has your filenames instead of the three it now shows, and the three buttons it uses are changed to the next and previous buttons you intend to use.  Here are the functions you need to make adjustments to...
    function onCompletePreloading():void {
            _loadedSWFs = 0;
            contentContainer.addChild(_swfClipsArr[_loadedSWFs]);
            next_btn.addEventListener(MouseEvent.CLICK, setContent);
            prev_btn.addEventListener(MouseEvent.CLICK, setContent);
    function setContent(event:MouseEvent):void {
            var _swfToAdd:MovieClip;
            if(event.currentTarget.name == "next_btn") {
                _loadedSWFs += 1;
                if(_loadedSWFs == _swfClipsArr.length){
                       _loadedSWFs = 0;
            } else if(event.currentTarget.name == "prev_btn"){
                _loadedSWFs -= 1;
                if(_loadedSWFs == -1){
                       _loadedSWFs = _swfClipsArr.length-1;
            _swfToAdd = _swfClipsArr[_loadedSWFs];
            contentContainer.removeChildAt(contentContainer.numChildren-1);
            contentContainer.addChild(_swfToAdd);
            trace(_swfToAdd.customID);

  • Looping external swf which has no .fla

    Hi!
    What I have is a sliding menu with buttons - each button calls an external swf - which plays in an empty movie clip.
    Now, I want the current loaded swf to loop till the time the user clicks on another button. The problem is, I do not have the fla files for any of the external swfs (these are screencam recordings using a software that does not publish .fla) - so I can't put a code at the end of each external swf asking it to not stop.
    Any suggestions on how I might be able to have the external swf loop?
    Thanks & Regards,
    ~ Raven

    Thanks for your help Ned. Actually, I did manage to decompile the swf (using a 3rd party software) - yes, it is a movieclip on frame 1. I could even go inside it and place the loop code. But decompiling meant loss of the control bar that the screen capture software put in it and I can't compromise on that. I guess the screen capture guys should've chosen another softwares that publishes the .fla.
    Thanks again and regards,
    ~ Raven

  • Swf files in an fla file

    I have this program that is a flipbook, and you can turn the
    pages and such to these images that are controlled through an xml
    document. I made these images which have buttons that are meant to
    link to different websites and have them imported as swf files. The
    code and everything works in their own specific files, but when
    they are opened in the flipbook, I can see the images, and can see
    that there are buttons there as the cursor changes to a hand, but I
    can't interact with them. I wonder if there is something I should
    do differently. Perhaps save it differently?
    Please help.

    for the debug window your looking for the structure of the
    levels to the swf you are having issues with. You can identify its
    exact location and can hardcode an actionscript call to a method in
    it to make sure your communicating with it. The fact that you say
    you have no trace outputs makes me think its not even loaded. But
    thats why you need to look at the debugger to see if its present.
    Do you have the source file for the button swf you are using?
    If yes then add a method that you can call via actionscript just so
    you get your bearings on the path to interact with the swf
    component your loading.

  • Importing a SWF file into AS3 FLA

    Hi,
    I've imported some SWF files I've built, under base class
    flash.display.MovieClip, into an AS3 code-only (Flash 9 on
    Macintosh) file. The visuals work fine when I call
    importedMovieClip.play(), but there's no sound.
    My current method is pretty simple:
    - Import the SWF into the library with classname
    ImportedMovieClip and base class of Movie Clip.
    - var importedMovieClip:ImportedMovieClip = new
    ImportedMovieClip();
    - theBackGroundSpite.addChildAt(importedMovieClip,
    theNightSky.numChildren);
    - importedMovieClip.play();
    I've done a workaround by building and importing separate
    soundtracks but since there's a fair bit of animated lip-synching I
    am not keen on having to do this twice and would prefer my imported
    SWF to bring its soundtrack with it.
    Obviously I am missing something ... How do I access the
    soundtrack within an imported SWF? Do I setup another SoundChannel
    using the imported MovieClip, or is there a MovieClip property I
    need to switch on, or is there some other method?
    Cheers
    Dougal

    You do not want to import an swf file.  You should either load it in dynamically or copy and paste its timeline into a movieclip symbol in your other file.

  • How to convert a .swf file into an .fla file?

    I am very new to this and need some help. I have been given a couple .swf files and I need to make edits on them. Is it possible to open these or will I need to completely remake them? I have tried in Flash Professional: File> Import> Import to stage. There is no animation or timing. It's just flat.. I also tried from the actual .swf file: File> Create Projector but it was grey'd out and wouldn't let me choose it. Am I missing something?
    Thanks!!

    That's what I was afraid of! Thanks for the answer

  • Xcelsius swf imported into Flash fla

    Hello
    I'd like to import the interactive chart we've created into a Flash application but when the Xcelsius' swf file is shown on the stage, it doesn't show any graphics and instead shows some text placeholders.
    Has anyone done this and am I doing something stupid.
    Thanks
    Chris

    Try uninstalling and reinstalling the Flash Player on the IE browser.
    1)You can use the following link to uninstall Flash Player from your computer:
    http://download.macromedia.com/pub/flashplayer/current/uninstall_flash_player.exe
    2) After uninstalling flash, use Internet Explorer to install Flash Player.  You can use the following link to install Flash:
    http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash

  • Old Time Rock and Roll AND Element 3D

    A project designed to explore  using Video Copilots Element 3D in conjunction with Premiere Pro and After Effects CS6. View at 1080P and full frame to really rock out 
    http://www.youtube.com/watch?v=q_QMcgpB21Y …

    Not sure how I missed this post for so very long - my bad!
    Loved it!
    How could I not? Any video that includes the album art for Weasels Ripped My Flesh, has got to be good, right? Now, I did not see Captain Beefheart's Trout Mask Replica, but might have missed it.
    Best "music video," that I have seen in a very, very long time. Right up there with Bonnie Tyler's Total Eclipse of the Heart (http://www.youtube.com/watch?v=dpC81-SJcvo) and The Hooters' All You Zombies (http://www.youtube.com/watch?v=2LE0KpcP05I).
    Thank you for sharing your work!
    Hunt

  • Rock and Roll Hall of Fame App

    I downloaded this app 3 months ago and I have it on my laptop, running windows vista, and it will not download to my iphone 4.  I keep getting a pop up that says that I need to download a newer verstion of iphone 4 software to download this app.  I just got a new iphone 4 the same month, 3 months ago.  Apple has told me that I need a 2nd phone line to get this problem solved but with my work schedule and ability not to use a 2nd phone at work I still don't have this app.  Very frustrating.  I have emailed the RRHOF to ask how to solve this problem but have heard nothing.  I have been able to download all of my apps except for this one. 
    Any suggestions on what to do?

    YouTube really needs new servers.  I have a browser plug-in that won't allow playback to start until enough is buffered so that playback continues uninterrupted, and this was going to take 15 minutes to buffer enough of a 5 minute piece.  I'm just not that patient.  Sorry Tom.
    (With a 15 Mb FiOS connection, I know it ain't that.  The problem is that YouTube's servers just don't serve 1080 fast enough.)

  • Need Help Loading SWF in a FLA

    I simply want to call a swf into an existing fla. I have
    tried everything. When dragging the timeline, you see the swf. When
    you preview, it is not there. Background - I have an exisiting fla
    that contains the image background for all. I want to set a
    transparent carousel menu on top of the background that is in the
    fla and leave the existing background and lower objects in place.
    The carousel.swf will need to call java and an xml file on the web
    server.....all external to the "summed" final. If I could layer
    flashed in DW, then the problem would also be solved. Please be
    detailed, I am obviously not a developer.

    although I'm not certain why you would not just 'place' the
    background 'image' on the stage in the fla (probably because you
    wish to change it dynamically down the road) - you need to 'load'
    the swf, not 'place' it within the other file. you do this with the
    MovieClipLoader class.
    with the swf that you wish to load in the same directory as
    the swf of the carousel file, place something like the following in
    the first frame, on a layer called actions, in the actions panel:

  • Is there any way to compile FLA files into SWF files on the command line?

    I am using Adobe Flash CS4 Professional on Windows XP.  To facilitate automated nightly builds, I have been searching for a way to compile my SWF files from the FLA files under source control, but without luck.  The tools in the Flex SDK looked promising, but we do not use Flex.  Thanks!

    Seen these?

Maybe you are looking for