ActionScript 3.0 :: Input A Variable At A Specific Portion Of The Text?
Feb 29, 2012
I have a string of text, but within this text I want to input a variable at a specific portion of the text. Now this string of text is taken from an XML file. So the XML file would look like this for example:
Code:
<name>Sweep</name>
<type>ATK</type>
<target>AoE-EN</target>
<caste>Warrior</caste>
<desc>"This is a text"+temp.alias+"hey"</desc>
The <desc> is an example of a way I tried to make it work. What I want to happen is when I display the desc in my flash file, it inputs the alias (which in the xml is the name) of the item. In PHP this could be doing using EVAL() but I notice the support for that type of function is removed in AS3.
View 10 Replies
Similar Posts:
Apr 12, 2007
i created an input text box that puts the users input into a global variable, but when i test it it gives me not only what i have typed in but all the html formatting for the font that my input text box has on it.I only want the text that i have typed in to go into the variable but the wackload of html is going in there too. ive tried a few different things, rewriting my code, recreating the text box, changing settings, dont know what im missing.
View 10 Replies
Apr 20, 2011
I have two layers namely topLayer_mc and bottomLayer_mc. The actual vector drawing is drawn on the top layer and onmouseUp of the tool, a bitmap copy of the vector graphics on the top layer is taken and added as a bitmap to the bottom layer. The top layer is cleared subsequently. It is working for the pencil tool.Now I need to create an eraser tool. This is where things get tricky. In the application there is an option to save the image as png, so alpha has top be preserved. So the coventional method of draw a brush using the vector and using the draw method of bitmap will not work. Of course, on a visual level it would work if the brush drawn using the vector is to have the same color as that of the background.
What I need is to excatly erase the pixels.Now I have created a brush tool using the conventional technique and clearing is possible but what I need is to exactly erase the pixels. Is there some technique to draw this ? This is the code that I am using: I have also uploaded the swf and source code, When trying out, please draw all over the stage using the pencil (press Pencil button and start drawing)The source fla is also provided.
View 4 Replies
Nov 2, 2010
I want to know how(and what scripts) to take words from a text input box and cause it to display and image Ex: if the text box said "smiley face" in it, then the image "smiley_face.jpg" would display on a certain movieclip and can be dragged around the stage and when a new image is loaded, it doesn't replace the previous image on the movie clip.
View 2 Replies
Dec 10, 2011
I have a number of input text field on stage. I want to call certain function when specific input text fields are selected.
View 2 Replies
Jul 20, 2010
I don't know how to resolve this very simple action.I've made a program and at this point I've a list on the stage.I want to see if the selected list item has particular value.
Like:
myList.selectedItem.label
(this is current selected item of the list)
here, I want as3 to check if that label has " , " (comma) or not.
Like:
if (myList.selectedItem.label contains == ","){
trace("comma found");
View 4 Replies
Sep 1, 2009
I need to create a Flash Quiz with the following:
1.) A page with a question, including a "submit" button, and an Input Text field where the user can type in his answer.
2.) A page with "Correct" and a page with "Incorrect".I have already gotten the pages and graphics created. But for the life of me my Action script is not working. The tutorials I have looked at would help me if I were making the quiz one total page where when you answered the question there would be a comment that came up, but that's not the case.
View 2 Replies
Mar 25, 2009
I'm using ActionScript 2.0 with Flash CS4 Professional, andI'm running into conflicting info on how to do this depending onwhich Flash book I'm looking at (and is that really a surprise?).1) I want the user to type text into a text field and thenFlash places what they've typed into a variable.So I created a text field of the type 'Input Text' andassigned this variable 'myInput'2) When the user presses a button, I want Flash to look atwhat is in the variable. THEN... If they have typed the correctword, they are sent to frame 19. If they type anything else, theyare sent to frame 38.In this example, the correct word is: "move"So, I placed this script on the button:
on (release) {
trace(myInput);
if (myInput = "move") {
[code]........
View 4 Replies
Apr 12, 2011
Is it possible to have the value of some string variable bound to the text inside a text input control? To clarify, whatever text was entered into the text input would be stored as the value of the variable.
View 3 Replies
Mar 28, 2011
i have an 'input text' box named "playernameinput".
i want the text inputted into that field to be loaded into a variable and sent to a php file. the 'timeLeft' field is correct and is updating in the mysql database but i cant for the life of me figure out how to get the text from the input box into the 'variables.username'.
ActionScript Code:
var str = timeLeft;
var playername:String = playernameinput.text;
[Code]....
View 2 Replies
Jul 8, 2011
I'm new to ActionScript 3.I have 2 frames. On the first frame two numbers are randomly generated and the user must enter their sum into the input text field (instance name: inTxt). They then click the OK button. On the solve frame their solution is checked against the correct answer.The problem is I can't access their solution from the input text field. I tried tracing it and get null. What am I missing?[code]
View 5 Replies
Apr 8, 2008
be a really obvious question but does anyone know how to convert input text to a variable?At the moment I have a textArea component and want to make the user's input text a variable so I can use it later. can get a trace on the input text with "trace(mytext.text)" but I just don't know how to make it a variable
View 3 Replies
Feb 4, 2010
Here is what I'm doing (using AS 2.0)I'm generating some XML based on parameters passed in a URLOn Frame One, I have an input text box. I would like whatever the user inputs in that text box to pass into the URL. For example, if I had a text box that said ZIPCODE: _________ I'd like that zip code to be passed into the URL
Code:
stop();
this.btn_send.onRelease = function() {
[code].....
View 1 Replies
Sep 29, 2011
I have an Input Text box that has a variable assigned to it.The user is to input a number, and then it is submitted with a button that does a simple conditional if statement check. I noticed that the if statement is constantly failing because the variable is tracing back as HTML.The trace of the variable looks like this:
<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Times New Roman" SIZE="12" COLOR="#0066CC" LETTERSPACING="0" KERNING="0">4</FONT></P></TEXTFORMAT>
The variable should simply be the number 4 without all the HTML jibberish.The "Render text as HTML" is not on for the Input Text box.I am completely baffled and at a complete loss... any ideas of what is happening here?!Below is the exact code I am using...
TIMELINE
numA = random(10)
numB = random(10)[code]....
View 3 Replies
Oct 14, 2009
[code]...
I have an input field with the var name "chosenloc" in the same scope as the timeline I'm working in. I've set the input field var in code, on the fly, and by entering a number right into the field.
View 2 Replies
Jan 12, 2008
I am working on a line rider/ free rider style game in flash (which is coming along quite nicely ). For the whole night I've been trying to create a way to save and load data simply off text and have finally come up with a basic solution for it! I have my information all stored into an array neatly to be later used with the function lineTo upon load. My problem here is that when I actually input the data into the textbox to be picked up by the load button it does not draw the lines like its supposed to.My load button has the following code:
onClipEvent (enterFrame) {
onRelease = function() {
var points = new Array(_root.xInput);[code]......
View 2 Replies
Oct 14, 2009
I have an input box with a variable name. When the user enters some text and presses a button that variable is sent to a php file using the GET method. Then the info is put into a database. When I checked my database, I found that a load of styling html tags has been included. I want for my input text box to have styled text, but I don't want that styling /html tags to be sent to the php file. I know I could use strip_tags in php to get rid of the html tags, but surely there's a way of not sending the tags at all, just the text content of my variable?
[Code]..
View 7 Replies
Jun 24, 2009
I have a text input field called 'phone' and a button with the GetUrl function. Button script looks like this:
on (release){getURL("http://url/sendlink.page?country=160&phone=phone&keyword=33&msgtype=26", "", "POST");}
First of all when I press the button nothing happens. When I paste the link directly into my browser everythinbg works as it should. But not from flash file.
adding the 'phone' variable into the hyperlink. What do I write? Something like this: [URL]
View 13 Replies
Jan 8, 2011
how to take what a user inputs into a s:TextInput and use that as a variable in a JSON data request? Basically, I want to have a user enter a search term, like "math" and then have that placed into a variable so I can use it in a JSON request. Something like public var q:String, except that my search box (and hence user input) is on another "view" of the application. I've just started with Flex Mobile applications and I might be way out of my league.
View 1 Replies
Oct 17, 2011
I'm new to AS3, as well as this forum,and had a question. I created a simple ad-lib type game for practice and would like to be able to remove any leading and trailing whitespace that a user inputs from the final outputted ad-lib, as well as if the user tries to submit their input with missing fields of text, it would throw an error and ask them to try again.[code]...
View 4 Replies
Jul 22, 2005
I'm teaching myself ActionScript and the book I'm reading just got into input text capabilities. The book shows me how to link input text to a variable and output that text to the output window using trace. My question is: how can I display the text that the user input onto the actual movie. For example... if I wanted the visitor to type their name into the input text box and click Submit and then a phrase shows up with their name such as "Hold on Name, my site will be done soon." How do I reference that variable and have it actually display in my movie?
View 5 Replies
Mar 30, 2006
I'm making a calculator using Flash MX that works the same way as the basic calculator found on windows (not the scientific one). But having the user input a number, store it as a variable, store which function the user wants to perform and clear the text field then store the new input in the same text field as a different variable and multiply or add or divide or subtract the 2 numbers and getting the equals sign to display the answer when clicked is harder than I thought it would be.
View 3 Replies
Dec 20, 2009
I need to know which part of the text is been modified by the user inside a Flex TextArea. I'm listening to TextArea's Event.CHANGE and my code run on everychange but i don't know what the user have done to the text and it's too long to process it again at every keypress or paste
We are still with Flex 3.5 but i may consider Flex 4 if the solution is easier.
View 1 Replies
Dec 18, 2009
want to know the index of the first character displayed in a scrollable TextArea in Flex3 and i need the last character's index too.
View 1 Replies
Feb 3, 2011
I have an issue with font scaling of a dynamic text box.
Currently i have one input box named input_1 with a variable attached to it named "choc_1".
Also, i have a dynamic text box named dynamic_1 with variable "choc_1".
When the user types something on the input box then the dynamic box changes instantly and displays what the user has written.
auto scale-size the fonts to a smaller size if the user types many letters.
The input_1 box has a 13 character limit. My initial font size is 200, i want to scale down so when the user types 10 letters they fit the box and they don't go out of screen. I want to use one line, so wrap or multiline is not possible.
here's a code that i'm trying to fix but i can't get the dynamic box to change:
[Code].....
View 1 Replies
Feb 3, 2011
I have an issue with font scaling of a dynamic text box.
Currently i have one input box named input_1 with a variable attached to it named "choc_1".
Also, i have a dynamic text box named dynamic_1 with variable "choc_1".
When the user types something on the input box then the dynamic box changes instantly and displays what the user has written.
I've googled a lot, but i can't find a solution to auto scale-size the fonts to a smaller size if the user types many letters.
The input_1 box has a 13 character limit. My initial font size is 200, i want to scale down so when the user types 10 letters they fit the box and they don't go out of screen. I want to use one line, so wrap or multiline is not possible.
here's a code that i'm trying to fix but i can't get the dynamic box to change:
[Code]....
View 0 Replies
Feb 10, 2012
Trying to replace a portion of a string with a "-" if it matches a string variable in AS3.
var re:RegExp = new RegExp(imageArray[j][1],"gi"); trace(imageArray[jTemp][2].replace(re,"-"));
imageArray[jTemp][2] is a string imageArray[j][1] is a string as well I'm not getting the result I expect. I would like trace above to return 'permanentContainer-' Here are the traces for the above variables
permanentContainer-temporaryContainer- temporaryContainer
View 2 Replies
Mar 24, 2010
I'm trying to extend the text input that comes in flex to support an icon, just like mac os x search text input has a grey circle aligned to the right, the text input has a addChild method, but it didn't work for me.
View 2 Replies
Apr 28, 2011
the last of many problems, is that at the very end of the test, you're shown your score, and you have the option to type your name in a text box and click "save". Doing so will apply you score data (time elapsed, date, correct answers and percentage) along with the name you typed in, and output in a form, that you can save or print off, or whatever. The problem is, the input text box will not let you type in it. If you mouse over it, the mouse stays a pointer, you don't get the text tool. If you click on it, the cursor appears for a split second after you release the mouse button, but you cannot type anything in it.This is the actionscript for the output form:
Code:
//
function saveRecord(record:String, field:String, now:Object, score:Object):Void {
[code]......
View 3 Replies
Feb 20, 2008
i have a project and i need that when a specific variable equals a specific value a random number decreases on the current number, its easy to make it decrease but i need to decrease instead of 4 to decrease a maximun of 5 and minimun of 3.ere is the code :
Code:
numeroDeTazos = 20;
quantidade.text = numeroDeTazos;
if (nrfinal2 == 33)
{
[code]....
View 1 Replies