Three Flash CS4 Glitches

I am just posting these so they are out there and don't go unnoticed. They are 3 glitches that can be quite bothersome and time-consuming to work around.
The Color selection in the tool panel cannot select any gradients or semi-transparent colors and instead will sample each individual pixel of the gradient (see attachment). This used to work in flash cs3. Why break it?
While using AS3 I cannot check for key presses on any keyboard button that selects a tool from within the flash environment (for example V - selection tool). So while testing my game from within the flash environment, I can't create any games that use A,V,B,S, etc. because they instead select the flash tool and are not picked up in the game.
Every so often the onion-skinning doesn't display I have to turn it off and back on again, sometimes even toggle the visibility of other layers.
If anyone is encountering these problems please reply.  I want to know if its my flash that has these glitches.

Oh MAN!  I've been having the same problem with the onion skin tool failing outright for me as well!  EXTREMELY frustrating!  I've been forced to copy and paste tons of frames and layers into new documents in order to regain use of the onion skin because apparently unlike you once my document loses the onion skin ability it doesn't come back.  Needless to say this has caused a lot of delays and irritation because I'm working near exclusively with frame-to-frame hand drawn work with minimal symbol inbetweening for motion.
I'm having other glitches which I'll save for a different post but someone please tell me this is a bug that will be fixed quickly or that there's some setting that can be implemented to correct it!
-Brian Reynolds

