Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








A Simple Scripting Question - Rotating An Image


I am trying to rotate an image and I have this script that works fine in flash but when I export the swf file it no longer seems to work. Here it is:

frame 1: r = 0;

frame 2: setProperty ("thing", _rotation, r);
r = r+7;

frame 3: gotoAndPlay (2);

Thanks in advance for any assistance with this.




FlashKit > Flash Help > Flash ActionScript
Posted on: 10-17-2001, 04:50 PM


View Complete Forum Thread with Replies

Sponsored Links:

Scripting For Simple Rotating Mirror Ball
Hi guys new hear and new to Flash. Doing simple project and need to produce a mirror ball that rotates and gives off a few light rays. Please could any one help with graphics and script to rotate the thing.
Thanks for any help bondidj

View Replies !    View Related
Simple Scripting Que?/
Here's the scoop, I'm a beginner coder, I have a logo that I am having fade in, increase in _alpha, _xscale, _yscale. But when it comes in, I want it to fade back out at like half, maybe a quarter the incoming speed. I dont know how to make it move anything other than the initially set speed, in this case 1/6. Anybody feel like playing Superman?


Here's the code on my frame that calls it to action:

logo_mc.targ = 100;
logo_mc.targB = 140;
logo_mc.targC = 140;


Here's the code on my symbol:

onClipEvent (load) {
targ = 0;
targB = 1;
targC = 1;
}
onClipEvent (enterFrame) {
_alpha -= (_alpha-targ)/6;
_xscale -= (_xscale-targB)/6;
_yscale -= (_yscale-targC)/6;
}

View Replies !    View Related
Simple Scripting
Hi, everyone

I have a very basic quiz that I'm experimenting with. I'd like, at this point, just to count the questions and see if I can display the number at the end.

I initialized the variables - right, wrong - on the first frame. I don't want the question counted if the user clicks a wrong answer before clicking on the right answer. On the button for the right answer, I have this little script:

on (release) {
if (wrong=0) {
right = "right+1";
gotoAndPlay(699);
} else {
wrong = "0";
gotoAndPlay(699);
}
}

On the last frame of the quiz, I have a dynamic text box set to display the variable - right.

Thanks.

Dan

View Replies !    View Related
Please Help With Simple Scripting
I'm trying to create a little 10 image slideshow with a simple play/pause button.

The images fade in and out with a tween, and are paused for a few seconds between fades using the following code:


Code:
stop();

Code:

var nInterval = setInterval(Play, 3000);

function Play() {
clearInterval(nInterval);
gotoAndPlay(_currentframe+1);
}
I'm trying to add a play/pause button as well as a coupe of skip buttons, but I'm having real trouble stopping the main timeline, I've tried a few different methods revolving around


Code:
on(release){
_root.stop();
this.nextFrame();
}

(this.nextFrame(); is used as my play/pause buttons are on frames 1 and 2 of a 2 frame movie clip on the main timeline, used to show different button states)

It's since struck me that when I stop the timeline with the button it probably sets a new interval and then plays again after 3 seconds?

My question is - How do I get round this? Alternatively if someone can point out another method to both pause my images for a few seconds and stop everything all together then I'm open to suggestions.

Thanks in advance!
Matthew

View Replies !    View Related
-- Simple -- Make Something Look Like It's Rotating.
Hey,

I have some buttons, I wana make them look like there rotating horizantaly when the mouse is over, I know how to do everything cept make them rotate. I assume it's something with the transform "skew" command, and some simple motion tweens.

By the way, the images I wana rotate are 2d.. if that helps, im sure it's easy.. it's done all over..

Thanks,
Ian

View Replies !    View Related
Simple Rotating Tween
eep. All I want is an graphic symbol to rotate 3-4 times, then rotate backwards.

I can't get the tweening to work :/

View Replies !    View Related
Simple Rotating Tween
eep. All I want is an graphic symbol to rotate 3-4 times, then rotate backwards.

I can't get the tweening to work :/

View Replies !    View Related
Rotating Image
I basically want to create a simple rotating image in flash. I know it is easy, but cannot find step by step instructions anywhere on how to do this. I am using Flax MX. Thanks for any help at all.

View Replies !    View Related
Rotating Image
I basically want to create a simple rotating image in flash. I know it is easy, but cannot find step by step instructions anywhere on how to do this. I am using Flax MX. Thanks for any help at all.

