Awesome, works great, thanks a ton!

----- Original Message ----- 
From: "design" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" <flashcoders@chattyfig.figleaf.com>
Sent: Thursday, October 20, 2005 5:25 PM
Subject: Re: [Flashcoders] Spline 3D Atom Menu thing?


This should get you started:


xc = 0;
yc = 0;
zc = 200;
fl = 250;
spacing = 75;
count = 0;
ya = 0;
_global.newsRoll = 0;
cosy = Math.cos(ya);
siny = Math.sin(ya);
xa = 0;
cosx = Math.cos(xa);
sinx = Math.sin(xa);
amount = 8;
for (var i = 0; i<amount; i++) {
joint = attachMovie("joint", "joint"+i, i);
this.createEmptyMovieClip("arm"+i, this.getNextHighestDepth()+50);
joint.gotoAndStop(i%18+1);
joint.x = (Math.random()*4-2)*spacing;
joint.y = (Math.random()*4-2)*spacing;
joint.z = (Math.random()*4-2)*spacing;
joint._rotation = Math.random()*360;
joint.vr = Math.random()*10-5;
joint.onEnterFrame = move;
}
function move() {
if (_global.newsRoll != 1) {
var x1 = this.x*cosy-this.z*siny;
var z1 = this.z*cosy+this.x*siny;
var y1 = this.y*cosx-z1*sinx;
var z2 = z1*cosx+this.y*sinx;
this.x = x1;
this.y = y1;
this.z = z2;
var scale = fl/(fl+this.z+zc);
this._x = this.x*scale+xc;
this._y = this.y*scale+yc;
this._xscale = this._yscale=scale*100;
this.swapDepths(1000000-(this.z+Math.random())*1000);
this._rotation += this.vr;
this._alpha = scale*100;
} else {
//this._alpha = 100;
}
}
onEnterFrame = function () {
// 3dRoll.onRollover = function(){
// if (Roll._visible == 0) {
ya = (_xmouse-xc)*.0002;
cosy = Math.cos(ya);
siny = Math.sin(ya);
xa = (_ymouse-yc)*.0002;
cosx = Math.cos(xa);
sinx = Math.sin(xa);
for (var i = 0; i<amount; i++) {
with (this["arm"+i]) {
clear();
lineStyle(.1, 0x654987, 15);
moveTo(xc, yc);
lineTo(this["joint"+i]._x, this["joint"+i]._y);
this["date"+i]._x = this["joint"+i]._x;
this["date"+i]._y = this["joint"+i]._y;
this["date"+i]._xscale = this["joint"+i]._xscale*2;
this["date"+i]._yscale = this["joint"+i]._yscale*2;
if (_global.newsRoll != 1) {
this["date"+i]._alpha = this
["joint"+i]._alpha;
}
}
}

};




