Linking buttons in FLow List component

This is a discussion on "Linking buttons in FLow List component" within the Flash & Multimedia Forum section. This forum, and the thread "Linking buttons in FLow List component are both part of the Design Your Website category.


 Subscribe in a reader

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

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Aug 28th, 2007, 21:55
New Member
Join Date: Aug 2007
Location: NC
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Question Linking buttons in FLow List component

I am currently using a Flash component called "Flow List" from http://www.afcomponents.com
Here is the issue I am having. I have the 3D flow list images in the selector linked to different HTML pages. But what I want to do is link the arrow buttons below the images in which the buttons activate the next link to open rather than the images themselves. I tried linking the buttons with the same action script code used for linking the images, but the URLs then came up as undefined. Has anyone used this component before and know how to do this? Or even if you haven't, could you take a look at the action script and help me figure out what I need to add or fix?

Quote:
// Add Event Listeners

// display first image description
myFlow.addEventListener("ITEM_LOAD_COMPLETE",dspTe xt);

// display description once image is clicked
myFlow.addEventListener("ITEM_ON_RELEASE", dspText);

// load selected item
myFlow.addEventListener("ITEM_ON_PRESS", this);

function ITEM_ON_PRESS(evnt:Object) {

getURL(evnt.target.data, "_self");
}
// Start Code

left_btn.onRelease = function() {
if (myFlow.getSelectedItem().id>0) {
myFlow.selectPreviousItem();
}
};
right_btn.onRelease = function() {
myFlow.selectNextItem();
};

// End Code
Any advice is greatly appreciated, thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Aug 29th, 2007, 21:18
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Linking buttons in FLow List component

Hmm, I'd need to see the actual file, feel free to PM it to me and I can take a look at it to help. The script you have posted here just involves the functionality of each button moving based on what is clicked it doesn't define each button or give it a URL to go to. If each of the "buttons" has an instance name you can add some code to each one to make it goto a specific URL on release but I would need to see how those are structured. It sounds like "myflow" is a movieclip and this code you posted above just manipulates the movieclip.

Cheers,

Scott
Last Blog Entry: Yay!? (Oct 8th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
buttons, component, flow, linking, links, list

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
Linking buttons jtyoungs Flash & Multimedia Forum 4 Nov 8th, 2007 13:45
Problems linking flash buttons Phixon Flash & Multimedia Forum 10 Jul 25th, 2007 15:14
Anybody use flow charts for logic design? Donny Bahama PHP Forum 3 May 8th, 2007 15:44
List to flow in curved box - How? csa Web Page Design 1 Aug 7th, 2006 16:03
Making Background image flow in FF csa Web Page Design 3 Jan 15th, 2006 15:29


All times are GMT. The time now is 06:49.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization 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