Flash - Changing SelectedIndex From AS File?

Nov 26, 2004

I have a simple button function that changes the selectedIndex on a view stack without using the menu bar component. I call the function from the click property on the button and pass an int as the index I want to jump to. When I had the code on the application MXML file everything worked fine. After moving my actionscript to a separate file, I get access of undefined property errors:

protected function changeView(index:int):void
{
myViewStack.selectedIndex = index;
}

How do I get the .as file to recognize the myViewStack component? Do I need to reference Main.MXML somewhere in the .as file? Thanks.

Here is the rest of my code:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[code]....

And finally the .as files with the function in question:

import mx.containers.ViewStack;
protected function changeView(index:int, myViewStack:ViewStack):void
{
myViewStack.selectedIndex = index;
}

View 3 Replies


Similar Posts:


Flash :: Changing SelectedIndex From File?

Mar 11, 2011

I have a simple button function that changes the selectedIndex on a view stack without using the menu bar component. I call the function from the click property on the button and pass an int as the index I want to jump to. When I had the code on the application MXML file everything worked fine. After moving my actionscript to a separate file, I get access of undefined property errors:

protected function changeView(index:int):void
{
myViewStack.selectedIndex = index;

[code].....

View 2 Replies

Flex :: Unable To Bind The SelectedIndex Of A DropDownList To The SelectedIndex Member Of A Bindable Class

Feb 8, 2012

I am unable to bind the selectedIndex public property of a spark DropDownList to it's original source in the view's presentation model.

For the purposes of replicating this issue with as few lines as possible I have two views, and one presentation model. The code follows.

Main.mxml
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"

[code]...

Debugging the application I find that selectedIndex in the presentation model always remains at the default value assigned regardless of which item I selected from the DropDownList. For the sample code above this is -1.How can I bind the selectedIndex in the presentation model such that it is updated appropriately when the selected item DropDownList changes?

View 1 Replies

Flash - Spark List SelectedIndex Doesn't Update?

Sep 8, 2011

when i use nextSlide() and prevSlide(), which are executed when i click on two buttons. SelectedIndex works when i click on the elements in the List. What am i doing wrong? do i have to dispatch some events? Are there any tricks to doing it with buttons?This is my playlist class

public class Playlist extends List
{
private var dispatcher:Dispatcher;

[code]......

View 2 Replies

Flash :: Dynamically Changing The Referenced XML File In AS3?

Sep 28, 2010

Basically I have media being parsed and played by reference of an XML document using AS3. These media files are gonna be seperated into seperate XML files then what I was planning was to just dynamically change which XML file is being referenced. Problem is, the code only fires once on frame 2 and I can't seem to figure out how to switch out the XML file for a different one upon an event trigger. "new URLRequest [URL]" isn't working...do I need to reload a whole other string of code to change to a different XML document?

View 2 Replies

Changing A Mask Size In An Existing Flash File?

Nov 19, 2009

Whilst I did some flash YEARS ago, I am now needing to get back into it. And whilst I have a course booked, I need to do something now. I have downloaded a flash file with a mask from an image website. I want to double the size of the file, but the masking now only highlights part of the image.

View 6 Replies

Data Integration :: Updating Flash From A Dynamically Changing XML File?

Dec 4, 2006

Creating a non-interactive status display: I want to have theflash display reflect data in a server-based XML-file. So far thisis easy. But I want the display to change everytime the XML filechanges-- in order to reflect status changes. I've used anXMLConnector and specified it and the trigger in the first frame.The Flash code catches and shows the XML values initially . Butwhen I edit the XML file, the new values are never picked up byFlash- its almost as though the values are cached. How do I getFlash to regularly be updated from a changing XML file? I've alsotried putting the trigger in a loop- but that doesn't workeither.

View 8 Replies

Flex :: Set SelectedIndex For DownDownList?

Sep 26, 2010

I have an Array Collection as follows

var myArr:ArrayCollection = new ArrayCollection([
{label: "label1", data: "data1"},
{label: "label2", data: "data2"}]);

[Code]....

How to set the selected item for myDDL based on an item id(myID)? I tried something like:

selectedIndex = {myArr.getItemIndex(myID)}

View 1 Replies

Flash Items Vanished - Directory Only Changing The Output .swf File And Used All Of The Same Html Files

Aug 11, 2009

I am new to flash and decided to start out using templates to gain a beter understanding. I grabbed a template - that when I went to save it said it was an MX version - once I began to make changes in it re-save and publish it I noticed that some of the elements were missing. I thought it was something I did so I copied the entire directory and just opened the .fla and saved it without making a change and then published it and the items were gone again. I saved it in the same directory only changing the output .swf file and used all of the same html files

View 5 Replies

Flex :: Why Does TileList SelectedIndex Not Get Updated

Aug 14, 2009

In the code below, the presentedAlbumIndex is used to control the selectedIndex of the TileList. Item "five" is initially selected. Whenever the button is pressed the first item in the array is deleted, and the presentedAlbumIndex is decremented.

In theory, the selected index should stay with "five" every time the button is clicked (until "five" is itself deleted). It works this way for the first button press. However, on the 2nd button press the highlighting changes to "six" for some reason. Also, the TileList selectedIndex is always one behind.

I tried looking into ListBase and monitoring selectedIndex. It looks like the selectedIndex is updated initially to the correct index, but then it reverts back at some point to the correct index+1. I do not know why it's setting back.

It seems it's due to the fact that I am doing a data provider delete and index change in the same operation.

Is there some function in TileList I could override to keep selectedIndex up to date?

Steve

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"

[Code]....

View 1 Replies

Flex :: Getting SelectedIndex For SkinnableDataContainer / List?

Apr 9, 2010

Is there something like selectedIndex for SkinnableDataContainer? It doesn't seem to be one of the available properties.

View 2 Replies

ActionScript 2.0 :: Error - Set The SelectedIndex - Cannot Change Property

Jun 30, 2004

I am having a real problem with one of my components. I have a list object and I need to set the selectedIndex. Now I would think this would be easy, but it appears that for just this instance the selectedIndex property is read only. I have set the property for other instances, and I can read the property for this instance, but I cannot change it.

View 1 Replies

Flex :: What's The SelectedIndex Value Of A Dropdownlist Control When A Prompt Text Is Set

Feb 3, 2011

When using a dropdownlist in flex I'd like to know the exact index value when the prompt is initialized in it.

View 1 Replies

Actionscript 3 :: Change Selectedindex From Viewstack From Child Customcomponent?

Dec 8, 2011

I have a viewstack, which contains 3 (at this moment just 1) customcomponents:

<s:Application xmlns:components="components.*">
<mx:ViewStack id="mainViewStack" x="76" y="90" width="800" height="400">
<components:Login />

[code].....

View 1 Replies

Actionscript 3.0 :: Listbox SelectedIndex Not Displaying Data Held

Apr 22, 2009

In lee's xml tutorial he uses the list component and the text area component but when he tested the swf he had to select the item befour the text field was populated.

i have set the selectedIndex to 0 but the data still does not load untill an item is selected.

View 2 Replies

ActionScript 2.0 :: V2 ComboBox: Default Value Based On SelectedItem Not SelectedIndex?

Mar 16, 2005

Ok I can't find any doco on this and it's driving me crazy. Anyone know how you specify the default value for the V2 ComboBox component based on the selectedItem when you don't know the selectedIndex? Here's my scenario:

I have a hardcoded combobox called "dd_names" with 50 names in it. I'm returning a dataset into Flash via a SQL query, and onload I need the dd_names dropdown to default to the value of the name returned in the dataset. So if the query returns "Tom" I need the dropdown to default to "Tom."

I tried setting dd_names.selectedItem = "Tom" and dd_names.value = "Tom" and these don't work. The ComboBox just defaults to the first item in the list.However, if I use the selectedIndex property and set dd_names.selectedIndex = 3, the ComboxBox doesn't default to the first item in the list but shows the appropriate item. This doesn't help because I don't know the selectedIndex being returned from the query - I only know the selectedItem. Anyone know how to do this??

View 4 Replies

Data Integration :: The Datagrid.selectedIndex Parameter Is Bound To The XML Components?

Jun 21, 2007

I have a DataGrid bound to an XMLConnector and XMLDataSet. The XML data loads fine into the components. However, I cannot get the value of the selected index using: my_datagrid.selectedIndex

The call works fine if you use addItem to populate the grid.

Is there an issue being that the datagrid.selectedIndex parameter is bound to the XML components?

View 1 Replies

Flex :: Make SelectedIndex Correspond To Selected Item In ComboBox?

Jun 21, 2010

Isn't there a better way to accomplish this?[code]...

All I want to do is make sure that when I update the item that the comboBox is pointing to internally, that it's selectedIndex also update so that the label within the ComboBox reflects the new value.

View 1 Replies

ActionScript 2.0 :: News_selector.selectedIndex Bit Is Showing As Undefined In The Debug Window?

Jul 23, 2004

I've got a combo box in my movie (called news_selector), whenever the selection of the combo box changes, I want to do something. Here's my code for the combobox so far...

Code:

on(change)
{
trace("News feed changed to: " +news_selector.selectedIndex);[code].....

The problem is that the news_selector.selectedIndex bit is showing as undefined in the debug window, and thusly the if/else statements are ignored completely.

View 1 Replies

CSS Isn't Changing XML File?

Nov 10, 2009

I'm working on the example attached trying to get my css to alter the colour of my xml links. Despite doing what the forums say you should it's not working. What am I doing wrong?

[Code]...

View 9 Replies

Changing Hue And Saturation Of PNG File?

Jun 30, 2009

We are working on a pretty robust "shirt design" application that allows users to create custom t-shirt designs, create vector output automatically and send the files to a printer.
 
Inside of the application, you can select high resolution artwork in PNG format and add that to your shirt design. We would like to add the functionality to :
 
1) Change the Hue and Saturation of the PNG in question (probably using the ColorMatrixFilter class, or something along those lines). 2) Be able to change the hue of different parts of the PNG... (I know , this is probably tricky).
 
For example, if you have a PNG of a Red Convertible with black tires, how would we even go about changing the color of the convertible and the tires seperately?

View 1 Replies

Professional :: Changing File Name Of .swf Breaks Everything?

Oct 8, 2010

I have changed the "src=filname.swf" in the <embed> tag as well as the "name=filename" part of the <embed> tag however to no avail. The video still no longer plays after I rename the file. It was built in ActionScript3 I think.

View 1 Replies

Professional :: Changing Font In .txt File?

Jan 27, 2011

I'm trying to change the font within the flash file of this site. Its one single swf, with a series of .txt files loaded through actionscript 2.0. How do I change the font of the text within the scrolling box at the right?

View 1 Replies

ActionScript 3.0 :: Changing External AS File?

Apr 22, 2010

I have made an animation that has an external AS file. I want to be able to just edit the AS file and the animation to update. Right now the way I have it set up is in the action script of the fla i have the following:

include "regionMap.as" I am pretty new to Flash so i'm not sure if this is the best way to do this. The way it is now if i edit the AS file and save it..nothing happens unless i go into the fla and publish it again. Is there another way of doing this so that all the user has to do is edit the AS file? I'm sure there is, but I just am not sure how.

View 7 Replies

ActionScript 3.0 :: Accordion Control - Difference Between SelectedChild Property And SelectedIndex Property?

Sep 16, 2009

What's the difference between selectedChild property and selectedIndex property? I read the documentation, both seems to be setting currect active accordion. selectedChild can be only used in actionscript, but other than this, what's the difference?

View 0 Replies

Professional :: Changing Size Of File Before Exporting It?

Feb 3, 2010

I made a banner that will appear at the top of a website, though I just found out I need to decrease the width of it. I would like to export it at a smaller size, so I go to Publish Settings and I notice I can change the width and height. How can I do this while maintaing its proportions? It is currently 791 x 275. Using CS3.

View 5 Replies

Changing File Extension From F4V To FLV - Any Negative Effects?

Sep 2, 2010

I am uploading videos to my new site (aspirin creative) and the player will not recognize any .f4v videos. I changed the extension on one to .flv and it now appears to recognize and play the video. Also, I didnt build the site myself and the developer not Define terms of video playback (which has been less than great so far) the player seems to be a rather strange resolution (600x340) which is not native 16:9 and wont recognize 4:3 encodes without stretching and warping. I have tried to encode close to this in media encoder but as soon as I select .flv over .f4v in the options my ratios seem to go mad, not keeping the preset and not letting me set to anything that is actually 16:9?!

View 2 Replies

ActionScript 2.0 :: Changing Color Of A Movie With A Txt File?

Oct 21, 2003

how can i change the color of a movie clip by a text file

i want to give option to user that he can pass a color code (0Xrrrrrr) and it got reflected in the swf.

View 10 Replies

ActionScript 2.0 :: Changing Color Of A Movie With A Text File

Oct 21, 2003

how can i change the color of a movie clip by a text file.i want to give option to user that he can pass a color code (0Xrrrrrr) and it got reflected in the swf.

View 10 Replies

ActionScript 3.0 :: Changing Fullscreen Background Color From Inferior Swf File

Sep 16, 2011

I would like to have flash www page with dimentions 960x653 pixels. There will be 5 scenes navigated by buttons and each of the scene will have different background color. I would like to have fullscreen background also (filling the rest of the space), and to make it I used "Auto-Resizing  and Centering Content", based on tutorial:
 
[URL]

To make it working with my existing animation I made 960x653 UILoader instead the centerRectangle, and I loaded my swf animation there. Fullscreen background is working - when I scale window of the viewer the main scene keeps its dimentions and background fills the rest of the space, what is what I wanted to. My included animation is working perfectly.
 
But I still have one issue to solve. How to change my fullscreen background while switching scenes? Is it possible to change it from included swf animation?

View 10 Replies







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