Flex :: Caret Moves 2 Positions In Stead Of 1

Jan 27, 2010

I have the strangest issue in Flex!Consider an <mx:TextInput /> with text. This textbox has focus and a nice little caret blinking inside. Now when you press the -> or <- button, the caret moves two positions instead of one! Also when you press the delete button, it removes two characters instead of one.This only occurs in Firefox, but it's not a FF bug because it only happens in my application.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Allows The User To Move A Stickman Into Various Positions And Then Play Back The Sequence Of Moves

Feb 21, 2010

I'm trying to make an application in cs4 that allows the user to move a stickman into various positions and then play back the sequence of moves. Despite the fact that I haven't even gotten that far yet I also would need an undo and redo button. I have a few ideas regarding this i.e. logging each body part's coordinates as the user moves them and editing the timeline through some sort of 'record' button and undoing by having some sort of array...none of which I know how to implement into actionscript yet.

View 1 Replies

Flex :: Caret On TextInput Never Goes Away

Jan 29, 2011

I have a login form with various textInputs and a submit button. If you submit proper login credentials the system unloads the login view and loads the app view. Pretty standard. Unfortunately I've noticed this weird bug where if you hover over one of the textInput boxes with the mouse, then fill the form using only the keyboard (and leave the mouse parked on top of the textInput), and then tab to the submit button and press the space bar, i.e. login via keyboard, the mouse cursor will remain a caret in the new view, no matter what you do (move, click), until you find another textInput to undo the cursor state. I've tried to do all sorts of stuff via CursorManager but nothing seems to do the trick. I've tried dispatching events ROLL_OUT or MOUSE_OUT events to the textInput but that doesn't do the trick either.

View 2 Replies

Getting Video To Start Out Paused In Stead Of Playing?

Aug 14, 2009

I DO NOT KNOW FLASH - let's just get that straight. I do not know actionscript, and I'm not familiar ith the interface. But I do know how to open a document, drag a .flv into the frame, add a playback skin, and save a swf for use on a web page.
 
The problem is that the videos all start playing on default. I'd like the user to have to hit the "play" button to play the video so that they are not inundated with sound when the page loads.

View 2 Replies

Flex :: Set Caret Cursor Position In RichEditableText Control?

Dec 1, 2010

Is there a method to set the caret position within a RichEditableText control? The control's contents can contain errors that the user must fix which are navigated though via Next/Previous buttons, and during the navigation I would like to set the caret cursor to the end of each error within the text.

View 1 Replies

Flex :: How To Get X / Y Coordinates Of Caret Inside TextArea Component

Mar 4, 2011