View Replies !    View Related
Rotating Image
I basically want to create a simple rotating image in flash. I know it is easy, but cannot find step by step instructions anywhere on how to do this. I am using Flax MX. Thanks for any help at all.

View Replies !    View Related
Rotating Image 360
Aight, I dont know if this has been covered or not, Im just to tired/lazy/unmotivated to use the Search so Ima ask and wait and watch tv

Anyways, if you goto http://www.team5150.com/ into their main index.shtml after their intro, in the top left, youll see something rotating around a circle, non-stop. Its blue, shouldnt be hard to see.. Anyone know how to do this? I know you do Lost :o

View Replies !    View Related
Rotating An Image
I have an imported jpeg in my flash file that I want to display rotated slightly (15%).
If I use the Free Transform tool or the Transform>Rotate and Scale method, the image shows up very pixellated when I run the file.

So my question is... is there a way to rotate an image and have it display crisply in Flash?

(Rotating in Photoshop does not work as the white area shows up behind the rotated canvas.)
Thanks in advance...

View Replies !    View Related
Rotating Image
I was wondering if there is a tutorial somewhere where I can get this effect...

<a href="http://www.sureshotgraphics.com/">Click Here</a>

that would be great!

View Replies !    View Related
Rotating An Image
I have an imported jpeg in my flash file that I want to display rotated slightly (15%).
If I use the Free Transform tool or the Transform>Rotate and Scale method, the image shows up very pixellated when I run the file.

So my question is... is there a way to rotate an image and have it display crisply in Flash?

(Rotating in Photoshop does not work as the white area shows up behind the rotated canvas.)
Thanks in advance...

View Replies !    View Related
Rotating Image
I woul like to create an imge that rotates clockwise.I have a large round picture of clouds and would like to let them rotate completly 360° around.I know its possible with tweening but i have heard that there is also a solution using actionscript?

View Replies !    View Related
Simple Scripting Question....
When using the LoadMovie command, can I specify that the Movie being loaded should start playing on a certain frame?
How would I script that?

Thanks!

View Replies !    View Related
Simple Scripting Question
I'm fading images in and out, kind of like a slide show. Is there a "stop for _____ seconds" command? I'm running the movie at about 25 fps, and I have to use a hell of a lot of frames for a picture to "stop"....quite the hassle. Please help! Thanks in advance!

View Replies !    View Related
Simple Scripting Gone Bad - Takes 1 Min
i am trying to script these buttons so that when i click one of the buttons the circle moves and keeps moving until you click another button. so when i click the right button the x value moves untill its reached lets say 500 the circle stops moving. and when you click the top button the circle moves up untill it reaches a certain point. i know this is easy but i just cant figure out which is the easist script to use.

Thanks guys, and girls.

View Replies !    View Related
Simple Scripting Problem
Hi Flashkit buddies....
I'm stuck with the problem regarding the showing the value of variable "i" with the increment simultaneuously. I've tried everything possible to have desired output. Actually, during the course of my project I'm working now, an animation is based on that increment. So it would be really easy if I could get the output I desire. I've included my simple action script assigned on frames below :

In Frame 1::

i=0;

In frame 2::

i=i+1;

In frame 3::

numtext.text=i;
gotoAndPlay("2");


In frame 2 , I've put the action script of waiting for specified time (in milisecond) before heading to Frame 3. I've put 1000 milisecond (1 Second). That means it should display increased value (by 1) of "i" in every 1 second. That waiting script works but the main prolblem here is that it doesn't show the value of "i" with increment. Every time it shows only "1". I guess something is missing in above mentioned frame action but don't have idea what it would be. Please help me out with suggestion. Every sort of suggestion would be greatly appreciated. Thanx in advance...

View Replies !    View Related
Newb Need Simple Scripting Help
Hello,

I need to add Actionscript to my navigation buttons to get them to go to certain parts of my timeline but I am having trouble.

On my main timeline I have a movieclip "buttons_mc" and within this movieclip there are 6 buttons. I am not sure if I should be adding Actionscript to the buttons or the timeline.

Can someone take a look and offer me some assisatance. I have attached my fla.

Many thanks.

View Replies !    View Related
[F8] Simple Button Scripting... PLZ Help
All right... this should be a very simple thing, but no matter what code I place where I can't get it to work.

