Exporting SWF diminishes quality of movie clip

Im working on a Dragonball Z MMO. things are goin great so far utilizing Flash PHP and MySQL. but thats not the issue right now.
Im running tests of the battle system. i have the enemy set up as Mr. Popo (character from the series) The quality of the sprite appears great and in good color.
however, when i compile everything into the final .swf, the movie clip appears diminished, discolored, and just really crappy looking.
good pre-compiled version
crappy looking .swf running version >:(
it only happens to this movie clip in particular, any insite would be grossly appricated.

Check your export settings go to FIle -> publish settings. Check the slider for image compression/image quality. Should be at 80% by default. Also right click on that image (for that character) in the library and click properties. There should be 2 radio buttons where you can set the quality of the image. If you enter a value and press test, it will show you a preview in that window of what the image looks like at that quality. Let me know if this fixes ur problem.
Jesse

Similar Messages

  • Export a Full Quality QuickTime Movie for CD

    Hello - I have an 11 min. movie, that contains mostly pics, but also some video - I will be giving it to someone to play on there computer, which will also project onto a screen, during a wedding reception. She just wants to be able to load it into her computer - what is the most effective way of doing this?
    I thought about exporting to a 720x480 Quicktime movie, using Qtime Conversion in FCP, and H.264 compression - is there a better way, so that it will show the best quality? After burning the movie to a QT file onto a CD, I thought I would then give to her to download - is this the proper way to do this type of thing?
    Any suggestions are most appreciated as always - thank you...

    KL -
    That might be fine... thing is you WANT to have her test it. Sometimes playing large files like this (yes, even at h264) can choke a pc pushing it out to a projection unit.
    I like putting it back to tape and sending it full rez out of a deck or other video camera.
    I never trust PCs to even play a DVD out.
    CaptM

  • SWFs containing 3d movie clips do not display correctly

    I'm having difficulty using a swf with a 3d movie clip, it's displaying much larger in captivate than it does in any other context.  Are there known issues with 3d clips in captivate?

    Hi GCemb,
    Thank you for contacting Adobe Support.
    Can you please and insert an .mp4 3D video clip using though Event video option in Adobe Captivate.
    We tested the same at our end and the video is working fine.
    Thanks
    l.oveesh

  • Hide movie clip of external swf

    Hi there.
    I have my main.swf and in the second frame i load an external swf called first.swf with this method:
    [AS]var loader:MovieClipLoader = new MovieClipLoader();
    this.createEmptyMovieClip("myGalleryContainerproducts",5);
    myGalleryContainerproducts._lockroot=true;
    loader.loadClip("first.swf",myGalleryContainerproducts);
    myGalleryContainerproducts._y =86;
    myGalleryContainerproducts._x =50;
    [/AS]
    In first.swf i have two movie clips with instance names ena and dyo
    I want in main.swf in the third frame to hide these movie clips of first.swf  (only the movie clips not the whole .swf) or to move them (change x and y values) so they practically hide.
    Any solutions?
    Thank you in advance

    You will need to wait until the file is loaded to be able to interact with it, so if that might be an issue timing-wise then look into using the addListener method of the MovieClipLoader class.  If the movie is loaded you should be able to access the movieclips within it using the movieclip name you assigned (mygalleryContainerproducts) to target them.

  • Target movi clip in separate swf

    Hi, i am updating a website and am trying to move the "skip"
    button to appear earlier. To do this I have to move the button to
    another swf file.
    now I can load the swf (dbo.swf) into an empty movie clip
    (named empty_mc) easily enough, but I am trying to target different
    things to happen inside of the newly loaded swf instead of playing
    from the beginning. I tried this:
    on (release) {
    empty_mc.loadMovie("swfs/dbo.swf");
    empty_mc.boxes_mc.gotoAndPlay("quickbuild");
    empty_mc.gotoAndPlay("jump_home");
    empty_mc.stopAllSounds();
    ...but it still plays from the first frame of dbo.swf instead
    of playing the appropriate movies and frames. any suggestions?

    When I load in a new .swf file into my main movie, it appears to load on top of the main movie.
    This is the load function that we set up:
    this.createEmptyMovieClip("target1MC",this.getNextHighestDepth());
    this.createEmptyMovieClip("target2MC",this.getNextHighestDepth());
    var currMC:MovieClip = target2MC;
    target1MC._alpha = 0;
    function loadF(y:Number, d:Number) {
    otherTargetF(currMC).swapDepths(Math.max(target1MC.getDepth(), target2MC.getDepth()));
    mcl.loadClip("floors_swf/"+y+"_"+d+".swf",otherTargetF(currMC));
    Is there a way to get the .swf file that gets loaded in to load behind the graphics in my main movie?
    It appears to be loading into the target1MC, but I don't see where to set the level that it loads into?
    Thanks

  • Movie Clip Nested Inside MC

    Hi,
    I have a Movie Clip Nested into another Movie Clip, that works fine in Flash and when exported as a SWF. When I import that same SWF into After Effects, and re-export it as another SWF format, the nested movie clip does not work. Any clue?
    Thank you

    Here's a note from After Effects Help that gives a brief list of limitations of SWF import:
    SWF (continuously rasterized)
    Note: SWF files are imported with an alpha channel. Audio is not retained. Interactive content and scripted animation are not retained. Animation defined by keyframes in the main, top-level movie is retained.
    It's that last sentence that is directly relevant here.
    There's more about working with Flash and After Effects here.

  • How to stop a movie clip that is loaded dynamically

    Hello Flash Forum,
    I am using the loadmovie method to load a swf file into a
    movie clip "container"
    Code snippet:
    var mc:MovieClip = this.createEmptyMovieClip("mc",1);
    mc.loadMovie('bbc_module1.1.swf','bbc_audio',container.getNextHighestDepth(),
    {_x:300.8, _y:240});
    mc._lockroot = true;
    The movie clip I load does not have a stop action in frame 1,
    but comes up playing (audio and images). I am not using video. It
    is a series of still images synced to the audio.
    I would like to be able to load the movie clip, stop it from
    playing, and by clicking buttons, get it to play, pause, etc like
    the buttons and skin on the FLVPlayer.
    Any tips on how to do this?
    Thanks,
    eholz1

    Many thanks ClBeech!!!
    I've tried the code you suggested but it doesn't seem to work
    :0(
    I'm working on a Mac using Flash Pro 8 which only has the
    option to publish as 'actionscript 1.0 or 2.0' is the script you
    supplied an actionscript 3.0?
    Below is the script with the amendments, I've changed my
    button instance names to match the script you supplied (left_btn /
    right_btn)
    stop();
    import mx.transitions.Tween;
    import mx.transitions.easing.Strong;
    var rposX = 369;
    //the ending x of the right position
    var rposY = 84;
    //the ending y of the right position
    var lposX = 116;
    //the ending x of the left position
    var lposY = 154;
    //the ending y of the left position
    right_btn.onPress = function() {
    new Tween(content1, '_x', Strong.easeOut, content1._x,
    rposX, time, false);
    new Tween(content1, '_y', Strong.easeOut, content1._y,
    rposY, time, false);
    left_btn.onPress = function() {
    new Tween(content1, '_x', Strong.easeOut, content1._x,
    lposX, time, false);
    new Tween(content1, '_y', Strong.easeOut, content1._y,
    lposY, time, false);

  • Multiple Preloaders for Multiple Movie Clips

    Designed in Flash 8, the site's timeline is all in Scene 1
    and is comprised of an introduction, which contains a short video,
    and 6 movie clip categories that the user selects to view. Since I
    want the intro to play as soon as possible, I'd like to limit the
    first preloader to just the video in the intro and not
    _root.getBytesTotal. Then, as the viewer watches this short video,
    the rest of Scene 1 movie clips will keep on loading. After the
    intro, the viewer will choose which of the 6 categories to view.
    These categories are identified with buttons which play the
    particular movie clip. Since I don't know the order of the
    categories they will select, I thought there should be a separate
    preloader for each category. Hopefully, after they view a category,
    the rest of the categories will have loaded and the loading time
    will be nil. The design for the preloader is comprised of a status
    bar and a percent loaded. Is there a way to limit the
    _root.GetBytesTotal to specific frames? I know I could break these
    categories up into separate SWF files but then I loose the
    advantage of one loading while another is being viewed.

    MovieClipLoader is a built in class of functions that will
    allows you to easily load Media (swfs/jpgs) from external sources.
    This will create a MCL object
    var mcl:MovieClipLoader = new MovieClipLoader
    We want the MCL object to receive events for any movie that
    is loaded into the main timeline
    mcl.addListener(this);
    Ok. now we have a movie clip loader that is able to recieve
    events. Since we want to show the progressive download and want to
    do something with that content after it loads, we need to declare
    two event handlers onLoadProgress and onLoadInit. onLoadProgress is
    pretty straight forward. onLoadInit executes it's action as soon
    all of the AS on frame 1 of its time has finished loading. In this
    case, we want two different things to happen. 1st, load the first
    clip and show it.... 2nd, load all remaining clips into the buffer.
    But first, lets declare those next...
    function onLoadProgress( target:MovieClip,
    bytesLoaded:Number, bytesTotal:Number):Void {
    // standard preloader code goes here
    function onLoadInit( target:MovieClip ):Void {
    // display the clip - this will be as easy as just calling
    our loadClip function for the mcl...more on that in a minute
    // If you want something special to happen, i.e. movie fades
    in or a mask is applied to it, you'd do that here.
    Now all we need to do is call the loadClip member function
    for the MovieClipLoader. Just replace the two parameters with the
    location of the swf and then the name of the instance you want it
    to load into
    mcl.loadClip( "myswf.swf", targetMovieClip );
    The other movie clips are now a breeze as well. For each
    button, just add an on(release) or onRelease = function (depending
    on your situation) to just call that mcl.loadClip() line from up
    above. Just change the movie you want loaded.
    Let me know if you need more help...

  • Preloader based on a single movie clip

    Is there a way to have a pre-loader based on a single movie clip, instead of on the entire SWF size? This movie clip may have a single graphic, but the entire movie has a slideshow with more images to display...but rather than making my visitor wait for the entire site to download before they see anything, I'd like to have it so when that graphic is loaded, it displays while the rest of the movie finishes loading.  And there would be a preloader that shows the progression of the single movie clip.
    How can I accomplish that? Thanks for your help!

    Thanks for the speedy reply, but I think I didn't explain myself well. I'm not sure your answer will help me. I have an FLA file that contains everything within it. The background image for the resulting SWF is a single JPG, contained within a movie clip with an instance name of "bg_mc". However, there are a lot of other images that also need to be loaded. So, I want the loader to show progress ONLY on the background JPG image, and when it's downloaded, the image is shown, the rest of the SWF continues to download, and when the SWF is completely loaded, the images appear. So the user is only waiting on the background image to load before they see something instead of having to wait for all images to load. Does that make sense?

  • Movie Clip in swf won't show animation in adobe premiere pro cs4

    Hi, I am new to this forum and as well as a beginner user of adobe premiere pro cs4. I am recently making a animation using Adobe Flash CS5, I've been using movie clips symbol to create all the movement of the character, background and stuff. Unfortunately, swf movies exported from Adobe Flash CS5 do not show any animation at all in Adobe Premiere Pro CS4. I have to use movie clips symbol instead of graphic symbol because filters can be added to a movie clip symbol but not graphic symbol. Is there any way to help making the movie clip symbol to be shown in Adobe Premiere Pro CS4? Your help is much appreciated.

    Check Flash help in the "video" section, specifically "moving content between" PR and FL. (I was looking at CS4, but it must be there in CS5 help as well.)
    Your movie is to be watched on a TV?  I would do this in After Effects. because you'll lose most of the flash functionality once you go to video anyway,

  • How to access dynamic movie clips in a loaded swf

    Hello,
    I have a main movie file that loads a swf through loadclip.
    There are several dynamic movie clips in the library of the
    loaded swf (all set to export in first frame).
    I'm trying to create a popup window (using the Window
    component) by using code in the main movie to popup content that is
    in a dynamic movie clip within the swf loaded by loadclip.
    So far, I can create the popup without any problem as long as
    the contentPath refers to a linkage identifier of a library item in
    the main movie, but it won't work for a library item in the loaded
    movie. Is there a way to make this work? Is there a special way to
    reference library items in loaded movies?
    Here's my code to create the window:
    myWin = mx.managers.PopUpManager.createPopUp(this,
    mx.containers.Window, true, {title:mytitle, contentPath:myref,
    closeButton:true});
    where myref is a string containing the linkage identifier for
    the library item within the loaded swf.
    Thanks in advance for any assistance,
    Julia

    I have found out that I can access a dynamic mc from the
    loaded library (using attachMovie), but cannot use that same
    dynamic mc as the contentpath for a popup window.
    Any ideas why?

  • Export movie clip into a series of png(images)

    Hi Im using flash CS6 and I was wondering if it is possible to export a movie clip into a series of images, ie if there are 200 frames, convert the movie clip to 200 images...preferably png.
    Thanks all!

    We write blitting scripts(AIR) that essentially frame capture to create sequences or sprite sheets (RGBA32 png no problem)
    the only downside is you need to author a definitive start -> end to define the number of frames you want.
    if you nest a Bird flap with 5 frames clips inside a 6 frame hop then the clip will only loop perffectly if you author 30 frames...
    if you want to make it exactly 6 frames without skipping you need to manually unify these motions
    There is sprite packing software (such as texture packer) which will blit a swf [movieClip]; I  author traditional 2D vFX in flash, add some blur/glow and other tween FX such as advanced color/alpha changes. (make sure the timelines are unified) Bring the swf to Texturepacker and the thing blits out the sprite sheet wonderfully with all the movieClip filter FX.
    works great,
    too bad the native flash software can't do this.  in order to do it in flash you have to use graphic symbols. therefore the timelines must show you the animation and what you see is what you get.  And since they have to be graphics you don't get any movieclip filters blur/glow .  dissapointing

  • Exporting presentation with movie clips .

    I want to export for sending to CD but movie pictures end up twice as long and freeze after playing.
    The movie clip was created from FCP and also iMovie.
    I have added a transition to the movie slide and this seems to cause the problem. It appears to double the length of the slide (if original movie was 5 secs it becomes 10secs).
    I need the CD to run the presentation automatically.
    The export is for QuickTime, Manual advance, Full Quality,Large .
    I have spent 2 days on this and I am going crazy, not sleeping! You know it all!
    Help please. 
    I hate to mention this but I tried the same thing in PowerPoint (ugh) but the result was the same.
    Products iMac and

    Presumably you are creating a self playing movie:
    1- Inspector > Transitions > start transition select; automatically and set the delay to match the duration of the video
    2- in the export dialogue box, delete the slide duration values. The timing from each slide will be now used instead.

  • Flash CS4: why movie clips are static when exporting to video formats ?

    Does anyone know why the movie clips are non animated when I export my flash animation into a video format ?
    Please see the next flash example I made: (4 KB)
    http://dl.dropbox.com/u/22717206/Flash/flash_movieclip.swf
    And now see how it looks like once exported into video format: (160 KB)
    http://dl.dropbox.com/u/22717206/Flash/Video_movieclip.avi

    You must need a suitable codec for that like DivX codec, it will also import the nested movieclip animations. otherwise  whatever you have on the main timeline is exported for avi. you will get the codec on the export settings for avi.
    Also check this link:
    http://www.adobe.com/devnet/flash/articles/flash_to_video.html

  • .mov clip loses quality

    I imported a .mov clip into final cut, then I drag the .mov clip onto my timeline, but the clip loses quality when it's on the timeline.  I exported it using the h.264 format and it loses quality.  The loss of quality of the video is very noticeable.
    Does someone have an answer for this?  And, what do I need to do for my video clip to maintain its original quality when I put it on the timeline and when I export it?  Please let me know.  Thanks

    Michael Grenadier wrote:
    so studio...  who's gonna win tonight?
    Probably no one - and we'll subjected to a never ending barrage of political ads forever
    ... oh ... the ... HORROR ....
    x

Maybe you are looking for

  • Is it Possible to NAT an IP on a Site2Site VPN and hairpin another site?

    Hello,  I have the following configuration setup and working i.e. I can ping from Peer 1, host 172.16.4.205 to Peer 3, host 10.1.10.10.  What i would like to do is translate Peer 1 host 172.16.4.205 to 172.16.16.205 in the core (Peer 2) and have it f

  • I have problem in my project please help me :(

    I create package called" v cam" that call inside movie clip that make " zoom in" and "move with the player in the stage" it work nice. but when the player collision with another enemy in the movie clip its call movie clip question that is in another

  • Facebook screen too small on iPAD

    Any free Apps available to view facebook with more clarity on screen?

  • Windows Server 2003 Active Directory Replication Issue

    Dear Friends, Few days before my Primary Domain controller was crased, so i restored 1 month old full server image. But issue is after restoration replication  between domain controller is not working. Error message on DC2: Target Principal Name is i

  • IWeb Can soundfiles be played by another player than Quicktime?

    iWeb Can soundfiles be played by another player than Quicktime? Some Windows users are not allowed to install Quicktime for Windows (e.i. a workcomputer with limitations) and they cannot play the soundexamples on my webpage! Is it possible to change