Similar Messages

  • Can't properly create motion tweens between two keyframes in flash CS4

    I'm trying to create a flash animation of a wing flapping using three keyframes. The first keyframe is at frame 1. I then created a second keyframe at frame 5 by pressing F6, and then I created another keyframe at frame 10 by pressing F6. At frame 5, I rotated the wing so that it is going up. Frame 10 is the same as frame 1.
    frame 1:
    frame 5: frame 10:
    I right clicked on a frame between frames 5 and 10 and then clicked the first option, "Create Motion Tween"; I then performed the same action on a frame between frames 1 and 5. When I preview or test the movie, there is no transition between the frames. From frame 1 to 5, there is supposed to be a transition of the wing flapping up. From frame 5 to 10, there is supposed to be a transition of the wing flapping downwards to its initial position. Instead, when I test the movie, the wing remains still until frame 5 and instantly goes to its "wing up state" and when it gets to frame 10, instantly goes to its "wing down state".
    Here is what the timeline looks like after I've made the changes mentioned above:
    I'm using Flash CS4 to make the animation but the tutorial I'm following is using Flash CS3. I know I can use other methods to create the motion tween but I want to know why the method I'm using isn't working.

    I did switch to classic tweening. I pressed F6 to make a keyframe at frames 5 and 10. I then right clicked on a frame between frames 1 and 5 and then clicked
    "create CLASSIC tween"; did the same thing between frames 5 and 10. I'm not seeing the transitional frames between frames 1 and 5 that the tutorial showed.

  • Flash CS4 crashes in Mac OS X 10.6.2

    Flash CS4 began crashing immediately after upgrading to 10.6.2 on my Mac Pro with 8 GB of memory.
    I can open my Flash CS4 (v. 10.0.2.566) app, but when I then try to open any .fla it crashes about 2 seconds after the file finishes opening.
    This occurs whether I open an existing .fla or if I create a new .fla.
    Flash was giving me no significant problems with Mac OS X v. 10.6.1.
    None of the following attempts to fix the problem has worked:
    First, I dumped my Flash preference files and restarted the app.
    Then, I restarted in single user mode and ran a file system check (/sbin/fsck -fy) which found no problems.
    Then I uninstalled and reinstalled Flash CS4 (three times).
    Then I upgraded Flash 10.0 back up to v. 10.0.2
    Then I ran the Mac OS X 10.6.2 update (Combo) based on a posting I saw on the Apple support forum.
    My next step is to reinstall Snow Leopard in the hopes that the earlier OS version will work.
    Cross your fingers for me.
    Does anyone have any other ideas?

    There are several ways to temporarily or permanently disable fonts.
    A very simple way is to restart your Mac in Safe Boot mode. Hold the shift key down as your Mac starts up. Among other things, this disables all but the system fonts.
    Read more about that here: http://support.apple.com/kb/HT1564
    You can also open the Font Book app and selectively disable fonts. Highlight the fonts you want to disable, and go to Edit > Disable...
    (This assumes you use Apple's Font Book and not some other font utility.)
    I suggest reading more about that here: http://support.apple.com/kb/HT2509
    You can disable groups of fonts at a time. Then open Flash to see if the problem persists. If it does, then the problem font is in that group. Activate a few fonts at a time, eventually finding the font or fonts that are causing the crash.
    You can also drag fonts out of the Fonts folder in your user's Library folder, but I suggest trying these other two methods first.
    Good luck.

  • Flash CS4 help!

    Hello, im a new beginner to Flash CS4. I was just trying to make candles with its flame. I got the first one working. It consists of three layers with an actionscript layer. Then i tried to duplicate the three layers of images, so they can work the same actionscript layer but it doesn't work. Only the first one
    is working. WHat should i do so the duplicated layers of the candle work? Or is there a better way to make copies of images?
    Here is my actionscript layer code:
    function drawEffect()
        var _loc2 = offsets.length;
        for (var _loc1 = 0; _loc1 < _loc2; ++_loc1)
            offsets[_loc1].y = offsets[_loc1].y + offsetSpeeds[_loc1];
        } // end of for
        noiseImage.perlinNoise(250, 800, 2, seed, true, true, null, true, offsets);
        var _loc3 = flameMask.transform.matrix;
        _loc3.tx = noise_mc._x;
        _loc3.ty = noise_mc._y;
        noiseImage.draw(flameMask,_loc3,flameMask.transform.colorTransform,"multiply");
        noiseImage.applyFilter(noiseImage, noiseImage.rectangle, new flash.geom.Point(0, 0), colFilter);
        var _loc4 = noiseImage.getColorBoundsRect(4.294967E+009, 4.294967E+009);
        var _loc5 = _loc4.height * _loc4.width;
        flickerGlow((127 - _loc5 / 10) / 1024);
    } // End of the function
    function flickerGlow(amount)
         var _loc1 = new flash.filters.ColorMatrixFilter([1 + amount, 0, 0, 0,  0, 0, 1 + amount, 0, 0, 0, 0, 0, 1 + amount, 0, 0, 0, 0, 0, 1, 0]);
        candleMain.filters = [_loc1];
    } // End of the function
    Stage.scaleMode = "noScale";
    var pxPerSecond = 5.000000E-001;
    var seed = Math.floor(Math.random() * 1000000000);
    var offsetSpeeds = [20, 32];
    var offsets = [new flash.geom.Point(0, 0), new flash.geom.Point(0, 0)];
    var flameMask = flameContainer.flameMask;
    var noiseImage = new flash.display.BitmapData(flameMask._width, flameMask._height, false);
    noise_mc = flameContainer.createEmptyMovieClip("noise_mc", 1);
    noise_mc._x = flameMask._x;
    noise_mc._y = flameMask._y;
    flameContainer.blendMode = "screen";
    flameMask._visible = false;
    noise_mc.attachBitmap(noiseImage, 1);
    var  colFilter = new flash.filters.ColorMatrixFilter([6, 0, 0, 0, -255,  5.500000E+000, 0, 0, 0, -255, 5, 0, 0, 0, -255, 0, 0, 0, 0, 255]);
    drawEffect();
    onEnterFrame = function ()
        drawEffect();

    the actionscript will be part of the movieclip.
    shift-click and drag across all layer/frames that constitute your candle, right click and click copy frames.  click insert/new symbol and select movieclip.  right click the only frame/layer visible in the movieclip and click paste.  all your candle assets should be converted to that movieclip.

  • Flash CS4 Sample Templates are missing

    My sample templates are missing, all that shows now are Cateregory: Advertising and different size banners. I searched my harddrive and found the rood folder where they are stored but only the folder for Advertising exist.
    I haven't deleted anything, so could it have been a glitch at installation, I had startup problems with Flash constantly crashing at the splash screen and finally had to uninstall and reinstall.
    Running WinXP SP3.

    Thanks for replying.
    I do remember them being part of an earlier version maybe MX. Did some checking around as I was under the assumption they were part of CS4 due to some diagrams found on pages 264-265 of "Flash CS4: The Missing Manual". The bottom line is it is now listed in their Errata.

  • Flash CS4 won't load properly

    Hi
    Weirdest thing is happening now.
    I boot up Flash CS4 and all I see in the upper left corner are the three dots for Apple's Snow Leopard interface.
    Flash was working fine yesterday, then last evening, all I got were the three dots.
    The menus are there. They open,  but they are acting flakey.
    I can open up a file, but none of the palettes or interface show up. The stage is located under Apple's menu bar at the 0,0 location of the monitor and unmovable.
    I deleted the preference files from my user library and also a file called "Flash 10 mru".
    That didn't do a thing.
    The only change I made yesterday was an upgrade Adobe supplied for Premiere.
    I also upgraded to Snow Leopard over the old Leopard, rather than a clean install.
    But Flash was working fine on it for a month before yesterday's three dots attack.
    Flash CS3 works fine.
    Flash CS4 works fine on my laptop with Snow Leopard.
    This morning, I uninstalled the old and reinstalled a new copy. Really at a loss as to what to do.
    I was thinking of doing a clean install of Snow Leopard on a new hd and starting over. Before I do all that, I was hoping there was an easier fix.
    Please help and thanks in advance.
    [email protected]
    [email protected]

    I know this is almost 2 years old, but since there is no response at all I'm going to dig this thread up rather than create a new one for an identical problem. I'm having this exact issue right now, except I'm just running Leopard, not Snow Leopard. Sometime last week Flash CS4 froze up on me and I had to force quit. Ever since then, when I boot up Flash, I just get the three circles in the top left corner and nothing else. If I try to open a file, it will open, but it shows only part of the stage and nothing else. If I try to change the workspace view, the stage completely disappears, and that's as far as I can get.
    I've already uninstalled the entire creative suite, used the CS5 clean up tool, and reinstalled, and am still having the same problem. Any ideas? Pretty desperate here, as my homework relies on a working version of Flash.

  • Flash CS4 on MacOS 10.6.7 crashing when 'test movie' used

    Hi all,
    I have a MacBook Pro running Mac OS 10.6.7.  I am using Flash CS4 10.0.2.
    I recently upgraded computers from another MacBook Pro, and installed the same version of CS4 on this new one.
    However, given this new computer has lots more RAM and more grunt and is by far less 'clogged up' than my old one (which was about three years old) it crashes all the time when I press CMD-ENTER to test my movies in Flash.
    These are FLA's I've worked on for months on my other computer.  When I open the SWFs in Flash Player (i.e. outside the authoring environment) I do not get any crashes.
    I have noticed the CPU rockets upwards to 100% just before the crash (and hovers around 80% even when nothing is moving on the screen etc).  It doesn't do this in the Flash Player.
    I have scoured the web and can't seem to find what the problem might be.  They're known good FLAs (i.e. they worked on my other computer in the same version of Flash) and this computer should definitely be able to cope with them, given the old one did.  What might be the cause?
    Here's an example of the error report that Mac OS throws up after the crash:
    Process:         Adobe Flash CS4 [43416]
    Path:            /Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/MacOS/Adobe Flash CS4
    Identifier:      com.adobe.flash-10.0
    Version:         10.0.2.566 (10.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [146]
    Date/Time:       2011-06-15 15:14:43.937 +1200
    OS Version:      Mac OS X 10.6.7 (10J4138)
    Report Version:  6
    Sleep/Wake UUID: 85F82BE0-C1EA-43C7-9A7C-77DA38363765
    Interval Since Last Report:          177155 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  89418 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      C8B710B0-DB36-428D-834D-975007911DCD
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ff1c9680
    Crashed Thread:  41
    There's more info in the report but I imagine this is the significant bit.
    If anyone at all can suggest an answer to this problem that fixes it or contributes directly to a fix, I'll send you a thank-you gift of some description regardless of wherever in the world you might be.  I'm losing hours and hours of productivity on this.
    Many thanks!
    G

    As you've discovered some applications don't launch correctly using Migration Assistant. In particular Adobe applications like Acrobat or the Creative Suite should generally be newly installed from their install disks.
    It's probably because Adobe applications spread their resources between many different files in many different places. They also are serialized (so they won't be stolen) requiring secret serialization files to be installed. Some of that probably isn't being copied in a way that will make it work after migration assistant.

  • How in Flash CS4 to change text words of .fla file from a website template?

    I have a website template in which I am trying to change the header text words and menu text words to customize the template. How do I do this in Flash CS4? Thanks!

    There are any number of ways these text elements might have been designed into the file.  So you pretty much have to search for things.  If you do not see the text that you want to change when you open the fla file, then you may need to either make some layers visible that are not (eyeball icon next to layer name) or you may need to look into the actionscript code to see if the text is being dynamically written when the file opens.  If you happened to receive any .as, .txt, or .xml files with the template, the text elements may also be defined in those files.
    Just so you know, and this is just an observation, it appears from experience in these forums that template designers tend to make templates so that you are more likely to hire them to update things than to be able to solve it yourself.

  • Calling a variable from inside a movieclip AS3 in Flash CS4

    I am trying to trace a variable string from inside a movieclip which is inside another movieclip on the main timeline using:
    trace(VariableString);
    and also
    trace(stage.VariableString);
    Neither work
    The variable is an input textfield and traces fine when it is on the main timeline but will not work from inside the movieclip. I am using Actionscript 3 in Flash CS4.
    I appreciate this has probably been discussed previously on this forum but I cannot find a difinitve answer that seems to work.
    Thanks

    Thanks for the reply. However this did not seem to work.
    I think I had better explain a little better.
    On Keyfrme1 I have a MovieClip1 containing a text input component. I have created a variable on keyframe 1 using:
    var VariableString1:String = new String();
    When clicking on a seperate button this happens:
    VariableString1 = MovieClip1.text;
    I can trace this correctly on the main timeline using:
    trace(VariableString1);
    However, if I try to trace this from  another keyframe inside a movieclip2 which is inside another movieclip3 using:
    trace(MovieClip1(root).VariableString1);
    I just get the error 1180 call to a possibly undefined method MovieClip1
    Sorry if this is not very clear but I am getting very confused with this.
    Thanks again

  • Flash CS4 Link to a Movie Clip from inside another Movie Clip

    I am working on a Flash CS4 project which has 5 buttons with 5 corresponding movie clips all on the main timeline. Everything in functional so far.
    My problem is this: I want to be able to mouse click on a particular word in the text inside movie clip 4 ("mc4") and have it link to movie clip 3 ("mc3") (on the main timeline).
    I've tried many things, and I can't get it working.
    I have tried to highlight the word then link it to "mc3" in the properties panel where it says link (I successfully linked to an email address and to an outside website in other parts of the project)....
    I tried to link it in the properties panel to "mc3", I tried & "parent.mc3", "root.mc3";
    Linking it this ways seems to be the simplest, logical thing to do, but I don't know what kind of prefix it needs.
    Then, I tried making the word (inside mc4) an invisible button (button6) then linking it to the mc3, with it's actionscript in the main timeline with the other button functions.
    I tried duplicating mc3 and duplicating invisible button 3 and moving it's hotspot to over the word.
    I tried putting a copy of mc3 and the button inside mc4, with the actionscript also inside mc4.
    I tried duplicating mc3 and calling it mc6, and putting that inside mc4, with the actions back on the main timeline, and tried again with the actions inside mc4.
    I tried with mc6 and invisible button 6 on the main timeline, but that doesn't seem possible.
    I tried using this code from Adobe Actionscript 3.0:
    button6.addEventListener(MouseEvent.CLICK, startMovie);
    function startMovie(e:MouseEvent):void
            this.play(&quot;mc6&quot;); [and I also tried with &quot;mc3&quot;]
    Nothing works!! Please, I would appreciate any suggestions!!
    Thanks,
    Suzanne

    If I limit my attention to the second sentence of your posting, then I suggest the following (borrowing from the rest of your posting)...
    If that invisible button6 is inside MC3 (on MC3's main timeline), atop the word you are trying to link to the movieclip, and you just want to make mc4 play by clicking that invisible button6, then assign the following code to the button6 inside MC3...
    button6.addEventListener(MouseEvent.CLICK, startMovie);
    function startMovie(e:MouseEvent):void
            MovieClip(this.parent).MC4.play();
    If I missed, then I missed following your explanation.

  • Flash CS4: My animated gif isn't playing right in flash

    Thank you so much for your help.
    I made an animated gif in Photoshop CS4 and opened it in Flash CS4, but for some reason the gif won't play without interruption. I opened and played it without a problem several times in Internet Explorer and Safari, but when I open it in Flash or Captivate it won't play so smoothely. It goes blank for a few seconds, then reappears, then goes blank and only shows parts of the graphic - as if it's reloading or something. The timeline in Flash shows black dots whenever it pauses. here is a screen shot:
    See those black dots in the timeline? I will insert a picture of what happens on one of those black dots:
    It's the same animation, but only shows a little of the graphic. Like I said, it plays fine when I open it with an internet browser, or photoshop, but not in Flash or Captivate.
    Thanks so much for helping me with this!
    Nat

    When you exported from Photoshop did you use LZW compression on the GIF? If so can you try disabling LZW compression and reimporting to see if your issue goes away? What you depict there looks like updated frames only contain the part of the picture that's changing, which is compression. GIF isn't compressed by nature and each frame should be a whole picture, unless compressed. I'm not certain LZW would even perform spatinal compression but it's worth a shot to see if it does.
    Aside that have you tried using Import to Library, then dragging the image from the library into the timeline?

  • How can I make a transparent square box swf file in flash cs4?

    Hi,
    I have one picture imported into flash cs4 and would like to make a rectangle box which should be transparent. Finally I will save it as .swf file for later use. But the box should be transparent (without any background). How can I do that? Please do help.
    Thanks.

    Hi just a shot in the dark..
    Have you fiddled with movieclips and the alpha property?
    Best regards
    Peter

  • Need to import from Maya 3D model in an Air-flash cs4 desktop application without loosing quality

    Hello everybody,
    We developed an air flash cs4 desktop application for the medical industry.
    Our application is too large because instead of using the 3 D model made via Maya, we use many images to simulate the rotation in order to keep the hight quality of the images.
    When we first developed the application we used C++ but we were loosing too much quality because we could not import the texture and the light effect at the same time - we could import only one of them.
    Now that we are using flash cs4 do you know if we could import in flash cs4 the 3D model which contains a hight amount of polygone with the texture and the light effect without any problem ? that could solve maybe our issu regarding the size of our application.
    Any help would be greatly appreciated.
    Best regards
    Rachel

    I would look into using Papervision 3D, a full 3D engine for Flash.  This is built by a 3rd party, but is the current standard for doing these types of things.
    You can export the Maya project out to a compatible format for use in Papervision.
    http://blog.papervision3d.org/

  • How can I mask on flv file in flash cs4?

    Hi,
    I am new to Flash CS4. I saw one video on how to use flv file in flash and mask it. It is working fine when I am using the following option while importing a video file to flash:
    Load external video with playback component
    But when I tried with the following option it doesn't show the background, it shows only movie which is playing nicely. But not the background which has a bill board.
    Embed FLV in SWF and play in timeline
    It seems the mask is not working with this option.
    How to solve this problem? Please help.
    Actually it should be like the above.
    But when I am using the option Embed FLV in SWF and play in timeline while importing the flv video, getting the result like below: It is not showing the Bill board as above.
    See the layers created:

    Hi,
    I Tried with CS4 by creating mask layer and importing video , layers created were same as you have created and it is working for me .
    Here is the screen shot of the .fla file.
    Screenshot of .fla file

  • How can I use LCCS with ActionScript 3 and Flash CS4?

    Hi,
    Using Stratus I was able to create an an application using Action Script 3 and Flash CS4.  The sample code on the Adobe site was quite straight forward and easy to understand.  I now want to switch over to  LCCS but can't find anything any where on how to use Action Script 3 and Flash CS4 with LCCS.  Do I need to know Flex to be able to use LCCS?  Everything was quite simple and easy to understand with Stratus and makes complete sense.  But LCCS is really confusing.  Is there any sample code on how to establish a connection in Action Script 3 and then stream from a webcam to a client.  There is nothing in the  LCCS SDK that covers Flash and Action Script 3.  Please help!  I found the link below on some forum but it takes me nowhere.
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=75 9&threadid=1407833&enterthread=y

    Thanks Arun!
    Date: Thu, 29 Apr 2010 11:44:10 -0600
    From: [email protected]
    To: [email protected]
    Subject: How can I use LCCS with ActionScript 3 and Flash CS4?
    Hi,
    Welcome to the LCCS world.
    Please refer to the SDK's sampleApps folder. There would be an app called FlashUserList. The app demonstrates how LCCS can be used with Flash CS4. Its a  pretty basic app, but should help you moving.
    We are trying to improve our efforts to help developers in understanding our samples. Please do let us know if we can add something that would help others.
    Thanks
    Arun
    >

Maybe you are looking for

  • XI 3.0 queues stop and deactivate

    Hi, We are getting everyday the same problems with XBTO* queues. With a set of Idocs (about 200-500) entering in XI 3.0, usually LUW's are stoped in queues XBTO* (scheduled for outbound). We have registered this type of queues and the properties are:

  • How can I get rid of a small "download" pop up?

    whatever I do online on my computer is always a small "download" popup in my way. How can I get rid of it? I have no idea where it comes from.

  • How can I generate PDF

    Good morning to all. I have this need: I need to print massively invoices and store them individually, in pdf format, divided into different folders per customer. How can I do to create PDF without interacting with the user ( name file , folder name,

  • I cannot load the Creative Cloud window, and populate it.

    This is what the window looks like when I try to load it. On behalf of Derek Dunson, this is Bill Newton -- [email protected]

  • Playing footage over network - slow down after a while

    Hi everybody, I have ProRes422 footage I work with stored on network. We bought a 12TB NAS and I found, that when I play the edited movie from timeline, it freezes after a while (2-5 minutes) - it seems to me there is some kind of network overload so