Professional :: Why Don't My Shape Tweens Save?

Feb 16, 2010

I'm trying to save a file that has several shape tweens.  I create the tweens and preview the file and everything works perfectly.  However, when I save it and reopen the file, the tweens are gone.

Attachments:
3_markwardt_framebyframe.fla.zip (55.8 K)

View 1 Replies


Similar Posts:


Professional :: Does CacheAsBitmap Helps For Performance Of Shape Tweens

Aug 2, 2010

I have an image converted into MovieClip (background) and I have a mask MovieClip (bgMask) set to mask the image MovieClip like this:

[Code]....
 
In bgMask I have a few linear gradient shapes which I animate with shape tweens using keyframes. If I don't set cacheAsBitmap for both, nothing will happen since what I need is alpha masking and it will work only then. In this scenario is cacheAsBitmap working for me or agains me? (not that I have any choice). Still I could try to replace some of the shape tweens with MovieClips with solid shape in them and just move them around to uncover some part of the background, and where I want a smoother transition I would stick to the shape tweens. If the object that I've set cacheAsBitmap true to is no longer being animated moved sized and so on, would it be better to set cacheAsBitmap to it to false?

[Code]....

View 1 Replies

Professional :: Get Shape Tweens To Symbols To Show Up When At The Top Of Its Hierarchy?

Mar 29, 2012

