Forum Topic: 360° Viewer w/ Hotspots?

(79 views • 8 replies)

This topic is 1 page long.

<< < > >>
Shouting

zenfasterxd

Reply To Post Reply & Quote

Posted at: 7/16/08 06:21 PM

zenfasterxd NEUTRAL LEVEL 06

Sign-Up: 12/17/07

Posts: 66

I have Flash 7. I want to make a 360° Panoramic viewer with buttons. (Like this : http://www.gorillaz.com )

/???////////???/???//?//////?


None

Afflict

Reply To Post Reply & Quote

Posted at: 7/16/08 07:42 PM

Afflict NEUTRAL LEVEL 07

Sign-Up: 08/05/06

Posts: 113

Simply build a movie clip that contains all the frames.
Then add buttons that control the play of that movie. (Previous frame; play;Next Frame; Slider)

I know the slider will be slightly more complex than the other more simple functions but nothing a little research
cant fix ;)

I really unfortunately don't have the time to go through all the nitty gritties right now.
If you haven't solved it later PM me.


None

UnknownFury

Reply To Post Reply & Quote

Posted at: 7/16/08 07:47 PM

UnknownFury EVIL LEVEL 21

Sign-Up: 08/10/05

Posts: 5,316

Are you talking about when you click the "ENTER KONG" link? If so thats not 3D just a background MC which scrolls when you push buttons. I might be looking at wrong thing though.


None

kernalphage

Reply To Post Reply & Quote

Posted at: 7/16/08 08:08 PM

kernalphage NEUTRAL LEVEL 10

Sign-Up: 01/02/07

Posts: 2,207

At 7/16/08 07:42 PM, Afflict wrote: I really unfortunately don't have the time to go through all the nitty gritties right now.

like parallax? things in the background scroll slower than things in the foreground?
give everything a speed at which to move, then have something measure the % away from the middle there is, and if it's more than, say... 20%, have each movieClip add (or subtract) that from their _x.

or something like that. i only know the concept, not the application.

(english/astronomy/philosophy class strikes again!)

my art.,any requests?Art tech support!
pm me if i should start a webcomic. 10+ people think so!

BBS Signature

None

zenfasterxd

Reply To Post Reply & Quote

Posted at: 7/16/08 08:51 PM

zenfasterxd NEUTRAL LEVEL 06

Sign-Up: 12/17/07

Posts: 66

At 7/16/08 07:47 PM, UnknownFury wrote: Are you talking about when you click the "ENTER KONG" link? If so thats not 3D just a background MC which scrolls when you push buttons. I might be looking at wrong thing though.

No. When you press "ENTER KONG" and then click the building up on the hill.

/???////////???/???//?//////?


None

Nicholas-Deary

Reply To Post Reply & Quote

Posted at: 7/16/08 10:57 PM

Nicholas-Deary FAB LEVEL 27

Sign-Up: 05/12/06

Posts: 5,496

At 7/16/08 08:51 PM, zenfasterxd wrote: No. When you press "ENTER KONG" and then click the building up on the hill.

the same rules apply to what people have be talking about. It's just a scrolling movieclip and some of the images have been fliped horizontally so that they can loop with each other to create the illusion that it's 3D.


None

zenfasterxd

Reply To Post Reply & Quote

Posted at: 7/17/08 10:18 AM

zenfasterxd NEUTRAL LEVEL 06

Sign-Up: 12/17/07

Posts: 66

At 7/16/08 10:57 PM, Nicholas-Deary wrote:
At 7/16/08 08:51 PM, zenfasterxd wrote: No. When you press "ENTER KONG" and then click the building up on the hill.

No. I want a code that will let you pan the image with the mouse.

/???////////???/???//?//////?


None

ModernMudkip

Reply To Post Reply & Quote

Posted at: 7/17/08 10:21 AM

ModernMudkip DARK LEVEL 02

Sign-Up: 05/11/08

Posts: 9

At 7/17/08 10:18 AM, zenfasterxd wrote:
At 7/16/08 10:57 PM, Nicholas-Deary wrote:
At 7/16/08 08:51 PM, zenfasterxd wrote: No. When you press "ENTER KONG" and then click the building up on the hill.
No. I want a code that will let you pan the image with the mouse.

onEnterFrame = function(){
if(_xmouse > (Stage.width/4)*3){
_root.image._x -= 10;
}else if(_xmouse < Stage._width/4){
_root.image._x += 10;
}
}

Happy?


None

Hoeloe

Reply To Post Reply & Quote

Posted at: 7/17/08 10:22 AM

Hoeloe LIGHT LEVEL 21

Sign-Up: 04/29/04

Posts: 3,757

At 7/17/08 10:21 AM, ModernMudkip wrote: onEnterFrame = function(){
if(_xmouse > (Stage.width/4)*3){
_root.image._x -= 10;
}else if(_xmouse < Stage._width/4){
_root.image._x += 10;
}
}

Happy?

Note, this code wasn't tested, so it might not work. It should though.

Theory is wrong.
------------------------------
THE LAST WIZARD AND THE DOOMSDAY RINGS NOW IN PRODUCTION!

BBS Signature

All times are Eastern Daylight Time (GMT -4) | Current Time: 01:00 AM

<< Back

This topic is 1 page long.

<< < > >>
You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!