Re: [Flashcoders] Spline 3D Atom Menu thing?

2005-11-17 Thread Moses Gunesch
sorry Jester, I did not see that my mail bounced way back when so i'm  
sure you found something -


here is the old rag I did years ago that fits your description, it is  
a 3d molecule that shapeshifts when you click on a node. I think it  
was flash5, this was ages ago.


http://www.mosessupposes.com/archive/ancient/3d.htm
Moses


On Oct 20, 2005, at 8:46 AM, JesterXL wrote:

I'm looking for some OOd 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


Re: [Flashcoders] Spline 3D Atom Menu thing?

2005-11-17 Thread JesterXL
Nice!

- Original Message - 
From: Moses Gunesch [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, November 17, 2005 7:00 PM
Subject: Re: [Flashcoders] Spline 3D Atom Menu thing?


sorry Jester, I did not see that my mail bounced way back when so i'm  
sure you found something -

here is the old rag I did years ago that fits your description, it is  
a 3d molecule that shapeshifts when you click on a node. I think it  
was flash5, this was ages ago.

http://www.mosessupposes.com/archive/ancient/3d.htm
Moses


On Oct 20, 2005, at 8:46 AM, JesterXL wrote:

 I'm looking for some OOd 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


Re: [Flashcoders] Spline 3D Atom Menu thing?

2005-10-21 Thread JesterXL
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; iamount; 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(100-(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; iamount; 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

RE: [Flashcoders] Spline 3D Atom Menu thing?

2005-10-21 Thread Tom Lee
Keith Peters of Bit-101.com wrote a great tutorial based on Jared Tarbell's
work at Levitated.net.

Here's the tutorial: http://www.bit-101.com/tutorials/nodes.doc

Hope that helps,

-tom


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andreas
Rønning
Sent: Friday, October 21, 2005 5:39 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Spline 3D Atom Menu thing?

This stuff is really interesting to me. I'm having to do a fairly 
complex node based animated layout and i'm kind of stumped as to where 
to start. Any pointers in this direction is greatly appreciated :)

- Andreas

Jobe Makar wrote:

 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 OOd 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


Re: [Flashcoders] Spline 3D Atom Menu thing?

2005-10-20 Thread Moses Gunesch
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 OOd 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


Re: [Flashcoders] Spline 3D Atom Menu thing?

2005-10-20 Thread Campbell Anderson
Hey eric,

I didnt try it like that instead I have an icon class which part of its
contructor or functions branching off was to duplicate the icon and
create an bmp copy with tranformation matrix(flipped) and apply a
gradient(alpha) bmp as a mask. then the class just has an interface to
move the icon and move the y axis of the reflection bmp. added a glow
trail to it too. then the movie contained the 3d smarts and moved the
icons but i am rewriting it the have a menu manager class which acts  as
an event listener/manager. :o)

how did you go about yours? I could be up for a bit of a share. I have
been side tracked with flex 2 though :o) sooo much fun.

 Its not like FrontRow - it was lines radiating from a center space
with menu
 items on the ends - rotating, etc. slowly I believe. I've saw that a long
 time ago, but don't remember where :(
 
 I started a FrontRow interface as well... and found out that reflection
 class that surfaced only supports one clip at a time (I digress)... but if
 someone has coded it up already, might be nice to share ;)
 
 e.d.
 
 On 10/20/05, Campbell Anderson [EMAIL PROTECTED] wrote:
 
  You thinking of making something like the menu of mac frontrow on a
  phone? I have started something like that but as2 for flash and can
  flick through the source?
 
  http://www.apple.com/imac/frontrow.html
 
  Campbell
 
   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 OOd 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