I am trying to animate using a heirarchy of symbols and motion/shape tweens for the first time. I have my character built using symbols and groups of them are already in subgroups (I click on one symbol and I can go into that one and there's more inside that). When I go into my character's eye symbol and click the upper eyelid, I can shape tween a blink. It works fine when I scrub through the timeline while still in the character's eye symbol and it still shows up when I publish a preview. But when I go out of that symbol to the top of the hierarchy and play the animation in the frame, I can't see the blink. I don't know why it's happening, but I can't edit all my shapes without knowing where the ones I've already moved are.

View 2 Replies

Professional :: Shape Tween Effect Does Not Save?

Sep 22, 2011

I am running Mac OS X, I recently added a shape tween to one of my fla's and I click save, the save bar pops up but when I re-open the file, everything is fine except the shape tween that I added earlier. The shape tween will not save but saves in the swf.

View 1 Replies

Unstable Stick Shape Tweens

Oct 10, 2009

I've been experimenting with shape tweens using the line tool to make stick figures, and using shape tweens to make the figures move around. It's great fun, but I've been running into a particularly disruptive problem. For example, I'll have a stick figure in one spot at frame 1. I move it across the screen using a shape tween, and bend one of his arms over the course of 10 or so frames. The problem is, Flash seems to be misinterpreting what ought to happen during the tween. Instead of just bending the arm, Flash makes the arm rotate in a full circle. It still ends up where it ought to at Frame 10, but it takes the wrong path to get there. I've attached a video to illustrate what I mean. Look at the upper body piece right at the end. Is there any way I can fix this without having to animate frame by frame?[code]...

View 2 Replies

Mask Multiple Shape Tweens?

May 18, 2011

I'm trying to mask multiple shape tweens for a slideshow animation I'm working on. (the transition would look just like the main animation on this page url...)

Everything works fine when I'm only masking/tweening one shape. But as soon as I add a few more dquares to the mix everything goes to hell. Can someone tell me the most efficient way to have multiple shapes tweening, while masking an image underneath them?

View 2 Replies

ActionScript 2.0 :: Do Color Shape Tweens?

Jan 20, 2005

i'm doing a project that i need to do color shape tweens and i'm doing it the stupidest way but it's the only way that i know.. i'm doing all the probabilities but i'm sure this can be done easily with action script. in this example that i'm show i only have 3 colours but in my project i'll need to use 6 colours and 5 diferent objects and it makes a lot of probabilities [URL]

View 1 Replies

ActionScript 2.0 :: Shape Tweens - Possible To Draw Squares

Jul 10, 2005

How you draw squares for example in AS (if at all possible) and using shape tweens in AS (again if possible).

View 3 Replies

Professional :: Tweens Affect Other Tweens?

Jul 13, 2010

I'm working on a slide show which includes 3 sections that fade in and out automatically as well as can be navigated via buttons.Everything is working fine until I include a 3d tween animation of a hanging sign.it doesn't have any action script - just a 3d tween where the sign swings however once I include it in the slide show, the whole thing goes crazy:The fade in and out of tweens don't work.sometimes the slide show skips and everything start moving very fast as if the timeline was fast forwarded... can someone please helpe me and point me in the right direction of where to even start trouble shooting it?  The problem is that it acts as if there was some kind of script added however there's no action script included in the hanging sign.

View 2 Replies

Professional :: Adding Shape Hints Makes Shape Disappear In Between Frames

Jun 22, 2010

Whenever I add shape hints to a shape tween the shape disappears in the between frames. I am using CS5 on Vista. I using files from [URL]to practice.

View 2 Replies

Can't Save A Shape Tween In Flash CS4?

Sep 26, 2009

I'm using Flash CS4 on a MacBook Pro with Snow Leopard OS X 10.6.1.I've added two shape tweens on two layers in my main timeline. The SWF tests fine. All is good.I close the document.I open it up again and the tween shapes are gone and there are only regular frames between the transitional shapes in their respective keyframes.I've already added shape hints, and they are completely restored when I convert the intermediary frames back to shape tweens.Exporting to SWF after restoring the shape tweens works fine.
 
Closing and then opening the FLA still results in the shape tweens reverting back to regular frames.Exporting an SWF from the newly opened document shows no shape tweening as it is gone from the main timeline.Is this a bug or am I doing something wrong?

View 5 Replies

Actionscript 3 :: Save A Shape (or Sprite) To A Folder After Creation?

May 10, 2011

I am trying to create a county map of Illinois using x,y coordinates from a shp file. I have the x,y coordinates and the county names saved in a CSV file that I have no problem reading in via ActionScript 3 (and the map looks great), but in order to save time in my future application I would like to save each county shape as a permanent shape in my application and give them labels, i.e. Sprite1 (label='Champaign').

In case this is not possible I am trying an alternate solution: I create a new sprite (var spr:Sprite = new Sprite();) for each county, draw it using spr.graphics.drawPath, and give it a name (spr.name='Champaign') and then 'push' it to a vector of sprites (var xy_sprites:Vector. = new Vector.();). This would be great, but it doesn't work when I try to loop through each sprite in the vector and add an EventListener to that Sprite to pop up the name when you MouseOver any of the counties. Is the Sprite data type not the correct way to go about this or am a missing something about Sprites?

Some of my code to draw the shapes and save in a vector:

function drawXYMap(str:String):Vector.<Sprite> {
var arr:Array = str.split("
");
var xy_Sprites:Vector.<Sprite> = new Vector.<Sprite>();

[Code].....

View 1 Replies

Professional :: Change The Shape Of A Shape?

Oct 19, 2010

using the shape tool you can draw basic shapesthen using the subselection tool you can re-shape them by relocating certain points

What i want to do is create a tween whereby one of the points is movedthe problem is you have to convert to a symbol first and after you have done that you cant change the shapes shape.so how do i go about using a motion tween to change the shape of a shape?

View 1 Replies

Web Development :: Save Cropped Image From Custom Shape Mask Action Script 3?

Jun 3, 2011

I've managed to draw a custom shape onto a canvas and use that shape as a mask over an image. Is there anyway possible to crop the image and save it out in the custom shape?making whatever is outside the shape transparent? The only image cropping i can find is using rectangles, whereas i need a polygon shape.

View 1 Replies

Professional :: Save CS4 Documents In CS5 Without Save As Dialog?

May 7, 2011

At my college, they have CS4 (master suite) and at home I've got CS5 (design premium). I can save files in CS5 as CS4 so they can be read at college (by Flash) but I have to do it via the "save as" every time I save. After a couple of times, it get rather irritating. Is it possible for me to save in the usual way (as if it was a CS5 document) without the save as dialog every time I save my work?

View 5 Replies

ActionScript 3.0 :: Replace The Tweens With Flash's Built-in Tweens

Jan 2, 2012

When I want to ask for a small fee for my app, I'm not allowed to use TweenLite. So I started thinking I could probably replace the tweens with Flash's built-in Tweens. BUT I'm also using rotationY. Flash doesn't support this as far as I know. Are there Tween engines out there with a copyleft?

View 6 Replies

Professional :: Consecutive Tweens On Same Object?

Mar 16, 2010

I'm new to Flash, In CS4, is it possible to add two consecutive tweens to the same object (symbol instance)? Say I want to have a shape move in from the left, wait a few seconds, and then move back out towards the left. Thus far, the only method I've found is to create a copy of the object (a new instance of the symbol), and animate it separately. But that creates extra objects, and getting the positioning right is very difficult. Isn't there a way to have one tween end and another begin (possibly after a delay) on the same object in the same layer? Or in different layers, which might be preferable?

View 9 Replies

Professional :: Multiple Tweens On The Same Layer?

Jun 21, 2010

I seem to remember reading that you shouldn't do it.I was mad at Flash CS4 and CS5 because I wasn't able to make the animation work like After Effects, as far as animating something, having it rest, and then animating it again. I know you can do this already, however, if you add easing you could mess yourself up as the ease gets applied to the entire tween. I wanted to be able to tween something with an ease, then let it rest, then tween it again, again with an ease.

Tonight I discovered this: Place CTI over last frame of first tween, select object, copy. Go to next "slot" and Insert Blank Keyframe, then Paste in Place the object. Make some more frames. Then after it all make a New Keyframe (content from preceeding keyframe gets copied into it, then add more frames, select them and Make Tween. I now have 2 tweens on the same layer, each with their own easing that can't get stretched out of place.However, when I did this I noticed, before making the second tween, that I was not able to just click the object and Make Tween from there. I had to actually make regular frames and convert them

View 1 Replies

Professional :: Scale Timeline And Tweens?

Jun 23, 2010

I just finished animating a scene with multiple layers and multiple motion tweens on those layers. But after testing it, i decided that it is too fast. Does anyone know how to scale everything on the timeline without changing the framerate?Also, how can i scale the size (transform) an object that already has a motion tween applied to it? I want to scale it on each frame in the animation, not just the first. I've tried, and it changes the animation where i scale it on the timeline.

View 8 Replies

Professional :: How Many Motions Tweens Can Have On A Timeline

Nov 7, 2010

"How many motion tweens can you have on a timeline."  Yup.  The answer is one...... or is it?  I had a long discussion with my tutor (who is the greatest tutor in the world) and he wanted to think about it. I said to him that I thought that one motion tween was wrong because you can click on an object in the timeline, make it a motion tween, and double click it and make several motion tweens.  So, essentially, you can have more than one motion tween on a timeline. 

View 4 Replies

Professional :: Motion Tweens That Don't Stretch The Object

Jul 29, 2010

I am still making some language flashcards. there are about 20 on the page. when i click the card it is supposed to 'flip' so you can see the translation. the first card does pretty well but then as I continue to the next cards, the tween becomes worse and worse. for some reason as the card flips, its dimensions get thrown off and it becomes really wide or really tall. I want the flip to be a strictly horizontal flip over the y axis. What am I doing wrong?

View 1 Replies

Professional :: Resizing Certain Frames And Tweens On 1 Layer?

Nov 8, 2010

I have created a series of classic tweens in one layer starting on frame 30 through frame 60.  How can I shrink just those frames and scale the tweens with them so they are proportionate to what I had originally, without moving those frames over before frame 30?  So I want them to still start on frame 30 but I want to end at 47 now instead with the tweens still there and proportionate distances that I had originally set up?

View 8 Replies

Professional :: Scaling Symbols And Motion Tweens?

Jun 30, 2011

I created an animation with various symbols and motion tweens, mostly on outer level timeline.  At the end, I realized the resolution was too low for a quality quicktime export.  After scaling the canvas from 550x400 to 1650x1200, I tried scaling the rest of the objects using the "edit multiple frames" brackets, but every scene I try to do this to, only a few of the frames are scaled.  They start scaling and moving around all over the place fluctuating between the original and new positions.  So i have to go back and manually scale/reposition the tween spans.  Am I doing something wrong with the edit multiple frames thing or something?  Or is there an easier way to do this I haven't seen? 

View 3 Replies

Professional :: Button Controlling Motion Tweens

Oct 4, 2011

I am wanting to create a button that, when pressed, will make an image move along the X axis.  However, I want several other buttons to move that object along the X-axis to other locations regardless of where it is currently.
 
I want the object to move from one spot to a second spot, stop, and then move from that new location to either its previous spot or a new spot.
 
Basically having multiple buttons controlling where 1 or more image goes.  I have seen banners that will scroll horizontally when you click different Menu buttons.  The banner slides along the X-axis and stops to reveal the name of the new page on the banner (i.e. Home, About Us, Contact Us, etc.).  When another menu button is pressed, the banner slides again to reveal the new title page name (ie. Home, etc).

View 4 Replies

Professional :: Stopping Previous Functions And Tweens OnPress

Apr 19, 2010

Trying to see if someone can guide me to a way I could stop my earlier tweens and onRollOver function when my onPress function is launched.  What I worked out here with that McX/YScale.stop(); and that target9_mc.onRollOver = null; is kind of working but I don't want the onRollOver function to stop until the onPress function begins.
 
[Code]...

View 1 Replies

Professional :: Make Tweens Move At A Constant Speed?

Feb 14, 2012

I have Adobe Flash CS 5 and have been having difficulties trying to get a created tween to move at a constant speed. I have been converting a graphic I've created to a symbol and turning it into a motion tween, however I have only figured out how to move the tween on a frame by frame basis. Is there a way I can map out the full trajectory of the tween and then set it to travel along that pathway at a constant speed rather than moving from point to point within a certain number of frames? The desired result is a green circle that will bounce off the edges of the computer screen/window as it moves along at a constant speed in the appropriate direction. I am a flash novice and have been fiddling with the program for a few days

View 5 Replies

Professional :: Purpose Of Motion Tweens + Movie Clip Symbols?

Dec 22, 2011

I've been going over several tutorials and whatnot and I'm confused on the point of movie clip symbols and motion tweens. To me using the other tweens and symbols are "easier". Can someone explain to me why they're so beneficial to have been added to CS4/CS5? Except I understand that movie clip symbols can be adjusted using the 3D tools but is that the only difference?

View 1 Replies

Professional :: CS5.5 JSFL: Timeline.convertToKeyframes() Doesn't Work With Motion Tweens

Oct 26, 2011

I'm writing a JSFL script to export animations from Flash. I iterate through every frame in the timeline, and for each frame I go through every element in every layer, and write each Element's symbol name and matrix values out to a file. The problem is, if you've created animation using a motion tween, the exporter steps through every frame but sees the same matrix values for each Element in every frame. This is where I hit the first problem: Iterating through the timeline in this way doesn't seem to work. I can't see any way of getting the right information out for each frame.

There is a workaround: Namely, selecting all the animated layers on the timeline, and selecting "Convert to Frame by Frame animation" from the context menu. Then you run the exporter, and then you have to undo the "Convert to Frame by Frame" animation in order to continue working on the file. That's pretty messy, so I tried to automate the process, by having the export script perform the convert to frame by frame. When you perform the action, and look it up in the History window, Flash tells you that the JSFL command it used was the following:

[Code]...

View 1 Replies

Professional :: Start Stop Motion Tweens With Keyboard Event (powerpoint Style)?

Jul 10, 2011

i've been looking around for answers to my problem to no avail. What I want to do is create a powerpoint style presentation. But rather than change slides, I have one large "graphic" that I am moving around and zooming into by "motion tweening" Now all I need to do is: (with a keyboard event) start the motion tween and then let it play out then start the next motion tween and let it play out and so on. all i have is this, which allows me to start and stop it when it is tweening, but isn't as effective as it stopping at then end of a motion tween, then allowing me to push a key and for it to go to the next "slide"

[Code]...

View 17 Replies

Professional :: Cannot Close The Shape

Feb 17, 2010

I am trying to follow the exercises in the "Classroom In A Book" for Flash CS4 and I am having problems already on exercise 2. the problem is that I can not close the shape, whilst using the pen tool and anchor points. I have tried to make the anchor points extend further than the stage and then clicking on the first anchor point as the book suggests, however, a new line is drawn through the stage, to the first and last anchor point. The problem is I can not add the fill colour.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved