all groups > flash actionscript > august 2007 > threads for sunday august 19
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
TextField does NOT recognize <table> ?
Posted by lichtjiang at 8/19/2007 11:15:41 PM
I have a TextField instance with the following property values:
html=true;
multiline=true;
I want to use a table to format some text and thus have:
htmlText="<table><tr><td align='left'>Aug.</td><td
align='right'>88.88%</td></tr></table>";
But it is not displayed as expected, ins... more >>
Does a listener still exist after its target object MC has been removed?
Posted by ritpas at 8/19/2007 10:22:04 PM
Hi,
I have just a question about as3.0 programming :
When a MovieClip is removed from the display list (either by removeChild
method or directly from within the stage from the timeline), if listeners are
running and attached to that object, are they also removed, or do I have to
remove ... more >>
Tweening blur filter - Actionscript 2.0
Posted by mynameissam.co.uk at 8/19/2007 9:50:34 PM
Hey guys,
I've been scouring the internet for the past hour or so in search of how to do
this. It's very simple, but every example seem to want me to bring a loaded
movie clip, or trace mouse position. I don't need that!
Basically I have a button that when clicked comes to the front (usi... more >>
AS3 performance
Posted by lokalhorst at 8/19/2007 9:19:38 PM
Hi,
i started with AS3 very recently ( i have AS2 experience...). I did some
simple actionscript code to compare the performance
between AS2 and AS3.
Surprisingly, the AS3 version of the code produces a movieclip which consumes
almost twice as much cpu as the AS2 version.
I have no ... more >>
possible setInterval problem when using preloader
Posted by kamckng at 8/19/2007 7:32:33 PM
I am using a movieClipLoader to do a preloader for my movie. The loader loads
the main movie into an MC called container_mc. Inside the main movie that is
loaded into container_mc i use a setInterval call and it seems to make things
jumpy when i run the preloader movie to load it... but when i... more >>
Flash Image distort
Posted by KeithLaw999 at 8/19/2007 6:49:53 PM
Hi i have a image which i have imported to flash, is there a way to use the distort tool.
i want a tween that make the image which is a rectangle to shrink on on side to make it look 3d ish?... more >>
Failed to add a new function to Number.prototype?
Posted by lichtjiang at 8/19/2007 4:22:48 PM
To have a percentage format of a number, I add the following code:
[b]Number.prototype.toPercentage()=function(){
//blahblahblah...
}[/b]
Then, I call it as follows:
[b]var somenumber:Number=33.333333;
trace(somenumber.toPercentage());[/b]
Check syntax gives me this error:
... more >>
attach movie with for loop in AS3?
Posted by IlikeIke at 8/19/2007 3:58:18 PM
Hi, having trouble figuring out how to do this in AS3 since 'myClip.name'
property doesnt seem to change the actual variable....
The old way I could attach a series of movies from the library with dynamic
instance names that I could then target and modify:
for (n=0; n<5; n++) {
contain... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
a question is about "="
Posted by Gavin Fu at 8/19/2007 3:11:34 PM
in Actionscript 3, let : a = 50
b = a;
a = 0;
then b = 0;
But, I want b = 50.
How I do ?... more >>
Need help with mulitiple mouse inputs
Posted by bsib1 at 8/19/2007 3:00:43 PM
Working on a multi-user application where each user has his own mouse. Is it possible with Actionscript to tell which mouse the MouseEvent came from??:confused;
BrianS... more >>
Flash vs Processing
Posted by qleyo at 8/19/2007 1:32:15 PM
Hi Guys,
I'm about to start working on a project and really behind schedule. The main
aim is to create artistic visualisations of ecological data from live sensors
in a space (building), as well as a visualisation (like a ticker) for
interactive polls within that space. You can view my moc... more >>
AS3 gotoAndplay HELP
Posted by TubesDezignr at 8/19/2007 2:20:56 AM
Ugh. All I want is to create actionscript in my first frame so that if somebody clicks anywhere on the image it advances to frame 5. This used to be easy with as2.
Any help!!??!!!... more >>
Displaying formated code in flash?
Posted by DiscipleEXX at 8/19/2007 12:00:00 AM
I'm trying to display code chunks in Flash, not sure how to do this, or how to
find the solution though.
Basically I just want to display dynamic selectable code similar to how its
displayed like this:
function reloadBogusIframe() {
//window.frames['bogusiframe'].location.repl... more >>
problem with drawing with beginFill in AS3
Posted by thy2004 at 8/19/2007 12:00:00 AM
http://www.bbmercy.com/files/why.jpg
please see the pic above
I can't draw the form I want by as3
here is my code
can any one give me a hint?
var fillMc:Sprite=new Sprite();
fillMc.graphics.beginFill(0x00ff00);
fillMc.graphics.lineTo(15,15);
fillMc.graphics.lineTo(100,0);
f... more >>
Problem with dynamic movieClip and button
Posted by Mauredo at 8/19/2007 12:00:00 AM
Hello guys, i tried eveything but cant make this work :(
the situation is: each time i click in a button, i want a function to make 5
new button and make them interactive. Problem is i create emptyMovieClip for
each one and i cant get it to work in any way :(
here goes the little piece o... more >>
Can I animate variables and pass to my function?
Posted by verbruggher at 8/19/2007 12:00:00 AM
Having this for example:
ClsImage.setTransform(0,0,w,0,w,h,0,h);
but being able to animate those variables in the function with easing?
Somebody has done it before? Can I do it with Fuse
http://www.mosessupposes.com/Fuse/ Or do I use the Tween class of Flash?
How?
... more >>
|