I created some classic text boxes and assign to each of them a tab index using the syntax: "fNameInput.tabIndex = 0; fNameInput.tabIndex = 1; fNameInput.tabIndex = 2;" etc.
afterwards, I decided to turn them into TLF boxes but after I did so, the tab index feature stopped to work.
What's wrong in my code and what should I do in order to turn on the tab index attribute?
I have a form that works fine except that when trying to navigate through input text fields with tab it would skip the last input text field and go to the submit button. So I used this to fix the problem: name.tabIndex = 1; and so forth. Now that problem is fix but I have a new problem. When I test the movie the input fields are populated with this: _level0.instance1.name Does anyone know the reason for the?
Ive copied some code for an xml image viewer that contains a thumbnail scrollbar which loads an enlarged image on click. I want to change the code to go to the next image when I click on the big image. I cant seem to figure out how to find the current index number and add 1 to go to the next one in the onClickBack function.
function fileLoaded(event:Event):void { myXML = XML(event.target.data); xmlList = myXML.children();
I've set the tabIndex for three input boxes in a flash form. When tabbing through the boxes I get a green highlight. Is there a way to change the color or eliminate the highlight all together?
Inside the movieclips I have some code. In this code I need the index-number of the movieclip. I'm staring the code off with: var indexr:Number = _root.i; The for-statement is so fast that all the movieclips get number 9 in the index-variable! Is there any trick to manage this, like can I get the index from the name in some way? Or do I have to work around it in some more or less complicated way?
I have a flash drop down menu that overlaps a separate flash piece in an HTML page. The example of what I am talking about can be found here: [URL]
When you hover over product types, you'll notice that the drop down falls under the 'water banner'. I have set the z-index of that specific banner to be lower than the flash header but it still did not work. When I change the 'water banner' to a static image instead of a flash file, the menu overlaps without a problem.
This is the style that I have applied to the navigation bar
I thought that there was a way to be able to name array indexes. Like instead of myArray[0], it could be myArray["tileFour"]. I thought that instead of using index numbers one could use index words.
I'm just fooling around making an inventory system and I was wondering if there is a way to work out the next available index in an array without pushing the item into the array.So for instance
var array:Array = new Array(); array[0] = new Object(); array[1] = new Object();
a main movie clip (photo_group) which call an external movieclip from xml which call another movieclip which load a video... but the video is placed at the bottom of my main stage and i would like to have it at the top of everything.
main clip : function loadClip():void { var Clip_request:URLRequest = new URLRequest( folderswf + photo_list[swf_no].swf); var Clip_loader:Loader = new
I have used flash for several sites. I am using CS5. I'am use to publishing Flash files to the server, naming the HTML file as index, I also name my SWF file as index. But When I go to the web and look at my site, the tab syas index. I tried changing the SWF file to the name of the site, but this does not work. I also tried and renamed both files and indexnameofsite.HTML, but this also does not work. I tried looking at the script file (open it in notepad) but its mumbo jumbo to me.
where activeCarton is a variable referencing an array of movie clips. Does activeCarton contain the name of the mc or the index. How can I get the mc name string?
I have a game map made of tiles, each tile is stored in an array called _tiles.The very each tile has a "plantable" parameter, which determines whether or not something can be placed on it.Then i loop through the array and check the position of each its elements against the mosue cursor, so I know which tile am I hovering with my mouse.
And it works pretty good. The problem is that even though I know what is the position of the tile I'm having the cursor on, I still lack the knowledge of what index is that tile. I simply can't tell where exactly in the array is placed this tile. I just know its position. The reason why I want to know the index of it, is because it's the only way for me to set a proper flag, namely whether it's plantable or not. Here's the code:
I made a flash website in AS3. Normally, when an user enters a webaddress, the index.html is opened. Now I want to open the index.swf file INSTEAD of the index.html. I DONT want to create a html document that includes the swf file, I just want the swf file to play on its own. A long time ago I red an article about creating an index.php file, with a little piece of code that does this for me, but I cannot find this code anymore. Someone knows what to do?
Is there a way I could specify the index of a array using this short code:[code]How would I go about giving a custom index name instead of it being myArray[0]? I could do it the long way like posted below, but I was wondering the there was a way to shorten this:[code]
i had to remove the flash built form and place an iframe over the top of the animation with an html form! (my reason was that the exported flash file always recognised keystrokes as that of an american keyboard and the @ sign came out as this "when you hover over the icons at the bottom which bring up information contained in a button, it falls behind the iframe.is there anyway in which i can make that particular button that contains a movieclip get the next highest z index to go above the iframe?FYI:-i have tried this on the button instance but does not work...
I have a series of movieclips namely alpha1,alpha2....till alpha56,inside another parent movieclip parentMc.The problem is do I have to write onPress() event actions for each alpha movieclip? Or is there any other way to get the childMovieClip index so that I need to write only onPress function for the ParentMc.I know there is that option in AS3...But is that there in AS2.0..
I want to know, i have a video.swf in a page, and when the video finish, it go to another [url]...
how can i put the video in the index.php, and send 1 variable via post, so when it finish send to the same url that he are but with a varible, and them in php i look this variable and show the page
on this page .i had to remove the flash built form and place an iframe over the top of the animation with an html form! (my reason was that the exported flash file always recognised keystrokes as that of an american keyboard and the @ sign came out as this hen you hover over the icons at the bottom which bring up information contained in a button, it falls behind the iframe.is there anyway in which i can make that particular button that contains a movieclip get the next highest z index to go above the iframe??FYI:-i have tried this on the button instance but does not work...
Is there a way I could specify the index of a array using this short code: Code: var myArray = new Array("teste"); How would I go about giving a custom index name instead of it being myArray[0]? I could do it the long way like posted below, but I was wondering the there was a way to shorten this: Code: var myArray = new Array(); myArray[myCustomIndex] = "testing";
Like I have a parent with 5 children which are the same type of object, like the same class. Is there a function or property that tells me what index this particular child is in its parent? Like this child is the 3rd child in its parent.
Consider an array with x number of elements (of type Object) where some of the elements might be undefined.I use a for-each loop to access all the elements of the array that is not undefined (since it simply skips the undefined elements).But I also want the index of that particular element.The only option I can see is to use indexOf(). But it feels a bit like looking for water on the other side of the river so to speak.
When looping through long arrays each frame, is there a change indexOf() might slow it down? or does the for-each loop somehow know what index it's dealing with?