Home Tutorials Forums Articles Blogs Movies Library Employment Press Buy templates

Go Back   ActionScript.org Forums > Community Boards > Just for Kicks Challenges

Reply
 
Thread Tools Rating: Thread Rating: 1 votes, 3.00 average. Display Modes
Old 07-13-2003, 06:24 AM   #1
farafiro
Addicted To FLASH
 
farafiro's Avatar
 
Join Date: Dec 2001
Location: EGYPT
Posts: 12,439
Send a message via MSN to farafiro Send a message via Yahoo to farafiro
Default Add line - change line

okey, the idea belongs to bit-101 and I kust thought it's very cool, so we may have it here
it's briefly u start by adding a new line or changing an old line 'till we reach the max limit
here is the rules:
  1. it goes for 50 lines
  2. you may add OR change only one line per once
  3. you can't add/change a new line before another 5 posts from yours (so if u added # 1, next would be # 6,..........)
  4. no prices -as usual- but if we got something cool, I think/hope that Jesse or Strok cad add it to the open source section, under auther's name of the site, if u all do agree
    that's it


just one thing out of this compition to reserve some extra lines, u can do this to draw soome shape with at leat 4 lines off
ActionScript Code:
dim = [[0, 0], [100, 0], [100, 100], [0, 100], [0, 0]]; _root.createEmptyMovieClip("bg", 1); bg.lineStyle(1); bg.beginGradientFill("linear",[0x000000,0x336699],[100,100],[0,255],{matrixType:"box",x:0,y:0,w:100,h:100,r:1}) for (i in dim) {     bg.lineTo(dim[i][0], dim[i][1]); }
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
farafiro is offline   Reply With Quote
Old 07-13-2003, 06:26 AM   #2
farafiro
Addicted To FLASH
 
farafiro's Avatar
 
Join Date: Dec 2001
Location: EGYPT
Posts: 12,439
Send a message via MSN to farafiro Send a message via Yahoo to farafiro
Default

so, I'll start.
just one simple thing to fire of
ActionScript Code:
this.createEmptyMovieClip("crap",-5463)
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
farafiro is offline   Reply With Quote
Old 07-13-2003, 01:24 PM   #3
pom
Allez les Bleus!!!
 
pom's Avatar
 
Join Date: Oct 2002
Location: Paname
Posts: 2,495
Default

ActionScript Code:
this.createEmptyMovieClip( "crap", -5463 ) ; crap.lineStyle( 0, 0xabcdef, 100 ) ;
pom is offline   Reply With Quote
Old 07-13-2003, 08:52 PM   #4
Jesse
Administrator
 
Jesse's Avatar
 
Join Date: Nov 2000
Location: Australia
Posts: 8,612
Default

Okey, here goes. Hope I haven't stuffed you all up.
ActionScript Code:
this.createEmptyMovieClip("crap", -5463); crap.lineStyle(0, 0xabcdef, 100); for (a=0; a<100; a++) crap.lineTo(random(400), random(400));
__________________
Cheers

Jesse Stratford
ActionScript.org Cofounder
Email: presented in this way to stop spam-bots: My email is composed of my first name (jesse) followed by my last name (stratford) followed by @ followed by actionscript.org

Please don't email or PM me Flash questions, that's what the Forums are for!

Please don't rely on me reading my PMs either. Email me about important stuff.
Jesse is offline   Reply With Quote
Old 07-14-2003, 03:58 AM   #5
farafiro
Addicted To FLASH
 
farafiro's Avatar
 
Join Date: Dec 2001
Location: EGYPT
Posts: 12,439
Send a message via MSN to farafiro Send a message via Yahoo to farafiro
Default

Quote:
Originally posted by Jesse
Okey, here goes. Hope I haven't stuffed you all up.
no worries
anyone can change any line
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
farafiro is offline   Reply With Quote
Old 07-14-2003, 05:57 AM   #6
activein
Registered User
 
Join Date: May 2003
Location: Mumbai
Posts: 15
Default

to get going


ActionScript Code:
this.createEmptyMovieClip("crap", -5463); crap.lineStyle(0, 0xabcdef, 100); crap.beginFill(0xabcdef,100); for (a=0; a<100; a++) crap.lineTo(random(400), random(400));



whats vbcode tag for actionscript hilite
edited ( thanks pom)

Last edited by activein; 07-14-2003 at 06:51 AM..
activein is offline   Reply With Quote
Old 07-14-2003, 06:46 AM   #7
pom
Allez les Bleus!!!
 
pom's Avatar
 
Join Date: Oct 2002
Location: Paname
Posts: 2,495
Default

That would be [as ]
pom is offline   Reply With Quote
Old 07-14-2003, 11:59 AM   #8
littleRichard
Registered User
 
littleRichard's Avatar
 
Join Date: Feb 2003
Location: Florida
Posts: 289
Default

kinda hard to do much with 1 line but here it is anyway.

ActionScript Code:
this.onEnterFrame = function() {     this.createEmptyMovieClip("crap", -5463);     crap.lineStyle(0, 0xabcdef, 100);     crap.beginFill(0xabcdef, 100);     for (a = 0; a < 100; a++) crap.lineTo(random(400), random(400)); };
littleRichard is offline   Reply With Quote
Old 07-15-2003, 04:42 AM   #9
farafiro
Addicted To FLASH
 
farafiro's Avatar
 
Join Date: Dec 2001
Location: EGYPT
Posts: 12,439
Send a message via MSN to farafiro Send a message via Yahoo to farafiro
Default

this is the cool part littleRichard, it makes u think to do something more creative than borowing some effect and try to modify it
ActionScript Code:
this.createEmptyMovieClip("crap", -5463);         crap.lineStyle(0, 0xabcdef, 100);         crap.beginFill(0xabcdef, 100);  for (a = 0; a < 100; a++) crap.lineTo(random(400), random(400)); this.onEnterFrame = function(){         };
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
farafiro is offline   Reply With Quote
Old 07-16-2003, 10:46 AM   #10
farafiro
Addicted To FLASH
 
farafiro's Avatar
 
Join Date: Dec 2001
Location: EGYPT
Posts: 12,439
Send a message via MSN to farafiro Send a message via Yahoo to farafiro
Default

well, no one??
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
farafiro 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


All times are GMT. The time now is 02:01 PM.


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.
You Rated this Thread: