ActionScript 3.0 :: Figure Out The Instance Name Of The Text Area Component In Focus?

Mar 2, 2009

- I have two textArea components on the stage
- I need to figure out what textArea component is in focus when clicking on it

How do i make it so that it can figure out the instance name of the text area component in focus so i can preforme some code? I tried the following code but it doesn't seem to work.

[Code]....

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Click 2 Times On The Next Text Area To Move The Focus?

Sep 25, 2006

I initialized the variables, the TABBING thing doesn�t work and when I select something from the combo box, seams that the focus doesnt move to the next are even if I click on it, I need to click 2 times on the next text area to move the focus.HERE is the code that i am using...

var a_1 =""; //text areas inputvar a_2 =""; //text areas inputvar a_4 =""; //text areas inputvar a_6 =""; //text areas input var cb_slang:Object = new Object(); //combo boxm_s_lang.addEventListener("change", cb_slang);cb_slang.change = function(){ m_g_slang = m_s_lang.value;}var cb_stype:Object = new Object(); //combo boxm_s_type.addEventListener("change", cb_stype);cb_stype.change = function(){ m_g_stype = m_s_type.value;}

View 2 Replies

ActionScript 3.0 :: Set Focus On TI Component Without Selecting Text?

Mar 19, 2010

Is it possible to set focus on a text input component that contains text without selecting the text? I want to be able to focus on the component and have the cursor flashing after the last letter in the field.I am currently using:myTi.setFocus();That correctly focuses myTi but it also selects all of the text currently in the field. What would I need to add to just have a cursor flashing at the end of the characters currently in myTi?

View 1 Replies

Professional :: Formatted Text In Text Area Component?

Jul 24, 2010

I am trying to display an HTML formated file in the text Area.It should be straightforward task using the following code:

//----------load text file------------------
var loader1:URLLoader =new URLLoader();loader1.addEventListener(Event.COMPLETE,displayText);[code].....

This uses a text area component dragged to stage and named myCV_TA. No text is displayed with that code.It does work when an ordinary text is used and myCV_TA.html/text is changed to myCV_TA.text.Tried many things and decided to live with the simple text file and apply some formating to it://----create textformat object

var mytextformat:TextFormat = new TextFormat();mytextformat.font = "verdana";mytextformat.size = 16;mytextformat.color = 0x006600;[code]....

This code does not apply any formating, the simple text file is displayed but without any formating .

View 2 Replies

Flex :: Add Textinput Component To Text Area As A Text

Sep 8, 2011

I have an problem that i want to add textinput or Any Component to TextArea Component..

View 1 Replies

ActionScript 2.0 :: Change The Font Of A Text Area Component?

Mar 31, 2007

how to change the font of a text Area component . if possible can u send me a sample program.

View 1 Replies

ActionScript 3.0 :: Put A Text Area Component On Stage And Set The Vertical Scrolling To Auto

Oct 16, 2009

I put a text area component on stage and set the vertical scrolling to Auto, so now when ever I have to much text the scroll bar pops up, but the problem is that I can't get the scroll bar to always be on the bottom, so when ever I add more text I always have to use my mouse and drag the scroll bar to view the latest info, is there a way that I can see the latest update without having to manually scroll down?

View 1 Replies

ActionScript 3.0 :: Separating Three-figure Integer Into 3 Single Figure Integers?

Apr 26, 2011

Is there anyway of changing an integer of 100, into a 1, 0 and another 0?In context, I've got game with a score. Every time you pick up a coin, it adds 10 to the score, there's 20 coins (so a max score of 200 possible). I've got numbers 0-9 as seperate images. The score currently is a single three digit integer, and I need it to be represented as three single digit integers so I can assign those to an image.

View 4 Replies

Figure Out The Encoding Of The Below Post Response Text?

Dec 16, 2009

I am trying to figure out the encoding of the below post response text. I thought it was amf, but not I am not sure. Please help me identify the encoding type and if you may, show me how to decode the response.

[Code]...

View 1 Replies

ActionScript 3.0 :: Figure Out How To Have An Editable Small Text Box

Feb 14, 2012

I am currently trying to figure out how to have an editable small text box.

The text box will have a default value of lets say "default 1", but will be able to be overided when its compiled to, lets say "Layer 1". Is this possible at runtime? Basically I want to achieve the same goal as just like renaming a layer within flash.

View 6 Replies

ActionScript 2.0 :: Load The Area Of The Xml File Into Text Area On Mouse Click?

May 21, 2004

I would like to first add the xml to my flash. Fine I can do this.But I have a number of buttons, where when I click say CW1, i get the information from the XML file with a node of CW1. I have all the xml set up fine.As I have about eight different postcode types.

ST, CW, CH, TF, WV, WS, DE, SK, SY, and each of these may have numbers that follow, i.e ST1, ST2, ST3 and so forth.

So I can only assume that the postal area could be the main nodes, and the numbers inside the child nodes, am I right thus far.o how can i load the area of the xml file into my text area on mouse click, pulling the information relating.

View 11 Replies

Do Not Allow Editing At Specific Area In Text Area In Flex

Nov 10, 2011

I just want to do not allow editing at some area of text area in flex. How it can be done?let suppose text length in text area is 50 characters, i want to allow editing if cursor position is less than 15, and if cursor position in text area is greater than 15 it should not allow user to add more text in text area.If user press any key it should not add any character in text area.[code]

View 1 Replies

ActionScript 3.0 :: How To Force Focus To The Component

Jan 8, 2010

I'm using a scrollpane component. Within it I have textfields with html text links. All works OK, but I have to click a link twice in order for it to work - the first click seems to "focus" the scrollpane component and then every click afterwards works OK. What's weird is other mouseevents - i.e. rollover/rollout - are working OK without clicking.Is there anyway to force focus to the component so I don't have to click twice?

View 0 Replies

ActionScript 2.0 :: Getting "focus" On A Rollover Area - Put OnRollOver Code Under A Button?

Oct 9, 2006

I have a background Nav area, that on rolling over, I want to come more clearly into focus. This is done by lightening & changing the colour on rolling over, where the background nav area is actually 2 identical boxes, and only the top one shows and lightens and de-blurs on rolling over.

The problem is, I have buttons (of course!) over this whole thing, and when someone hovers over the button...it makes the original code of the nav background think it no longer is rolled over, and goes to the onRollOut() function. It also seems to be killing my performance, so I might be doing something totally wrong.

What I would like is essentially a focus control - you are over the nav background and it lights up the way I want, but the buttons over it (both the nav and the buttons are on the main timeline - the buttons in a layer above the nav) still work normally and it stays lighted up...here is my code if I am doing something obvious, though I have only made a couple of posts so I will not blame anyone for not having a go at it...Shawn

this is in the nav background movieclip, which has a navUnder mc and a navOver mc included in it:

[code]...

p.s. it's available here, well at least in Josh's image gallery: [URL]

View 1 Replies

ActionScript 1/2 :: Listbox Component Focus Rectangle

Jul 27, 2009

I am working on a selector that uses 2 list boxes. Standard stuff, you can move items from the left box with arrow buttons to the right box. However I can't seem to get the annoying green "halo" to go away whenever one of the boxes is selected. I have tried

lstbox._focusrect = false;
lstbox.enabled = false;
lstbox.setStyle("themeColor", "Sample");

Nothing seems to stop that highlight box from popping up. Funny thing is it doesn't pop up in the IDE only when I view the movie online in production.

View 1 Replies

Flash :: TextInput Component Not Giving Up Focus?

Jan 31, 2010