> Sure. let me dig it out and I'll post it here. maybe tonight or so.
>
> -- 
> Carl Welch
> http://www.carlwelch.com
> [EMAIL PROTECTED]
>
> On Thu, 20 Oct 2005 16:48:54 -0400, JesterXL wrote
> > That's it!  It's a smaller version, and has way more nodes, but
> > that's pretty much it.  Do you have to source for just the menu part?
> >
> > ----- Original Message ----- 
> > From: "design" <[EMAIL PROTECTED]>
> > To: "Flashcoders mailing list" <flashcoders@chattyfig.figleaf.com>
> > Sent: Thursday, October 20, 2005 4:41 PM
> > Subject: Re: [Flashcoders] Spline 3D Atom Menu thing?
> >
> > I built this 3d-esge nav system recently:
> >
> > http://www.yuco.com
> >
> > --Carl
> >
> > On Thu, 20 Oct 2005 16:33:11 -0400, JesterXL wrote
> > > Close...
> > > http://levitated.net/daily/levLevitated.html
> > >
> > > Damn... now I remember why I hate Flashkit.  Ok, getting closer:
> > > http://www.flashkit.com/movies/3D/Engines/3D_Engin-Chris_Gl-
95/index.php
> > >
> > > But that's not selectable...
> > >
> > > :: keeps looking ::
> > >
> > > Closer....
> > > http://www.flashkit.com/movies/Scripting/Physics/Catapult-Jason_Sh-
> > 1491/index.php
> > >
> > > Almost exact, but done in Flash 4; reading code now....
> > > http://www.flashkit.com/movies/3D/3d_Cube_-hAnNiBaL-9238/index.php
> > >
> > > ----- Original Message ----- 
> > > From: "JesterXL" <[EMAIL PROTECTED]>
> > > To: "Flashcoders mailing list" <flashcoders@chattyfig.figleaf.com>
> > > Sent: Thursday, October 20, 2005 3:29 PM
> > > Subject: Re: [Flashcoders] Spline 3D Atom Menu thing?
> > >
> > > Naw, more like Metroid 2: Echoes' interface.  This is 2D, I want it
where
> > > they spin on a center axis.
> > >
> > > ----- Original Message ----- 
> > > From: "Jobe Makar" <[EMAIL PROTECTED]>
> > > To: "Flashcoders mailing list" <flashcoders@chattyfig.figleaf.com>
> > > Sent: Thursday, October 20, 2005 1:06 PM
> > > Subject: Re: [Flashcoders] Spline 3D Atom Menu thing?
> > >
> > > Hi guys,
> > >
> > > I built these for a client a few months ago. It ended up leading to
> > > an interesting interface design. I'll see if I can get permission to
> > > post the source to these (they all use the same base classes):
> > http://www.electrotank.com/lab/SpringTests/AttractRepel/NodeLayout.html
> > > http://www.electrotank.com/lab/SpringTests/Rope/Rope.swf
> > > http://www.electrotank.com/lab/SpringTests/Soda/Soda.html
> > >
> > > Jobe Makar
> > > http://www.electrotank.com
> > > http://www.electro-server.com
> > > phone: 919-609-0408
> > > mobile: 919-610-5754
> > > fax: 919-341-8104
> > > ----- Original Message ----- 
> > > From: "Tom Lee" <[EMAIL PROTECTED]>
> > > To: "'Flashcoders mailing list'" <flashcoders@chattyfig.figleaf.com>
> > > Sent: Thursday, October 20, 2005 12:42 PM
> > > Subject: RE: [Flashcoders] Spline 3D Atom Menu thing?
> > >
> > > > I've been thinking of working on something similar myself... I was
> > calling
> > > > it a node net for some reason.  I was thinking these could be a
> starting
> > > > point:
> > > >
> > > > http://www.flashkit.com/movies/Scripting/rubber_h-Ghost-
2397/index.php
> > > > http://www.flashkit.com/movies/Scripting/Other/Linked_N-crax1yt3-
> > 1531/index.
> > > > php
> > > >
> > > > Let me know if you find the original!!
> > > >
> > > > -tom
> > > >
> > > > -----Original Message-----
> > > > From: [EMAIL PROTECTED]
> > > > [mailto:[EMAIL PROTECTED] On Behalf Of 
> > > > Moses
> > > > Gunesch
> > > > Sent: Thursday, October 20, 2005 12:00 PM
> > > > To: Flashcoders mailing list
> > > > Subject: Re: [Flashcoders] Spline 3D Atom Menu thing?
> > > >
> > > > Oh I did that, years ago. I uploaded it to FlashKit I think.. do a
> > > > search for 3d there and maybe you'll get to the file. Otherwise it
> > > > might take me a while to dig it up or maybe you could decompile a 
> > > > swf
> > > > or something.. anyway if you can't get it  write me offlist.
> > > >
> > > > MG/MosesSupposes
> > > >
> > > > On Oct 20, 2005, at 8:46 AM, JesterXL wrote:
> > > >
> > > >> I'm looking for some OOlllld Flash files.  Basically, there was
> > > >> this menu
> > > >> done in Flash that had a shorter stint in fame vs. the scrolling
> > > >> boxes one.
> > > >> It was basically a bunch of lines originating from the center.
> > > >> They had
> > > >> circles on the end of the lines that were clickable buttons.  They
> > > >> "rotated"
> > > >> in 3D as you moved your mouse, and you had to rotate these buttons
> > > >> into the
> > > >> foreground so you could click them.
> > > >>
> > > >> Anyone know where I can find this menu with source code?  AS1 is 
> > > >> ok!
> > > >>
> > > >> Thanks if you can help.
> > > >>
> > > >> --JesterXL
> > > >>
> > > >> _______________________________________________
> > > >> Flashcoders mailing list
> > > >> Flashcoders@chattyfig.figleaf.com
> > > >> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > >>
> > > >
> > > > _______________________________________________
> > > > Flashcoders mailing list
> > > > Flashcoders@chattyfig.figleaf.com
> > > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > >
> > > > _______________________________________________
> > > > Flashcoders mailing list
> > > > Flashcoders@chattyfig.figleaf.com
> > > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > >
> > >
> > > _______________________________________________
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > >
> > > _______________________________________________
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > >
> > > _______________________________________________
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > _______________________________________________
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > _______________________________________________
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> _______________________________________________
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 

_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to