Gallery w/ controller

This is a discussion on "Gallery w/ controller" within the Flash & Multimedia Forum section. This forum, and the thread "Gallery w/ controller are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 27th, 2007, 20:12
Up'n'Coming Member
Join Date: Aug 2007
Location: N.C.
Posts: 52
Thanks: 0
Thanked 0 Times in 0 Posts
Gallery w/ controller

I have attached a fla.
Its an animation. When you rollover the mc itself the stop button will appear. The space on the right side is empty so you can see the rollover/rolloff effect.

3 things
The cursor I would like to be a pointer, except when on the controller.
The stop button flickers? Can I stop that.
How do I program the stop to stop the animation.

Thanks.
I have been doing trial and error most of the day on different things. Thats why I have posted a few times today. I appreciate the help.
Attached Files
File Type: fla gallery.fla (339.5 KB, 12 views)
Reply With Quote

  #2 (permalink)  
Old Sep 27th, 2007, 21:04
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Gallery w/ controller

Getting rid of the pointer:

http://smartwebby.com/Flash/custom_cursor.asp

I'll look at the other parts and repost your file.
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #3 (permalink)  
Old Sep 27th, 2007, 21:10
Up'n'Coming Member
Join Date: Aug 2007
Location: N.C.
Posts: 52
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Gallery w/ controller

I want the pointer to be a pointer instead of a hand.
If you rollover the mc its currently a handcursor. I want it to be a pointer.

Then turn into a hand when it rolls over the controller.

Thank you for the post.
Reply With Quote
  #4 (permalink)  
Old Sep 27th, 2007, 21:11
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Gallery w/ controller

The link above is how you can turn it back into a pointer.

Basically to get the button to stop flickering...

Create another layer and name it actions, move the stop(); comment to that actions layer on frame one...

Then, move everything else to frame 1 as well on it's respective layer. It only needs to be 1 frame long since the movieclip is embedded inside it.

See attached.
Attached Files
File Type: fla gallery.fla (680.0 KB, 9 views)
Last Blog Entry: Yay!? (Oct 8th, 2007)

Last edited by Sgaspar11; Sep 27th, 2007 at 21:15.
Reply With Quote
  #5 (permalink)  
Old Sep 27th, 2007, 21:14
Up'n'Coming Member
Join Date: Aug 2007
Location: N.C.
Posts: 52
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Gallery w/ controller

mx2004...will it work?


(Will 8 work with the file I currently have built? or is there some reprogramming involved.)
Reply With Quote
  #6 (permalink)  
Old Sep 27th, 2007, 21:17
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Gallery w/ controller

Read the link above. As for getting the slideshow to "stop" at certain points with the way you have it laid out, it'll take some work. I need to hope into a meeting, it'll take a bit before I am back. Check out Kirupa.com and search for slideshow tutorials.
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #7 (permalink)  
Old Sep 28th, 2007, 02:32
Up'n'Coming Member
Join Date: Aug 2007
Location: N.C.
Posts: 52
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Gallery w/ controller

In the example
http://smartwebby.com/Flash/custom_cursor.asp

You should notice that the custom cursor does not match up location-wise
with the real cursor as you drag around the MC.
Is there a way to fix that, so when a viewer goes to rollover the MC the two cursors match up?(so when you drag off the bottom of the MC the two cursors should meet up, but they dont.)

To hopefully help with this scenario, I am trying to duplicate this effect:
http://www.daviddaltoninc.com/index2.html
Skip intro.
Select interior design on right side. Then select a thumbnail on lower left when they load. This will bring up an animation/slideshow. When you drag onto slideshow the controller appears on top of the slideshow. They have a pointer cursor when it drags accross the slideshow. Is that a custom cursor, or did they use the
useHandCursor = false; method?

I appreciate your patience. The alternative is a static controller that appears when the slideshow appears.

thanks.

Last edited by Rick; Sep 28th, 2007 at 02:41.
Reply With Quote
  #8 (permalink)  
Old Sep 28th, 2007, 15:36
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Gallery w/ controller

They just used: useHandCursor = false; method on the movieclip, and embedded within that movie clip are your start and stop buttons.
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #9 (permalink)  
Old Sep 28th, 2007, 17:04
Up'n'Coming Member
Join Date: Aug 2007
Location: N.C.
Posts: 52
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Gallery w/ controller

Sgaspar,

I tried the timeline structure you suggested. But the controller appears with the slideshow on load. I want the controller to wait til a mouseover.

on (rollOver) {
_root.gotoAndStop(2);

}
on (rollOut) {
_root.gotoAndStop(1);
}
The controller is in frame 2 of layer 2. So when the rollover hits, it sends the timeline to frame 2. The rollout goes back to frame 1.
I still get the flickering button.
I have tried different ways of adding the useHandCursor = false; line. Based on the script you see above, where would i put it. MC instance name, or this. go in front of it?

thanks again.

Last edited by Rick; Sep 28th, 2007 at 18:23.
Reply With Quote
  #10 (permalink)  
Old Sep 28th, 2007, 19:06
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Gallery w/ controller

The reason it is flickering is because when you roll over the small button(flash thinks you are doing the (rollOut) ont he movie clip becauase you are mousing over another object...so it is shooting it back to frame 1, then 2, then 1 then 2, etc.

I'll need to think about your structure because it isn't the best way to do it currently, unfortunately I am slammed at work...

I'll take a look at it this weekend.
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
  #11 (permalink)  
Old Oct 2nd, 2007, 21:01
Up'n'Coming Member
Join Date: Aug 2007
Location: N.C.
Posts: 52
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Gallery w/ controller

sgaspar,
I appreciate your assistance with this effort.
I am stuck on this I have continued with trial and error.
I will soon probably choose to have a controller that loads with the slideshow, unless you have the opportunity to try once more.
thanks.
Reply With Quote
Reply

Thread Tools

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Created Flash Photo Gallery in PhotoShop. How can I put this Gallery INSIDE a page?? BlackReef Flash & Multimedia Forum 3 Dec 13th, 2007 18:30
Gallery Help RZX Developer Flash & Multimedia Forum 4 Dec 10th, 2007 15:38
CMS Gallery Tino Flash & Multimedia Forum 6 Sep 28th, 2007 16:03
animation/MC controller Rick Flash & Multimedia Forum 3 Sep 27th, 2007 03:29
PHP Gallery WillisTi PHP Forum 5 Dec 2nd, 2005 21:42


All times are GMT. The time now is 07:37.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43