I have an animation that all needs to be linked together through buttons. There are six scenes that are all individual movie clips, and after each one plays, an arrow appears. The viewer should be able to click on the arrow and have the next clip load.

I know this seems so stupid and simple, but can someone give me the proper code to get this to work... and please tell me where I need to put everything?

Do I need to line up all the movie clips on the main timeline? Because when I do that, it starts playing the first one but flashes back and forth through all the clips at the same time. If I use a "stop" function on the main timeline, it successfully plays the first clip but the button ends up going nowhere.

I have tried giving my button an instance name (I think that's the right term), as well as labeling my movie clips and labeling the frames they are on in the main timeline (not all at the same time of course).

Honestly, I can't even remember which codes I tried where already. I had all sorts of combinations of onPress, on (release), = function (), _root.scene_name.play, gotoAndPlay, etc.

The file is too big to attach, I don't know if it really needs to be viewed to get this to work. Seems like it should be simple except I'm a n00b. ;_; Someone, please help me?

View Replies !    View Related
Simple Action Scripting
So with this new CS3 Flash program I can't even figure out how to program a button that only has a hit area in it in order to move farther along the timeline.

I did this in Flash 9 with no problem: http://oregonstate.edu/~bullocka/biodiesel.swf

I made a movie clip for each state that faded in and faded out, then i programmed the movie clip on roll over play/stop etc etc. But now in CS3 I can't do that or even get a simple action script to work on a button. It always says "This ________ cannot have actions applied to it." HELP!

Bullkock

View Replies !    View Related
[cs4] Simple Action Scripting Help
hey guys can some one help me get this simple 3d symbol to scroll left and right on the x-axis (in my example it rocks back and forth, but i want it to be user controlled)

similar to the example at : http://www.cs54.com/blog/2008/06/18/...on-popup-book/

but i do not want the user to be able to view the top of the symbol and i want to limit the amount that the symbol will scroll (do not want to be able to scroll 360 around the symbol);

i would appreciate the help as i am working on a 3d beginners tut.

attached is a source file to work with.

View Replies !    View Related
Scripting Simple Motion
Hello,

I need to be able to move a movieclip via code, but very simply. Something like :

Code:
mymovieclip.moveto(x,y,speed)
I also need to rotate a movie clip, it pretty much the same way as before:

Code:
mymovieclip.rotate(180,speed)
So I could write something like:


Code:
mymovieclip.rotate(180,10);
mymovieclip.moveto(50,50,30);
Essentially, I need to create a simple motion tween via actionscript. I've looked at the tween class but it looks awfully complicated for what I'm trying to do, and I'm trying to go for simplicity, so it's not too suitable.

I just need those two functions, and am looking to make them as simply as possible. Any help in writing these functions would be appreciated, as I don't really know were to begin.

I am using Flash 8.

Thanks for any help provided.

View Replies !    View Related
Simple Website Scripting
Right..

I have 5 movie clips on one scene layered on top of each other. One of them is the navigation which has 4 buttons. the other 4 layers are my content pages (MCs) which fade in and fade out along the timeline.

I want the buttoms to control the content pages.. when "option 1" is selected I would like the current page to start playing (where i have it fading out along its timeline) and the other page to come in!

I have no idea how to do this.... do you use IF commands?? if buttonpress etc

im a newbie to actionscript!!

cheers

View Replies !    View Related
Simple Website Scripting
Right..

I have 5 movie clips on one scene layered on top of each other. One of them is the navigation which has 4 buttons. the other 4 layers are my content pages (MCs) which fade in and fade out along the timeline.

I want the buttoms to control the content pages.. when "option 1" is selected I would like the current page to start playing (where i have it fading out along its timeline) and the other page to come in!

I have no idea how to do this.... do you use IF commands?? if buttonpress etc

im a newbie to actionscript!!

cheers

View Replies !    View Related
Rotating And Image And Buttons
I have done it again. Gotten in too deep for my own good. I have a "home" page with a circle with five
buttons on it. I want the circle to rotate with the buttons
so when you click the button of choice it will end up on the top of the circle and "open" information to the right of the circle. I understand tell target and can do minimal
actionscripting.
Thanks,
Mary

View Replies !    View Related
Rotating And Zoom In / Out Of An Image
I'm looking for a tutorial / resource that will help me learn to do the following:

I want to be able to take an image object and have the user be able to rotate the image 360 degrees ... stopping at any point ... interactively. Also, the user to be able to zoom in and zoom out of this image at whatever point the image is rotated at ... interactively.

Thanks,
Ansia

View Replies !    View Related
Rotating Image Scroller
attached is a fla file i'm having trouble figuring out.

there are 2 parts: an image viewer and a rotating crank handle.

i want to be able to rotate the crank to scroll through the images.

clockwise=forward
counterclockwise=backwards
i want to get rid of the arrow buttons on the image viewer so you only control scrolling with the crank.

the crank turns etc when you click and drag, the viewer works by itself, how can i get them to work together?

thank you!

View Replies !    View Related
Rotating An Image On Mouse Over
I want to rotate an image of a volume knob to a text button when a user places his/her mouse over the text button. There are going to be about 4 text buttons surrounding the left side of the knob. I want the knob to rotate to whatever text button the user mouses over. How do I do it? I am a novice at this so I need the procedure to be in basic layman's terms! I've added an image so you can better understand what I mean. It's just an image... no attempt at making the .swf file.

Thanks,

Tom

View Replies !    View Related
Rotating Image Gone Wrong?
Hello there.

I'm currently in the midst of creating a flash site. However, as part of my site I have incorporated an arm from a turntable. Basically, what I am trying to achieve is the arm coming across and playing a record. I have cut the tonearm into 3 images, a base image, the tonearm and a top image. The base and the top are static images of above and below the arm that will not move. But the arm itself I need to rotate about 20 degrees from a selected pivot point and heres were my problem begins.

At the moment I can only get it to rotate 360 degrees... as well as the fact that it rotates from the top of the image... i.e. looks very stupid and TOTALLY not what I want.

If anyone could be kind enough to break a method down to me of how I would go about doing this it would be greatly appreciated.

Please be very specific, cuz I am a n00b after all

View Replies !    View Related
[F8] Rotating Image Help Needed
Hi Gang ~

Can someone take a look at the examples on this page and tell me how I can create this effect with the Image I have on my Stage?

Some of the Images rotate with RollOver method however I would like to either use MouseDrag or a Slider. Please keep in mind, I'm not a Math Genius so giving me scripts that look like pages of Calculus Equations just give me a headache.

Rotating Image Examples

Thank You - Please help if you can. My project is at a stand still.

View Replies !    View Related
Rotating Image Is Ugly
is there any way to make rotated images look nicer?

no-rotation



rotated (except top left image)
scripted rotation using Number and fractions of pixels

View Replies !    View Related
Rotating Image With Reflections
A few years back I bought a manual for Director 6.0. In the back of the manual there was a demo disc showing some samples of other people's work. One of the samples was called Big Top. It was a totating logo in shinny gold, and as it rotated, you would see reflections of objects and light on the surface. At one Time I asked how it was done, and was told that an ap called RayDream Designer could do it. I was told that in that ap, you could draw a 3D room, with the four walls, floor and ceiling, and when you placed an object in the center of the room and rotated it, you would end up with a rotating image with the reflection from the walls. I never tried it, and long ago RayDream Designer stopped being supported. Recently, I was told that the same thing could be done with Photoshop or Flash, but I have not figured out how it is done. What I want to do, is create a 3D image of a logo in gold, chrome, or somethign reflective, and have it rotate with the reflections as it rotates. I have seen similar thing on TV commercials, but I think I need a little help on figuring out how this is done.

View Replies !    View Related
[?] Image Screwed After Rotating... Please Help
Ok, so I made an image in Photoshop. Then I imported it in Flash (MX), but the image is screwed after I rotate it (72 degrees). I tried to import PNG (transparent), BMP and JPG, but for all three the same ugly result.

See: http://www.mvwd2.nl/flash/rotatingstar.htm (example with the PNG)

Hoe can I solve this?


Thanks a lot!

Niels

View Replies !    View Related
Image Is Distorting While Rotating :(
HI Ultrashock,

Can you please help me with my problem? Somewhy, when I do some image rotations while animating, my images are distorting... Currently I'm using Flash MX, be cause I don't like ActiveX issue with IE 6...

I Know how to fix this problem in Flash 8+. I Just have to enable Image Smooth in Library. But how to do this in Flash MX? Image smooth works fine for first frame, but if I add another frame, everything is distorted

Can someone solve it for flash MX? Or how to sole ActiveX troudle with Flash +8 in IE?

Thanks in advance!

View Replies !    View Related
Layers/Simple Action Scripting
Hello

I've got a movie with 3 layers in it (currently)- One is the background, the other two are animations (the background itself is an animation as well.) What I want to do is insert a "goto and play" command at the last frame in each layer. For the background layer, it only needs to play 3 key frames before looping again. Instead of just copying and pasting these frames (which makes the time line overweight and ugly... and we don't want overweight and ugly, now do we? )I figured I could insert an action script on the third key frame to go back and play frame 1. I also did the same thing for the second layer (a pair of lines, just a motion tween) but put the script at frame 25.) I did the same thing for frame 80 on the third layer (I'm using a 30 fps rate to get a strobe light-like effect for the background) but had it go back to frame 30.

From my knowledge of Flash, this shouldn't be any problem... but when I tested the movie, on frame 25 it simply stops. No more animations... nothing...

What in the @#$%^! am I doing wrong?

Thanks,
Dereck

View Replies !    View Related
Button Scripting, Simple, But Hard For Me. Please Help
I know this is a simple question, but I cannot figure this out. Here is the deal...

I have several layers on one scene. There is a short animated intro and then on frame 125 I need all of the layers to stop doing what they are doing. When frame 125 appears there is a menu to the left (of buttons). Ideally, what I would like is when a user would click on one of those buttons it will take you to another frame in the same scene. Depending on which button you click would depend on which frame you would go to within that scene. Here are my questions:

1) I know that I need to use a 'stop' action on frame 125, but do I need to have that 'stop' action on each layer?