I have a project where a big part of the UI a notebook, where the user enters text in a number of fields, for which it uses a series of TextInput components.Once the notebook is filled in the user switches to a screen where the inputs are disabled and they compare what they wrote to a 'model answer'.The problem is that the last TextInput to have focus at the time of disabling retains it - it appears disabled (greyed out etc) but if you type the letters appear in the field.I have tried variations on Selection.setFocus(null), and it seems that Selection.getFocus() returns null/undefined, but can still type into it. I can't select any of the other textfields, and clicking on other interactive elements - bottons etc doesn't seem to want to remove focus either.

UPDATE - Just to make sure there wasn't something crazy happening particular to this project, if I make a nude flash movie with a textInput and a button, then make the button set theTextInput.enabled = false, I can still type into the field. I can't see any way that's a feature.

View 2 Replies

Flex :: Force Component To Redraw It's Focus?

Mar 23, 2011

Suppose I have a component and want to change it's focus color at runtime. Here's an example for you (I've excluded any buttons and such to prevent component from losing it's focus, cause in that case it changes it's color perfectly):

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="init()">
<mx:Script><![CDATA[
private function init():void {

[Code].....

What do I want: How to make this focus to be redrawn without magic (I've tried all the methods, starting with "validate", I've tried calling updateDisplayList() on entire application, I've tried to call styleChanged .

View 1 Replies

Flex :: Set Focus On One Component Until User Enters Some Value

Oct 3, 2011

I am trying to write the code for making a text input control in flex. As the user enters the value in text input control and then if he removes the typed characters to make the text input blank, then I print error message via StringValidator. But I want the focus to be set on that text input only until the user enters anything. How can I achieve that?

View 2 Replies

ActionScript 3.0 :: Get Previous Focus Manger Component?

Feb 4, 2010

script for get Previous focus manager component.I know the script for get next focus focusmanager.getNextFocusManagerComponent();

View 0 Replies

ActionScript 3.0 :: Focus Not Working Properly Because Of Component?

Apr 4, 2009

I'm trying do a simple experiment here, coz I'm stuck with manage Focus because of the component.I'm trying :1. Put an Input Text to the stageYep, the focus works fine. If u click the input text>>the input text get focus, while u click the stage area outside the input text>>the input text lose focus , and so on.2. I put some component, i put a List comp.The focus just go mad, when u click the Input Text, then click stage/another object, the focus doesn't want to leave the Input text.How's that possible? There's no script totally.

View 2 Replies

Actionscript 3 :: Get Rid Of The Blue Focus Rectangle Of A Flash Component?

Dec 5, 2010

I burnt so much time on a costume made component which extends NumericStepper.Adobe should be ashamed.. The flash component quality is poor.Now I'm at stage that all I try to do is to disable the numericStepper's focus rectangle.I haven't found a thing that works, all of the solutions I came across were Flex related.To clarify : this is a pure flash ac3 project.. no flex involved.

View 2 Replies

Flex :: Determine Which (custom) Component In A View Currently Has Focus

Nov 28, 2011

I'm currently building a Flex 4.5 mobile project including several views and custom written MXML components that can be incorporated dynamically into those views.How do I determine which component currently has focus, namely has been activated by the user tapping on it? The background for this is a global search function in the main application. Depending on the results of this search, fields in the custom components are set. Given that I don't want all components in a view to listen to the outcome of that search function, I have to check which one is currently active.I'm trying to bind the selected object (the result from the search function) to the active component.

View 1 Replies

Flex :: Make Background Fades When A Custom Component Is In Focus

Mar 26, 2010

I created a custom component that is a s:SkinnableContainer. I want the background and other items to fade out when this component is visible. Something similar to what happens when calling Alert.show(..) so the Alert box is in focus and everything else is faded out.

View 2 Replies

Flex :: Custom TextInput Component Loses Focus But Still Contains Cursor?

Oct 29, 2011

I have a custom TextInput that listens for the FocusEvent.FOCUS_IN and FocusEvent.FOCUS_OUT events:

textDisplay.addEventListener(FocusEvent.FOCUS_IN, onFocusInHandler);
textDisplay.addEventListener(FocusEvent.FOCUS_OUT, onFocusOutHandler);

My onFocusInHandler function basically removes a "promptview" that tells the user to type in a value, with the onFocusOutHandler doing the opposite.

For example, if the TextInput text was backspaced to a blank value and the user clicks out of the TextInput box, it would show a "Please enter a value" light-gray prompt in the TextInput.

This works fine until the user clicks our custom "Clear" button. The clear button sets the text to "", and I can tell the FocusEvent.FOCUS_OUT is received because the prompt text is set to visible (its not being set anywhere else). The problem is, the cursor remains in the box as if it still has focus, so if the user immediately starts typing, both the prompt text "Please enter a value" and the user-entered text appears over the gray text, which looks pretty ugly and unreadable.

Why does the TextInput receive the FocusEvent.FOCUS_OUT event if it's not actually losing focus?

View 1 Replies

IDE :: CheckBox Component: Increase Size Of Hit Area?

Mar 10, 2009

I'm trying to make selectable thumbnail images for a touch screen app where the user can touch the thumbnail image and turn a CheckBox on or off to select/deselect it.

The thumbnail images measure 100x100 pixels, and I want the CheckBox to be in the upper right hand corner of each image. When I go to the Adobe AS3 help site, it says that it should be possible to increase the size of the CheckBox hit area in one of two ways:

1) Select the component on the Stage and use the Free Transform Tool or any of the Modify > Transform commands.
2) Use the setSize() method or applicable properties of the CheckBox class.

According to this same site, if you increase the size of the instance, you also increase the size of the hit area.

I've tried both of these, and none expand the hit area over the entire thumbnail. In fact, neither seems to increase the size of the hit area at all. In order to select a particular thumbnail, the user still has to hit the CheckBox.

View 1 Replies

Flex :: Change Caret (text Cursor) In Editable Text Area / Text Input?

Nov 23, 2009

I need to put together an editable text area that has a custom caret (cursor) which is different from the default blinking vertical line. Is the caret a "skinnable" property of text input? note that I am not asking about the mouse pointer cursor which can be set using the CursorManager.

View 1 Replies

Flex :: Setting Content Area In Custom Component?

Dec 11, 2009

I am trying to define the content area of a custom component that extends mx:VBox. The component has predefined headers and footers (visual children) and I want to set the area in the middle for adding children to the component. The component will be used like this:

<custom_component>
<mx:button/>
</custom_component>

How would I set this content area?

View 3 Replies

Flex :: Getting The Global Coordinates Of The Visible Area Of A Component?

Oct 19, 2010

I am trying to determine the global coordinates of the visible rectangle that is currently rendered on the stage.

Specifically, if a canvas has an explicit height and width and is a child of a panel that has a scrollbar, the scrollbar can "hide" a part of the canvas. ContentToGlobal(x,y) provides the global position of the content at the time, but content coordinates can scroll off the boundaries of the parent panel and continue to give x,y coordinates that are not visible.

Is there a way to determine the viewable rectangle that is not hidden by anything?

View 2 Replies

Flex IFrame Component Not Rendering Outside Viewable Area?

Feb 4, 2011

Beginner Question: I am using the IFrame Component for Flex in Flex 4. The code below works when it is put at the top of the scrolling area. However, if I put it where it below the viewable area it will not render. I am a complete beginner to Flex. The interesting thing is when I resize the window while the HBox is in view, the Iframe will load. But scrolling to it will not. Below is my code. I have made sure everything is visible=true but it seems like I need to add a listener or somehow trick it to think that the window has been resized to get it to render. Anyone with an idea how to fix this?

[Code]...

View 1 Replies

Actionscript 3 :: Pop Up A Component In Centre Of User's Viewable Area?

Feb 14, 2011

I have an application whose dimensions are larger than the user's screen resolution. Typically, when adding a popup I would call popupManager. addPopup() followed by popupManager.centerPopup(), but this could cause the popup to be added outside of the user's visible area on screen.Is there a way to add a popup in the middle of the user's current viewable area instead?[code]

View 2 Replies







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