Flex :: Output In The Text Filed A Number Of How Many Times The Video Looped?
Aug 24, 2010Is there a way to output in the text filed a number of how many times the video looped? (how many times it has played)
View 2 RepliesIs there a way to output in the text filed a number of how many times the video looped? (how many times it has played)
View 2 RepliesI have a list component that lists certain items..
so, if i click on a certain item..i should get the index this way : var clickedIndex:int = listID.selectedIndex; but how can i count the number of times the variable clickedIndex has been selected? so, if a user keeps clicking on the index[0], i want to know how many
here is my code public function loadtext():void{ var text_arry:Array=new Array(xmldata.child(0).name); student_name.text=String(text_arry); } I called this function inside my timeline action window. but it is not working it said undefined...
View 5 Repliessuppose i have one input text filed,and one dynamic text field,i want,when i enter value in input text filed then these value show on dynamic text filed [input text box] =[dynamic text box].how show value in dynamic text from input text filed
View 6 RepliesSO, I want to do a very simple program, and I have no clue how to even get started. This is what I need to do. Several Different boxes to put something into. I Have Done That, I can type into them. Their instance names are
Box1
Box2
Box3
Heres what I have no clue on how to do though, completely lost. Box 1 needs to have the value psr.
[Code]...
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 RepliesI have a video player in flex which constantly plays a movie. Is there a way to see how many times it has played? So each time the movie is played, text filled populates with +1.
View 1 RepliesI have a txt field in my main.swf that i want to target.I'm importing another.swf into main.swf that has a menu and dynamic content from xml.This is how i successfully load the text to bodyTxt text field in another.swf
PHP Code:
bodyTxt.text = xml.link[pict].@pgText;
i can't get the text to load into a different text box in the main.swf from the imported another.swf?
I am trying to scroll a movie clip with a static text filed. Everything works fine however, my mc won't scroll. SWF attached.
Here is my code:
var scrollUpper:Number = 19;
var scrollLower:Number = 121.5;
var textLower:Number = 2.0;
var textUpper:Number = -72.5;
var scrollRange:Number = scrollLower - scrollUpper;
Attachments: Imagine_COH.swf (114.7 K)
I have XML file with data and I am loading this to text filed. How can check the length of values (like value1, value2)? And The text field has to accept only 20 chars from each value. If it's more than 20 chars then it should remove (delete) 21, 22 chars.
[Code]...
i am trying to apply setTextFormat function for my dynamic text filed in as 3, but its not taking. look at my code and suggest me where i am going wrong.
[Code]...
how to detect the number of character typed in a dynamic text field.
like
if (Text_field.CharacterSet = 12)
button._Enabled = true;
[code].....
How can i change font color in dynamic text box. Text is loaded from xml. And i want to make thisway that when user rolls over this text box, or mc over this text box then font color change.
View 3 RepliesI've been trying to format a text field using html in an xml file. So far it's been working fine but I tried to load an image to the text field and I got this error:
Error #2044: Unhandled IOErrorEvent:. text=Error #2124: Loaded file is an unknown type.
I figured I had my image in the wrong format (it was a jpg) so I tried png and gif with no results. Here's my xml file
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xml>
<blog>
[Code].....
im trying to output my database information in a text input field in flex by using remoteObject(cfc). The information is being provided by a database using a query and an array collection. I'm just unsure how i go about taking the queried array collection information and display it into TextInput Fields.
[Code]...
I am starting simply (or so I thought) by pulling an object from my library (libraryButton) with a unique identifier btn[i] and placing a dynamic text field within it. thus;
var numberOfButtons:Number = 5;
var btn:Array = new Array();
for(var i = 0; i < numberOfButtons; i++) {
[Code]....
would work, and Im simply trying to target a child item within btn[i]
I have an FLV video that I am attempting to loop. I have tried various methods, but all of them cause the video to have a slight "jump" when the movie is looped. I can't seem to get this to go away... See the following link: [URL] Here is what I have tried:
- Using JWPlayer
- Using Flash embed method
- Using an SWF to display the FLV Currently, in the link above, I have an SWF displaying the FLV. But, I am willing to try anything.
I managed to show the output of a shell command in TextArea of flex by calling following php file via HTTPService and then using the dataprovider attribute of TextArea to show the returned output.
<?php
$output = shell_exec('ls -l');
return $output
?>
Now i have a C file which prints some lines (by using printf command of C) when i run it in shell using
./myCfile
But following php code seems to not return anything as my TextArea remains empty
<?php
$output = shell_exec('./myCfile');
return $output
?>
i have a main .swf that automatically loads a second .swf on its last frame (via loadMovie.) it loads this second .swf to level 0 (replacing itself).
when the second .swf reaches it's own last frame it loads the main .swf into it, beginning the whole process again. here's the thing...
i only want this to happen 3 times. in other words, the third time that the second .swf is loaded into the main .swf. i want the whole thing to stop-freeze-on the last frame of the second .swf.
I created a button.....it will be clicked 2 times. When clicking on button 1st time, the ball 01 will appear. When clicking on button 2nd time, the ball 02 will appear.
Code:
var i:Number = 2;
_root.next.onPress = function()
{
[Code].....
if myVariable is a number variable and myFunction is a function, how do I use AS3 to repeat myFunction myVariable number of times?
View 2 RepliesI need to take a jpg and clone it 200 (can be any number) times. I want the files to all be saved in the same directory but with numbers. Essentially creating an image sequence of one image.
Photo001.jpg
...
Photo200.jpg
Is this possible? The file reference class seems like would ask me each time where to save the file, I clearly don't want that. Ideas?
I've got a presentation that continually reads an XML and displays content based on that. It works fine for 2-3 hours then just stops. No errors, just stops.
What I'm doing is adding and removing eventListeners throughout the process using two alternative loader objects.
For example:
PHP Code:
slideLoader1.contentLoaderInfo.addEventListener(Event.COMPLETE,loadJPG, false, 0, true );
I started using the "weak" listener based on what I've been reading about garbage collection, but actually this works better:
PHP Code:
slideLoader1.contentLoaderInfo.addEventListener(Event.COMPLETE,loadJPG);
The presentation runs much longer with the second listener type. In both cases I'm removing it this way:
PHP Code:
slideLoader1.contentLoaderInfo.removeEventListener(Event.COMPLETE,loadJPG);
Is there a problem constantly adding/removing eventListeners this way?
I'm talking about the div(X,Y) function in C which returns the number of times X is reduced by Y. if you're confused, I'm talking about this:
div(30,5) returns 6 (30 is reduced 6 times by 5)
div(34,7) returns 4 (you can reduce 30 by 7 four times, leaving 6 behind)
Is there such a function?
I am trying to repeat a function x number of times. How do I go about doing that?
Here is the function:
Code:
function dance(){
var animspeed = .4;
var back = 0;
var delay = (animspeed);
[Code]...
I have 1 button that when pressed 1 time should play "movieclip 1" and when hit for the second time should play "mc 2" on so on untill "mc9"(each movieclip plays continously when once activated)
so I need the button to register how many times it has been activated to play the right movie at the right time
I know I saw a script once that would work sometime, just cant find at anymore
I want to loop a movie clip a different number of times depending on conditions in an if else statement i tried using a counter like this
Code:
playTwo = function(){
if (_global.counter < 2) {
theMC.play();
[Code].....
I'm new at actionscript, so I'm making simple button games, but I have 2 questions: Question 1: Displaying number of times the button is clicked I searched the forum, and what I found was.
[Code]...
for example, if I clicked the button 100 times, a text "ABC" would appear, and if the button is clicked 200 times, a text "DEF" would appear in the same text field. I only have a rough idea on how to do this, so before I fail completely, can anyone just give me the code instead
How could I count the number of times that the values are found, i.e. yes=2, no=1 .. in AS3?
View 3 RepliesI was taking this tutorial, >>LINK<< I want to change it from,
Code:
on (click) {
Duplicate Movie clip to,
Code:
onClipEvent (Load) {
That way once it load's it will duplicate the circle MC a random number of times. This circle MC is inside of another MC so it wouldnt be _root i want it to goto, it would be t_mc that I want it to look for it in.
So in the t_mc MC I put this code,
Code:
onClipEvent (load) {
i = i + 1;
duplicateMovieClip (t_mc.circle, "circle" + i, i);
}
And on the circle, I put this code,
Code:
onClipEvent (load) {
scale = (random(100) + 50)
this._x = random(250);
this._y = random(150);
[Code] .....