2) I know that on the buttons I need to put the actionscript to say: on (release); {gotoandplay (whatever frame # here)}, but I cannot get it to work. After I have inputed that code on my button it does not gotoandplay. It does nothing.

What am I doing wrong? Please help!
nico

View Replies !    View Related
Simple Button Scripting Question...
hello-

i am in the middle of building the nav structure for my site.
i want to have actions similar to the nav on the site below.
how do you achieve this? to be more specific how do you
script the buttons to fade out like they fade in (but opposite)
i hope this question is not too confusing. when you rollover
the button the box fades in and when you rollout the button box
fades out. help me please.

tyler


http://www.ktema.com/flash.php

View Replies !    View Related
[F8] Simple Audio Scripting Question
I'm calling my sounds via actionscript instead of placing them on the timeline. How do I script to control the volume?? I know that usually if a sound is on the timeline _root.soundname.setVolume(); will do, but I can't get that to work with this method. My code is below. I know this has to be a simple thing, but I've tried several different ways and can't get it to work right.

The reason I'm wanting to figure this out is that I have a mute button, and when the mute button is pressed it equals true. So when it's true I want to set the volume of my sounds to zero. And when the mute button is pressed again it equals false. So when it's false I want to se the volume to 100. I know how to set this up in an if then statement, but just need to figure out the setVolume command. Thanks so much for your time and help.


Code:
//setting up the variable for my sounds and background music

var dynamic_sound:Sound = new Sound();
dynamic_sound.onLoad = function() {
dynamic_sound.start(0, 0);
};


var dynamic_music:Sound = new Sound();
dynamic_music.onLoad = function() {
dynamic_music.start(0, 99);
};



//code I put on a specific frame to call a sound
dynamic_sound.loadSound("new_stair_access.mp3", false);
}

View Replies !    View Related
[MX] Simple Rotating Menu, Problem: Returning To Zero
I'm working on my homepage, and I want the menu to rotate according to which part of the site you are on. The current page should be to the right.

Here's the file.

It works somewhat, but there's a problem. And I think it's because the calculations are wrong when going from/to a rotation of 270 to/from 0...

I've tried making a work-around. But it doesn't work correctly:


Code:
if ((next = 0) and (last = 270)) {
speedinc = (last - 360) / 12;}
else if ((next = 270) and (last = 0)) {
speedinc = (360 - next) / 12;}
else {
speedinc = (last - next) / 12;}


Can anyone tell me what I'm doing wrong?

View Replies !    View Related
Simple Question - Intro Of Rotating Photos
Hello there,

I set out to do a simple flash intro of rotating photographs for my site. I figured it would be basic flash stuff, but I got lost in all the tech lingo

All I really want to do is set up about 5 photos to rotate with some nice effects in between - fading or some such. Is there an easy way to do this? Maybe even a program or wizard that automates making something similar?

Thank you!
Donk

View Replies !    View Related
Dynamic Image Using Scripting
hi all,

i have been unable to create a placeholder for an image where the image changes dynamically using scripting.

So does anyone know any websites or think they can help me with this problem? any help or advice would be appreciated.

thanx

View Replies !    View Related
Scripting 3D Cube Image
Hi

I have a question regarding the tutorial about scripting 3D in flash, with the cube.
Been trying put an image on each side of the cube, however with no succes.
I use BitmapData to draw the image.
Here's my code:


Code:
drawFilledSquare = function(a,b,c,d){
this.clear();
this.lineStyle(0,0,0);
if (isVisibleBetween(a,b,c)){
var fill:BitmapData = BitmapData.loadBitmap("dardar");
this.beginBitmapFill(fill);
this.moveTo(a.x, a.y);
this.lineTo(b.x, b.y);
this.lineTo(c.x, c.y);
this.lineTo(d.x, d.y);
this.lineTo(a.x, a.y);
this.endFill();
}
};
I'm a newbie in Flash, but have some programming experience in java, .net, php,... but not actionscript.
Maybe it just isn't possible?
Someone who wants to help me?

thx!

View Replies !    View Related
Drag And Stop Rotating Image
Hi there!

I've created a panoramaimage, that is dragable, sort of like Photovista or Quicktime VR (or http://www.soh.nsw.gov.au).
My problem now is, how to stop the rotation when I move the cursor outsite the image. The image is 400*300 and my entire swf-size is 800*600.
There is already buttons on the rotating picture, so I can't put a large invisible button on
Please help.

eMJay

View Replies !    View Related
Rotating Cube W/ An Image On Each Side...
making a wireframe cube that can rotate is pretty easy.
but how do you do it if i want the cube's sides to be jpeg images?
any ideas at all would be helpful.

View Replies !    View Related
Got A 3D Rotating Image...problems Going To Frame
I got a 3D rotating image in a movieclip called "clip"

I have a button on the main stage that says

Code:

on (release) {
clip.gotoAndStop(55)
}


That is soppose to work, but it doesnt, probably cause of the code on the main timeline.


Code:

right=false;
left=false;

frame=1;

onEnterFrame=function(){
if(right){
frame++;
if(frame>300){ //number of frames of animation
frame=1;
}
}
else if(left){
frame--;
if(frame<1){
frame=300;
}
}
clip.gotoAndStop(frame);
}

stop();



and of course I have buttons that makes my movie clip play forward or reverse.

any ideas how to get my clip to goto a specific frame?

View Replies !    View Related
Enlarged Image Upon Click During Rotating
http://www.uitv.com/IPortal/zt/MOGO/index_cn.aspx

the flash on this page....when u clicked on the circle icons, it will be enlarged,

anyone knows the script for it and how to do it?

View Replies !    View Related
Rotating Image When Mouse Pressed.
Good evening everyone,

The following are the list of effects that I wanted to achieve:

- By clicking on an image and moving the mouse up or down enables the image to rotate.
- The image is stationed in one position, so it does not move other than the rotation.

The following are the list of steps that caused a problem that I encountered.

1) Click on the image
2) Move the mouse out of the image area while pressing.
3) Release the button
4) Move back into the image area.

The result is that the image will still rotate even though the button has been released. The problem is because the "Release" event occurred when it was outside the image, the script will consider that the image is still being "Pressed".

Is there a solution to how I can make the stop rotating even when the mouse is outside the image area? Your help is much appreciated.

I have attached the files for this case.

View Replies !    View Related
Image Quality Loss When Rotating
Anybody knows why it happens and if there is a way to fix that? When I rotate my imported image, the quality really suffers.

View Replies !    View Related
Rotating Image Header With < 1 2 3 > Navigation
Hi there-

I am trying to create a rotating image header like the one on Dell.com where there is navigation for the varios image slides such as < 1 2 3 >. Creating the linear timeline is no problem for me (one image statically fades into the next on the timeline) - my issue is that I don't know how to make it so that the fade between images is dynamic, ie, that the user jumps around using the <1 2 3 > navigation, and whatever slide the user is on fades into the one they clicked on, which I am figuring is somehow dynamically set with AS (I have only basic AS and XML skills). Any help would be greatly appreciated. I know how to ducktape this to work within a really long timeline, but I'd like to make it as efficient as possible. Thanks in advance!

Nate

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved