Flex :: Restrict Users To Insert Only Numbers In A TextInput?
Feb 13, 2010I want that the users will be able to insert only numbers in a specific TextInput.
View 1 RepliesI want that the users will be able to insert only numbers in a specific TextInput.
View 1 RepliesIs there some easy way to restrict TextInput to accept decimal numbers in range -99.999999 to +99.999999 ?
it is Spark TextInput.
I have a text field (for names) wich must allow all characters, except latin numbers, is this possible? I can't think of a regex for this
View 2 RepliesI have need to restrict user input. TextInput should restrict all special characters and punctuation. Any other characters are allowed. In java there is a regex patter:
replaceAll("\p{Punct}", "_")
Is there something similar in actionscript?
how can i restrict the values inputted into my TextInput control in my mxml page to only numbers.
View 1 RepliesIn my air application, i have displayed text content in either in html container or textarea container. whenever anyone select this content, he/she can easily copy the content.
I want to restrict my text from copy. Any content of the my application, should not be copy by any user..
Does anyone know of a way to restrict a user from entering a number over 100 into a textinput field in flex? i.e. a user can enter any number between and including 0-100 but not 101
View 3 RepliesYou can restrict the number of users on a flash server applications using server-side scripting.Here is how.
1. Go to the flash server root/documentation/samples (Lets say its a live streaming aplication).
2. Copy the livestreams folder to your flash server root/applications and paste it inside the folder.
3. Open the main.asc file that is inside the folder you just pasted.
4. At the end of the code paste the following code:
[Code]...
I have changed the variable <MaxConnectionRate>2</MaxConnectionRate> base on the URL - "Limit connection requests",but more than 2 client can connect to the server.
Is that other settings to config to restrict the number of simultaneous users?
[URL]
i want to restrict the input to numbers only, but do have a problem for an empty entry:
now accessing like this:
var newValue:Number = event.itemRenderer.data[event.dataField]
newValue is now for an empty entry not null, but 0...
How I can include the . in the restricted text field. I know how to restrict to only allow for numbers, letters etc... but what I need is to only allow numbers and the dot.
View 4 RepliesI'm trying to make an input box restricted to characters 0-9 including the space bar.I can do;mytext.restrict = "0-9";but how do I account for space?
View 1 RepliesI am trying to restrict a TextField to 2 numbers and 1 decimal place, so something like: 3.5, 22, and 33.5 is acceptable.
View 5 RepliesI want to restrict a text box to to use a specific range of numbers, say from 35 to 40.[code]...
How do I restrict it to only allow the 6 numbers between 35 and 40?
Is my only option to use a control like a combo box and fill it with the numbers I want to appear?
I would like to restrict user input to numbers only between letters. for example: the user is allowed to input "a2b", but "2ab" or "ab2" isn't allowed.
View 4 RepliesI'm trying to make an input box restricted to characters 0-9 including the space bar.
I can do;
mytext.restrict = "0-9";
but how do I account for space?
For my wishlist site, I would like to propose widgets to my users in order to publish their wishlist on their blog or personal website. The idea is to propose a few lines of code to my users that they only need to copy/paste to insert the widget displaying their wishlist. What is the best way to create/develop a widget ?
[Code]...
I am using actionscript 2.0, and I actually have a simple question: the TextInput.text property returns the text string in quotes. However, I am calculating something and don't want it in quotes. How do I get rid of the quotes so I can calculate stuff
View 2 RepliesHow can you restrict the mouse so that users cannot move their mouse into a certain area, (or a certain y or x value)? This is useful to me because I need it for a game.
View 2 RepliesI made all the corrections in my code and got a working one. But what I really want to do is not adding texts into one text field. I need to get the numbers which is written by users into text boxes and then use their inputs to make some calculations. (Like 3+6=9 ). When I assign numbers to variables Ican easily make calculations but what I really want is not that. the numbers should be entered by these text boxes. I think need to change "string" to "number" but when I do this I get error message. I am planning to use the calculation result in some other part of my code. I am wondering if using "return" function useful for me to get the number (the result) of calculation?
[Code]...
I have a Flex application which manage a database composed by 7 tables.I have created the insert form and all work great. Now I wanto to improve the Form performances; the idea is to replace the TextInput of the Form with ComboBoxes which are provided by the DataBase tables
View 1 RepliesIs it possible to restrict flex bar chart y-axis count?I have a very big name coming in my y-axis and i want to reduce or restrict it to 5 characters and on rollover i want to display it in full.
View 1 Repliesis it possible to make a Flex-application to only run from my domain? So a user can't copy the .swf and start it locally.
View 3 RepliesHow we restrict datagrid column drag drop...
View 1 RepliesI am trying to built something like this:
[URL]
User can not copy content from textarea in flex3. How can i implement this functionality?
I have a canvas,lets say of dimensions 500x600. I have some controls inside that canvas.User can rearrange the controls by drag and drop. But I want to restrict the drag and drop within that canvas. For example: There is a button in the canvas. User can drag and drop the button anywhere inside the canvas.But if the user tries to drag the button out of the canvas boundaries, it should stick in the canvas boundary. How to achieve this?
View 2 RepliesI want to restrict my NumericStepper so that you can't type invalid characters into it (like a comma). I'm trying this, and it works:
<s:initialize>
stepper.textDisplay.restrict = "0-9 - .";
</s:initialize>
<s:NumericStepper id="stepper" />
Except the negative sign can't be typed anymore, even though I specify it. If I do it directly on a TextInput, it works:
<s:TextInput restrict="0-9 - ." minimum="-10" />
Why doesn't this work?
I have a datagrid in flex and i am making the datagrid as editable. I can able to edit it and enter the values. so far so good. Now my requirement was, i want to restrict the editable datagrid cell to some max chars like 10. I mean to say maxChars = 10, i want to restrict like this & i want to implement like this.
View 3 RepliesIn my flex application I need to restrict the mouse from moving in a certain area.In other words I want to create a 'No Entry Zone' for the mouse in the application.Hiding the cursor when mouse enters the area is not a solution for me.
[Code]...
If my ComboBox is editable how can I tell if a change event comes from a change to the TextInput or a change in the selectedIndex of the drop down?
Is there a way to check for this in the event object?