Home Tutorials Forums Articles Blogs Movies Library Employment Press Buy templates

Go Back   ActionScript.org Forums > General > Animation and Effects

Reply
 
Thread Tools Rate Thread Display Modes
Old 02-09-2001, 12:43 PM   #1
cha11enge
Registered User
 
Join Date: Feb 2001
Posts: 4
Send a message via ICQ to cha11enge
Red face

how did they do that ? http://www.evesolal.com/flash_us/index.html i mean the left side of this flash site got some lines moving left to right, so how do i do the same effect ?
cha11enge is offline   Reply With Quote
Old 02-09-2001, 05:02 PM   #2
apostle
New Member
 
Join Date: Dec 2000
Location: Reno, NV
Posts: 52
Send a message via ICQ to apostle
Default

cha11enge

It looks like to me that the lines are just a standard line drawn in flash and with an alpha applied.
They are generating the movement with actionscript.

You can learn how to do the same thing here.
http://www.actionscripts.org/tutoria...nt/index.shtml

Once you understand the principals it pretty easy.
Hope this helps. If you need more explination don't hesitate to ask.

apostle.
apostle is offline   Reply With Quote
Old 02-09-2001, 05:30 PM   #3
gyftus
Registered User
 
Join Date: Feb 2001
Location: UK
Posts: 9
Smile Possible solution

Create an empty frame with setting the following variables
moveTowards = +1;
currentLineNumber =1;

Try creating three movie clips each with a line of your
choice.

Create a second keyframe and drag these in the root level and name each ("line1","line2","line3")

Create a third keyframe copying the three lines(f6).

The actions in the second frame should be something like:

currentLine = "line" + currentLineNumber;

if(getProperty(currentLine,_x) < nameofmovie._width){
setProperty("_x","nameofline",_x+moveTowards);
}
else if(getProperty(currentLine,_x) == nameofmovie._width){
moveTowards = -1;
}
else if(getProperty(currentLine,_x) == 0){
moveTowards = +1;
}

Then in the third line for looping purpose just add:

currentLineNumber= currentLineNumber+1
if(currentLineNumber>3){

currentLineNumber = 1;

{
gotoAndPlay (2);

************************************************** ***

I think that should do it, or at least help you do it,
also the speed at which each line moves is something
you'll have to experiment with.

I hope I have been of help

Cheers,
Gyftus


gyftus is offline   Reply With Quote
Old 02-10-2001, 09:00 AM   #4
cha11enge
Registered User
 
Join Date: Feb 2001
Posts: 4
Send a message via ICQ to cha11enge
Wink thankx

thankx guys ! i really apreciate the helps. let me go through each of your's help. if there any other quecsions i may comeback here. thankx in advance.

wow this is great !!!
thankx,
cha11enge
cha11enge is offline   Reply With Quote
Old 04-09-2001, 05:34 AM   #5
gros
Registered User
 
Join Date: Apr 2001
Posts: 1
Unhappy need help

I'm looking for a crack for illustrate 5.1
do you know if it exists?
gros is offline   Reply With Quote
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Animation of two lines with a moving pivot point ujnip ActionScript 2.0 2 09-12-2006 04:16 AM
moving vertical lines urbane bonobo ActionScript 1.0 (and below) 2 08-12-2006 10:29 PM
global function for moving lines sanderH ActionScript 1.0 (and below) 5 03-07-2004 12:50 PM
Continuous moving lines in the background? ToddziLLa ActionScript 1.0 (and below) 1 09-17-2003 04:59 PM
get and set property for moving lines wowtigger Simple Stuff (Newbies) 1 10-03-2001 12:37 PM


All times are GMT. The time now is 11:48 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Ad Management plugin by RedTyger
Copyright 2000-2009 ActionScript.org. All Rights Reserved.
Your use of this site is subject to our Privacy Policy and Terms of Use.