I googled for almost a day to find the answer to my question: [URL]. This almost works (and is a great solution), but the solution doesn't work when I do:
1). Copy and paste multiple-line texts.
2). Write long and scroll the texts.
I also found another working example at: [URL]. (The autocomplete prompt appears when you press ctrl+space right at the caret's position). But an email from its author says he uses monotype fonts to calculate individual character's location. Is there a way to get multi-line input from a textfield?

View 1 Replies

ActionScript 2.0 :: Why Emptymovieclip Positions Affect Positions Of Thumbnails

Jan 22, 2007

I have thumbs placed on the stage. I create an empty mc to load swf. But my thumbs disappear from the stage when I test the movie ( html or swf) if I settle the _ and _y position of the empty mc.why the emptymovieclip positions affect the positions of my thumbnails?

View 2 Replies

ActionScript 3.0 :: Moving Menu That Moves On Its Own When The Mouse Moves Around It?

Dec 11, 2009

To start things off, I use Flash CS3.moving menu that moves on its own when the mouse moves around it. Like the menu moves up when the mouse moves down.[URL]i have found similar tutorials for what i wanted.. but they are AS2 or older versions of flash..and what i needed is more along the lines of AS3 as that's what my class is learning and using.Does anyone know of an AS3 or anything that works with Flash CS3 tutorial thats what I'm asking?

View 0 Replies

ActionScript 3.0 :: Mouse Hovering - When The User Moves Mouse Down, More Text Appears From The Bottom And When Moves It Goes Back To The Original Position?

Apr 21, 2010

I have MC masked with TEXT,when the user moves his mouse down more text appears from the bottom and when he moves it goes bakc to the original position...I do not want the mouse wheel .. I woudl like to do it by mouse hovering...

View 5 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 :: Detect When A Component Moves?

Jul 6, 2009

When a Flex component moves directly, so that its x and y properties change, then a "move" event is dispatched on the component. That's all fine.

However, a component may also move as a result of its parent component moving — or its parent moving, and so on. Now when a parent component moves, its children just "move along" without any properties changing or move events being dispatched on the children. Still, the children are moving on the screen. So how can you detect this kind of generalized movement?

View 2 Replies

Flex :: Resize An Entire Air App AS IS - Ignoring Component's Positions And Sizes Logic - Like Zooming

Dec 5, 2010

i have written an air app which is fixed in dimensions: 1000 w X 800 h i have set the resizable and maximizable tags of the app-xml to false, to prevent the user from changing it's size. this app looks and interacts perfectly at these dimensions but not at other: it has "bad" coding techniques in it like hard-coded display sizes and such, rtl and ltr combined layoutdirections and so forth...

when the applicationComplete event dispatches, i check Capabilities.screenResolutionY and if it is less then 800 i want to resize the app programatically (preserving the width/height ratio). i have tried all the StageScaleModes and tried changing the dimensions of the stage, the nativeWindow, the app itself("this") and so on in every combination.

i am looking for a way to resize the entire app as is, meaning i dont want to use display logic of the components and such, just to "shrink" or "expend" the whole app as is, with hard-coded pixel amounts to change within the logic of the app accordingly (change all sizes, locations, fonts etc.. in sync) the app should look and work exactly as it did in it's 1000x800 default size, only smaller or bigger

View 2 Replies

ActionScript 3.0 :: Custom Caret With Highlighting?

Aug 9, 2010

I have been working on a Flash touchscreen project for a year, and I'm currently trying to make it easier for users to add text half way into a message. The normal way to solve this, is to click with the "caret" and then keep typing.

I'm looking for a similiar iPhone caret. I'm currently using to find the location, but would like advice about how I could best replicate the iPhone caret hover.

Code:
testText.addEventListener(MouseEvent.CLICK, printCursorPosition);
function printCursorPosition(event:MouseEvent):void {
var tf:TextField = TextField(event.target);

[code]....

View 0 Replies

Professional :: TextField Caret Not Visible In Chrome 6 On Mac?

Sep 7, 2010

The following code result in invisible text caret when viewed in chrome 6 on a mac. So far, I did not find a workaround.

package
{
import flash.display.Sprite;

[code].....

View 7 Replies

ActionScript 3.0 :: Caret Position Out Of Sync With Text

Mar 25, 2009

I've discovered a bug that is extremely confusing to me. Basically I have some text fields that are dynamically created, but once users start typing in them, the caret cursor slowly either falls behind the text your typing or sometimes get's way ahead of where your typing. The result is frustrating when you are trying to delete something because you aren't really sure where the caret actually is. I've attached some code that you can paste into an fla to reproduce the issue.

View 2 Replies

Actionscript 3 :: Flash - TextField Caret Does Not Display?

Dec 13, 2009

I am trying to display a text field that has text inside it, and display the flashing Caret at the end of the text. I have tried the following:

Code:

// ti_title is my textField
stage.focus = ti_title;
ti_title.setSelection( ti_title.length, ti_title.length );

[code]....

The field is focused because I can type into it, but I do not see a Caret until I have started typing. This is not very good for usability.

I have even tried removing text then re-adding it and then setting the selection again, but still not working.

View 1 Replies

ActionScript 2.0 :: Move Input Caret With Setfocus?

Aug 14, 2009

I've got a main input textfield. When I put focus on one of the other textfields and that textfield is empty I want the focus to return to the main input textfield.

But though the focus seems to change (without setselection all the inserted text of the main textfield is selected, meaning focus is put back to it), the input caret stays inside the empty textfield and it is keeping it's focus.

How can I get the focus AND the input caret back to the main textfield?

ActionScript Code:
stop();
var someListener:Object = new Object();
someListener.onSetFocus = function(oldFocus, newFocus) {

[Code]......

View 3 Replies

Actionscript 3.0 :: How To Add Pictures To Caret Point In Textfield

Jan 19, 2010

I am trying to make a textfield that I can add a picture to the caret point -- the problem is that I don't know what the caret point is in the HTML text -- my technecue for dealing with it is to search out a string that is next to my caret point -- as you can imagine this has problems. Like if the caret point is next to a bold tag or if there is two of the strings -- so I was trying to see if anyone new a better way to add pictures to a textfield

index is the caret number
[flash=]
var mytextpic:DisplayObject
editor.do_btn.addEventListener(MouseEvent.CLICK, ADDPICK)
function ADDPICK(event:MouseEvent):void {
var inString:String
[Code] .....

View 1 Replies

ActionScript 3.0 :: Set Caret (cursor) Position In A TextField From A KeyEvent

May 15, 2011

I'm building part of an UI that suggests certain words based on to the user's input. (Quit like Google's suggestions) It works quite well but one detail bothers me: When I have a list of suggestions I highlight the list-items by listening to the arrow up and down keys. When the fist element is highlighted, and the user presses the up arrow, I want the cursor to be in the Text(Input)Field again, but at the last position.
 
(I removed the focus from the InputField not to move the cursor in my singel line field to the first position when the up-arrow is pressed)
 
I set the cursor to the last Position using setSelection() but as it is the field receives the key-press after my event callback is executed and the pressing of the up-arrow in a single line field does what it always does, it places the cursor at the first position.
 
I considered using the CHANGE event, but as the arrow key does not actually change the content of the TextField, that is not working. Still I think that the solution might be along that way, as the CHANGE event is/would be at the end of the event-chain, where I need to do the repositioning of the cursor.

View 8 Replies

ActionScript 3.0 :: Add Text Format To Caret Number In Textfield?

Jan 20, 2010

Add text format to caret number in textfield.This works for getting it on selection[code]...

View 2 Replies

Flash :: Set Focus And Insert Caret In An Empty Text Field In AS3?

Mar 22, 2010

How to set focus and insert caret in an empty text field in AS3

View 3 Replies

Actionscript 3 :: Setting Caret Position In Text Layout Framework?

Jul 3, 2010

i'm attempting to simply set the caret position at the start of the text flow when it is first displayed, without having to click and activate the text to see the blinking caret.

googling returns that the solution is to do this:

textFlow.interactionManager = new EditManager(new UndoManager());
textFlow.interactionManager.setSelection(0, 0);

however, setSelection() is not a valid function of the selection or edit managers.

1061: Call to a possibly undefined method setSelection through a reference with static type flashx.textLayout.edit:ISelectionManager.

View 1 Replies

Actionscript 3 :: Draw Textfield Caret And Text Selection Onto Bitmap?

Jan 6, 2012

I'm drawing a textfield onto a bitmap which I use as texture for a 3D object. I'm listening for Event.change, and so whenever the user adds a character I redraw the texture. But to really give the 3D object a 'interactive textfield feeling', I want to draw text selections and draw the caret (the blinking text cursor), but by default these a not drawn when using bitmapData.draw(textField), nor can I find a Event to listen for 'textSelected'.

//is there any event that catches text selection / blinking of text-cursor?
textField.addEventListener(Event.CHANGE, redrawTexture);
//...
//is there any way to draw text selection / text-cursor in the bitmap?
bmpData.draw(textField);

View 1 Replies

ActionScript 3.0 :: Change Caret Insertion Point In Input Textfield

Apr 30, 2011

Is there a way to reset the insertion point of the caret to any position within an input textfield. I would like to reset it to position 0. The only thing I can find is caretIndex prop but that is read-only. I tried setSelection(0,1) but that didn't work either.

View 5 Replies

ActionScript 3.0 :: Input Textfields Only Showing Caret If Clicked Around Their Halfway Point?

Nov 8, 2010

Im having an odd problem--I have 5 input textfields on the stage, but for some reason when run in order to input text within the first two fields I have to click within those fields from around its middle all the way to the right.Otherwise, no caret shows up and no typing displays.The other fields all work fine--ie, I can click at their leftmost point and get a caret and start typing..I even used the same textfield(#3) to create fields 1 and 2 and still I have to click about midway or to the right to get the caret.

View 3 Replies

ActionScript 3.0 :: Setting Caret (flashing Cursor) When Focus On Text Field?

May 4, 2009

I want to have the caret (flashing cursor) to appear when I set the focus to a text field. It works fine when the user clicks on the text field.

the following does not seem to work for me:

Code:

stage.focus = mytxtfield
mytxtfield.setSelection(mytxtfield.text.length,mytxtfield.text.length);

When I try this it merely focuses on my text field and no caret comes up! mytxtfield is the instance name of my input type textfield.

View 4 Replies

Actionscript :: Caret Return Character Added To String Taken From Adobe Flash Input Text Field?

Feb 25, 2010

I have encountered strange problem. I have created simple Flash text field control and I wanted to compare its content with some other string. This comparison in triggered when user is pressing the button.In Action Script 2.0 code I noticed that a caret return character () was added at the end of the string coming from the input text field.It is easy to overcome the problem obviously, however I would like to understand what is going on. I use Flash CS4 with AS 2.0.

View 1 Replies

ActionScript 3.0 :: Set The Focus Back To The Textfield And Put The Caret At The End Of The Textfield?

Jul 24, 2011

I have a numerical stepper,and a user can click on a textfield, then click the up and down arrows on the stepper to change the font size,i then try and set the focus back to the textfield and put the caret at the end of the textfield, but the stepper keeps focus anyway.Here is the event handler for when the stepper value is changed.Get the textfield's current format, change the size, set the new format, then focus on the textfield and set the caret position, but the caret just stays inside the stepper.

Code:
private function handleChangeTextSize(e:Event):void
{
var tField:TextField = Main.LAST_FOCUSED_OBJECT;[code]....

I've had problems with other components too with the exact same focus issue and the only solution i've ever come up with is to set a timeout for like 100 milliseconds to set the focus back then and it works. another way to do this without the "hack"?

View 0 Replies

ActionScript 3.0 :: Add Duplicates At Different Y Positions?

Oct 9, 2009

I have a movieclip in the library that I am exporting for actionscript.  I duplicate the movieclip by adding a child for each occurance of a tag in actionscript.  This works fine, but I can't figure out how to change the y postion of each new child to be 30 pixels below form the last child.  Here is a snippet of the code where I am having the problem:
 
for (var i in xmlData.region){        for (var k in xmlData.region[i].regionInfo.payment);
            var mcRI:regionInfo = new regionInfo();            this.addChild(mcRI);            mcRI.txtPayment.htmlText = xmlData.region[i].regionInfo.payment[k].card;            mcRI.y += 30;        }
}
 
Instead of each new child's y position changing +30, every duplicate is on top of each other at +30.

View 3 Replies

IDE :: Flash 8 Moviclip X+Y Positions

Aug 11, 2009

What I'm really looking to be able to do, is have a clip in the root move to the same x and y as a clip that is embedded into another movieclip. How would I pick up the X and Y co-ordinates of this embedded movie clip?

To summarise,

ClipA is embedded into ClipB, what I want, is for ClipC - that is based in the root - to match ClipA's position.

View 2 Replies







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