ActionScript 2.0 :: Forloop - Determine Which Thumb Was Clicked?

Jun 18, 2008

i basically have a gallery with thumbs loaded in via xml. and then a currentThumb.onRollover function depending on which thumb was clicked. Now this is all within the forloop function on frame1. what if I want the actions to occur on frame 2 of the main timeline after the coinciding thumb has been clicked. How can I determine which thumb was clicked? I tried using a _global.id = i; but that doesnt store the correct value from the loop.

View 8 Replies


Similar Posts:


ActionScript 2.0 :: Load Captions From Array To Dynamic Text When Thumb Is Clicked?

Aug 6, 2009

how to create a image gallery that uses arrays from a text file rather than xml (this is because the project I have now generates alot of html coding and stores it within a DB, it doesn't have any set html pages so using flash and xml is out of the question as it needs to be relative to the html page).

I have got as far as including my own way to get captions to be displayed as well....but here comes the problem, no matter what loop i have tried the captions seem to stay on the 1st caption and not change as the different thumbnails are clicked..

here is my code

Code:
var locVar = new Array();
locVar = imgLoc.split(",");
var tmbVar = new Array();

[Code].....

View 2 Replies

ActionScript 1/2 :: Load Captions From Array To Dynamic Text When Thumb Is Clicked

Aug 4, 2009

i have this code below that i made using a tutorial....it loads vars from txt file splits it then puts it into an array....once in an array it the brings the pics in from the array to create thumbnails and a larger image. my problem is i have captions to go with it and when i try to load the captions nothing happens or can be seen to be happening. i dont know where i am going wrong as i have no output or compiled errors
 
[Code]...

View 14 Replies

ActionScript 3.0 :: Determine Which One Has Been Clicked

Oct 7, 2009

i am trying to make a photo gallery so when people click on a thumbnail it expands to full screen, my problem is i have lots of pictures and i want to determine which one has been clicked. i thought i would use the e.target in a simple if statement like this:

[Code].....

in this picture one and two are both on the stage with instance names of picture and picture2.

View 3 Replies

ActionScript 2.0 :: Determine Which Button Is Clicked?

Aug 2, 2006

I would like the submenu to become black when clicked and so on. Here's some code (if you have the time the whole thing is included as an attachment). Greetings from Sweden.

Code:
function createSubMenu(num, nypos) {
var array = "sm"+num+"_array";
var totalsm = eval(array).length;

[Code]....

View 2 Replies

ActionScript 3.0 :: Determine If Text Was Clicked In TextField?

Jul 15, 2009

I have a TextField, containing some characters. The TextField is bigger though and containes some empty space. Now I need to determine if on a mouse click on this TextField, the user hit the text or if he hits the empty space.

View 4 Replies

ActionScript 3.0 :: Function To Determine Which Button Is Being Clicked?

Oct 19, 2010

I'm writing an app where I want to know which, of an unspecified set of buttons, the user is clicking.The actual location of buttons determined by previous user actions, so I cant use information like mouseX.You can see from the code the way I'm attacking this - trying to access the button based on its position in the display list of a container. Unfortunately this has always led to type coercion errors 0 - AS can't see that e.target is a DisplayObject.se has solved this problem.

ActionScript Code:
import flash.display.DisplayObject;
import flash.display.Graphics;

[code].....

View 2 Replies

ActionScript 2.0 :: XML Loop Thumb Loader - Stuck On Current (Last) Thumb?

Nov 24, 2009

Using a bunch of the tutorials on this great site, I've been teaching myself AS, and inparticular the XML parse, etc. with the loop commands to load an ideterminate number of images, etc. attributed in an XML file.I've got the attached code to work before - and it works well here too, loading all the thumbnails in their correct location, and as per the XML file. BUT now it's part of this page, the 'current_thumb' seems stuck on the last thumbnail, and a rollOver of any thumbnail will cause only the last one to action. In addition, when I put the trace command in on the onRollOut function (trace(current_thumb_mc) I get "_level0.menu_mc.item3_mc" no matter which of the four tumbnails I rollOver.

//Initial P Value
p = 0;
//Project Information
//Assigning Information[code]..........

View 1 Replies

Flex :: Determine Which Path Element Clicked In FXG File?

Oct 17, 2011

I am working on a sample map application using Flex 4/fxg? Now I have got FXG paths held in Group elements with id's( I have assigned path's id's to the corresponding group container)? But when I click anywhere in the map, I do not get the clicked group as target/currentTarget in event handler. How to determine which element is clicked?

[Code]...

View 1 Replies

Actionscript 3 :: Determine The Index Of An Element In Array That Has Been Clicked?

Jan 3, 2012

Say, I have an array of movie clips (dummies). Each dummy has an event listener and reacts to clicks. And when a dummy is clicked, I want to know the index of the clicked dummy.

I've only come up with this solution: run through the whole array of dummies and find out which dummy is the target, then exit the 'for' cycle and assign some global variable the value of counter variable, but this way the application I am building will demontsrate poor performance.

View 2 Replies

Flex :: Events - Determine Which Button Was Clicked In Dialog

Feb 26, 2012

I am using browseForSave() to give the user a chance to save a file before navigating back to a previous screen. As of now the cancel button on the save dialog just closes the save dialog. I want to see if the cancel button was clicked, and if so continue navigating back to the previous screen without saving. Right now the person has to save the file in order to move back. Below is the code I'm using.

[Code]...

View 1 Replies

Actionscript 3 :: Determine The Index Of An Element In Array That Has Been Clicked?

Sep 2, 2004

I have an array of movie clips (dummies). Each dummy has an event listener and reacts to clicks. And when a dummy is clicked, I want to know the index of the clicked dummy.I've only come up with this solution: run through the whole array of dummies and find out which dummy is the target, then exit the 'for' cycle and assign some global variable the value of counter variable, but this way the application I am building will demontsrate poor performance.

View 12 Replies

ActionScript 3.0 :: Alert Flash To Determine Which Movie Clip On The Stage Is Clicked?

Apr 13, 2011

I have a group of movie clips, each placed randomly on the stage. I want to be able to click one of the movie clips and move them around. They are stored in an array.

View 5 Replies

ActionScript 3.0 :: Eventlistener Only Works On Last I In Forloop?

Feb 25, 2009

this is a function where tooltips are shown on a map. I have tooltips with an arrow on the left and tooltips with an arrow on the right.All working ok but the event is only triggered once.eventlistener only works on last i in for-loop,Why?

function parsemarkets(markets:XML):void {
totalmarkets = markets.market.length(
for (var i:Number = 0; i< totalmarkets; i++) {[code].........

View 5 Replies

ActionScript 2.0 :: XML Data ForLoop Integration?

Aug 25, 2010

I have this loop code that counts up the XML nodes and creates menu items for each node, that was taken from a tutorial. How can I have it so after 10 nodes it creates a new column setting them side by side? Moving them say 100px on the x axis? Here is the 1st part of the code that works:

Code:

Code:
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function (success:Boolean) {

[code]....

View 2 Replies

ActionScript 2.0 :: MovieClipLoader In ForLoop Navigation

Jun 23, 2009

I'm trying use the MovieClipLoader class to load up a swf and have it start at a particular frame. Such as:

[Code]...

View 0 Replies

ActionScript 2.0 :: Assign Button Functions In Forloop?

Nov 3, 2009

I'm populating a list of buttons dynamically with a forloop like this:

Code:
for(x=0;x<imageList.length;x++)
{

[code].....

View 2 Replies

ActionScript 2.0 :: Use A SetInterval Somewhere To Have The Forloop Pause Before It Loops Again?

Jun 22, 2008

What I have is the initial forloop that gets the fabric sections. Then a forloop within this loop to get the subsections.the locations of where the thumbs in the subsection should go are stored in the destThumb variables and then fed through to an easing function.however, each subsection group is also aligned depending on the previous subsection._height.So the thumbs are going to their right relative positions,but the subsections are not.'m assuming this is because the ._heights are being calculated instantly as the thumbs are beginning to ease,therefore making subsection only the height of one row of thumbs. canI use a setInterval somewhere to have the forloop pause before it loops again? Allowing time for the thumbs to ease in place creating the final height? this is just the top snippet of code:

for (var i = 0; i<theFabrics.length; i++) {
var storeHeight = materialSection._height;
var storeYLoc = materialSection._y;[code]............

View 5 Replies

ActionScript 2.0 :: Navigation ForLoop Swap Depths

Jun 30, 2009

This should be interesting in explaining what it is i'm looking for. I have multiple buttons on top of each other. And when the hit state on the other side of the screen is rolled over the text will change, which are all overlapping each other. Would swap depths be the best answer for this to bring the one I'm rolling over to the top? And how would I implement it into my for Loop? I'm using the for Loop for my navigation:

[Code]...

View 3 Replies

ActionScript 2.0 :: Using A ForLoop To Call An Associative Array Nested Within A Indexed Array?

Mar 20, 2012

In the below code, "sector" is an indexed array.fsector1, fsector2,fsector3 are Associative arrays.The "gotoAndStop" command doesnt work properly.The last trace command, "curTerr" returns the same value as "curSec",leading me to assume i did not define "curTerr" properly.

Actionscript Code:
function loadmaptest(){  sector = ["fsector1","fsector2","fsector3"]  fsector1 = new Array();  fsector1["terrain"] = "grass";  fsector2 = new Array(); 

[code]....

View 4 Replies

ActionScript 3.0 :: Detect Wheather The Button Is Clicked Or Not And Disable It If Clicked?

Jun 9, 2010

I have 4 navigation button and like home, about us etc....  And i want to disable home when it is click and cannot clicked it until the user click another button first. means if a visitor is at home page then home navigation is disabled, and all other are active, and when they click at aboutus button then the pages goes to the about us page and the about us button is disabled and other get active. I want this solution in AS3 with oop concept.

View 6 Replies

ActionScript 2.0 :: Buttons To Stay Orange Once Clicked And Only Roll Out Back To Grey When The User Has Clicked On Another Button In The List

Feb 7, 2007

I've got about 6 buttons laid out, one on top of the other in a list format. In their normal state the buttons are grey in colour, when I rollover them, the buttons flash and turn to orange. Now, what I need to happen is this: I want the buttons to stay orange once clicked and only roll out back to grey when the user has clicked on another button in the list. I've been told that the best way to do this is via adding a listener, however I am a little unsure as to how to go about this. I've checked the flash help file and have a basic understanding of how listeners work...but can't really wrap my head around applying it to this situation. Perhaps I will need to have all the buttons as separate broadcasters?

View 2 Replies

ActionScript 2.0 :: When Mouse Is Clicked, Detect Which Movieclip Is Clicked

Sep 9, 2009

I have parent movieclip and in that many different children movieclips

What i want to do is when i CLICK, i want to detect which movieclip it has clicked and call corresponding function (defined by onpress event) of that movieclip.

View 6 Replies

ActionScript 3.0 :: If ButtonOne Is Clicked && ButtonTwo Is Clicked > Go To And Play?

Nov 6, 2011

What does the code look like if I want the user to click two specific buttons then go to a new frame. I've been trying different methods, but I am honestly not brilliant with conditional statements. This is what I've got so far...

about_btn.addEventListener(MouseEvent.CLICK, clickAbout);
home_btn.addEventListener(MouseEvent.CLICK, clickMain);
if (function clickMain(event) && function clickAbout(event))

[code]....

View 7 Replies

ActionScript 2.0 :: Buttons That Stay Clicked Until Another Is Clicked?

Feb 8, 2011

I haven't been able to find a solution that fits my project. I am working on a 50 state map, where I need each state to stay down once clicked, but go up when any other state is clicked. [code]...

View 9 Replies

ActionScript 3.0 :: Name In Thumb And Replace With Swf

Oct 13, 2011

I have this funktion i vant to change a bit.[code]And if der is typed a url in @APP i want it to show insted of the thumb image,

View 13 Replies

Flex :: Set MinHeight Of Scroll Bar Thumb In It?

Dec 23, 2009

In my project we needed to make the scollbars look like Windows scrollbars.

Therefore I have a thumbIcon on the thumb of a vertical scrollbar, but if I get too many items in the combobox, the scrollbar gets fiddly. This is because the margin between the thumbIcon and the border of the thumbSkin is too small.

Is there a way to set the minimum height of the thumbSkin so that I can ensure there is always a margin there and it always looks good, even if there are too many items?

View 3 Replies

IDE :: Image Scroll Up And Down With Thumb Images

Jun 11, 2009

What I want to accomplish is to have a up and down scroll w/ thumb images. Once you press on a image the thumb gets bigger and have the option to close the big image and back to all the thumbs..

View 1 Replies

Professional :: Deploy Flash On Thumb Drive?

Aug 4, 2011

it was decided to deploy the app on thumb drives. Other than creating the flash exe which I have done using flash cs4 are there any better tools available that does not include the File, View, Control, Help that I see in the cs4 flash created exes?

View 1 Replies

Flex :: Get An HSlider With Skins For Each Side Of Thumb?

Oct 12, 2009

I'd like to create an HSlider so that the skin of the track is different on either side of the thumb. So, for example, the track on the left side of the thumb is green, but red on the other.Is this possible or will it take a custom component?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved