| Home | Tutorials | Forums | Articles | Blogs | Movies | Library | Employment | Press | Buy templates |
|
|
#1 |
|
Registered User
|
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 ?
|
|
|
|
|
|
#2 |
|
New Member
|
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. |
|
|
|
|
|
|
|
|
#3 |
|
Registered User
Join Date: Feb 2001
Location: UK
Posts: 9
|
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 |
|
|
|
|
|
#4 |
|
Registered User
|
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 |
|
|
|
|
|
#5 |
|
Registered User
Join Date: Apr 2001
Posts: 1
|
I'm looking for a crack for illustrate 5.1
do you know if it exists? |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
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 |