all groups > flash actionscript > october 2005 > threads for saturday october 15
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Updating Dynamic Text Field
Posted by kelath at 10/15/2005 9:53:11 PM
Hello,
Hope someone can help me... I've create a text field (dynamic) and provide it
the variable and instance name of myTextField.
I assigned text to it the first time as follows: myTextField.text = "My Text"
then later on I do another call: myTextField.text = "My New Text"
But t... more >>
scope of vars in Actionscript 2
Posted by stephan.k at 10/15/2005 9:45:49 PM
Hello Forum.
I'm again in a similar situation: A function can't see another function
because of scope reasons. How do I solve this one? I can't figure out how to
make the loadFlvPath() function see the traceMe() function... the problem is
that recXML is an XML Object through which I ca... more >>
Drawing Coordinates (collect in array)
Posted by frosto at 10/15/2005 8:37:25 PM
can anyone explain this to me (with //comments)... I'd like to collect the
coordinates from my "drawing pad" into an array and send that to the server,
and retrieve that from the server. If someone has sample code with comments I
would much appreciate it.
Dan
... more >>
Re: load movie
Posted by 2m at 10/15/2005 7:23:47 PM
Hi,
as you don't tell us what flash version you're targeting, I wont be able to
write the best code for your situation, sorry ;-)
Ok maybe I won't do that even after you gave that information. (I'll stop
kidding now)
Two things I'd like to offer:
First an advice: tackle one probl... more >>
MovieClip inside Class problem
Posted by Devendran at 10/15/2005 12:12:00 PM
Hi,
I have created one class file named myClass
It contains
How can i acces the class variable in side the onrelease function
The objects are created by user, so how can i access the variable.
/************************************************************/
class myClass extends Mo... more >>
onEnterFrame weirdness - need sleuthing help
Posted by Dave Mennenoh at 10/15/2005 9:03:26 AM
I have this code on the main timeline, setting up an onEnterFrame for a clip
named logo to fade out:
logo.onEnterFrame = function() {
if (this._alpha-10>0) {
this._alpha -= 10;
} else {
trace("wtf!");
this._alpha = 0;
this._y = -200;
delete this.onEnterFrame;
_root.gotoAnd... more >>
Realistic Moving Clouds, Latest technology Awesome effect.
Posted by Kramer Is Cool at 10/15/2005 12:00:00 AM
Hi guys, Great to be at this Forum. I can?t believe all the knowledge here.
I?ve been reading all the posts I can! One post I can not seem to find is about
Moving Clouds.I don?t mean 2D graphics moving randomly around the screen. I?m
talking about real, billowing, rolling, clouds! I found a ne... more >>
eval() vs. []
Posted by bderber at 10/15/2005 12:00:00 AM
Distinction between using eval() and []. The code below works fine
consistently.
e = this.createTextField("Input_Text_fld" + j, 1101 + j, 104, 230 + ((j - 1) *
30), 200, 23);
eval(e).type = "input";
eval(e).border = true;
eval(e).borderColor = 0x000000;
eval(e).maxChars = Number... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How big is the jpg?
Posted by mant19 at 10/15/2005 12:00:00 AM
Hi
I am importing jpg images into movie clips, but they are different sizes using
actionscript.
i.e. loadMovie ("new Image name.jpg", "original movie clip");
Does anyone know how I can determine the size of the jpg? I have tried the
usual _width and _height parameters, but they just ... more >>
Indent when creating an XML
Posted by Dimitar at 10/15/2005 12:00:00 AM
Hi.
I am trying to create a general XML file which should be created through a
function, i.e. BuildXml(levels:Number, numNodes:Number);
Using appendNode() is ok for simple XML with 2-3 node levels and 5-6 nodes per
level.
As this XML will be much bigger (the node leves and the total no... more >>
my_video
Posted by stephan.k at 10/15/2005 12:00:00 AM
Hello Forum
I am playing around with this video code snippet. I was wondering if it is
possible to create the Video Object with code (see line 1) rather than placing
a Video object on the stage? Anyone know?
/////////////////////////////////////
var my_video:Video; // my_video is ... more >>
video object size?
Posted by stephan.k at 10/15/2005 12:00:00 AM
Hello Forum
How do you change the ActionScript controlled Video Object size. It seems to have a standard size of 160x120 pixels?
Thanks
stephan... more >>
duplicate movieclip
Posted by Dz(00) at 10/15/2005 12:00:00 AM
does anyone know how to duplicate a movie clip and when a button is pressed, and place the duplicated mc on a random
place on the stage. thanks... more >>
working with strings
Posted by shabazz05 at 10/15/2005 12:00:00 AM
I'm building a spellchecker and I?m having a problem coming up with a system
for listing possible words. For example;
The user misspells "apple" like this "appel". Now, I have an array of every
word that begins with the letter "a" to compare this to. Basically if this word
is not in the ar... more >>
|