Search:
Type: Posts; User: yankmoura
Search:
Search took 0.09 seconds.
-
Hey, hehe!
Never mind, I solved that!
-
Hey there,
I just developed a whole site, and it loads in modules.
I have a main loader called "header.swf" that preloads 6 modules.
I just hold the six modules in a onEnterFrame movieclip,...
-
Hi there!
One of the things that more annoys me when I code in AS, is the fact you need to have "pulverized" code all over your project: you have it in the main timeline, in the mc timelines, in...
-
Shouldnt be easier to loop and just randomize the colours instead to use an array?
-
-
Hi there!
Since some time ago, I have developed a lot of Flash projects with database integration (even in PHP as will in ASP).
Though, there is something that bugs me... onData and onLoad...
-
Hi,
Are you using MX2004?
Take a look in the program help, there is an extensive section about XML usage.
Flash have over 40 functions, methods and properties in the XML class, what is a lot...
-
BTW, something just occured me...
I have a suggestion... if you REALLY want to use these GIFs, maybe the only option is to import them one by one manually to Flash and convert them in SWFs. If I...
-
Hi
Not 100% sure (just 99% - LOL), but I think that Flash is not able to show animated GIFs. And, in fact, it make senses to me (looking from the Macromedia poiting of view): why to show an...
-
Is newsBox a dynamic textbox? If yes, you must to add the characters, by clicking the characters button and specifying ranges, or else it will not show the text...
-
Ouch, horrible movie... I hated that!
-
It should work, unless by the missing semicollon at the end...
-
Or you can set a mask dinamically with setMask...
-
Give to the button a name, say myButton.
Then disable it as soon it is pressed:
on (release)
{
myButton.enabled = false;
_root.score += 100;
}
You will just get it pressed once...
-
Try this:
a_btn.onRelease = function()
{
mycolour = new Color(mymc);
mycolour.setRGB (0x000000);
}
-
Hello my dears,
I started this post to leave a question that maybe will seem a little fool for someone, but for sure will be like a clarification for others (including me!).
I stayed learning...
-
Hi,
I have used a TextArea to create a clickeable list (like a ListBox), and it already works by default when you roll the mouse wheel (MX2004). However, there is a ugly bug: the vPosition...
-
Hi,
I am a Flash developer for a while, but there is an annoying thing that ever bugged me, and I would like to know if there is a way to detour that.
How to set the registration point of an...
-
From Flash MX2004 Help:
(...)my_mc.duplicateMovieClip(newname, depth [,initObject])
Parameters
newname - A unique identifier for the duplicate movie clip.(...)
As the manual says, you must...
-
I am not absolutelly sure but I believe that it must be done using regular HTML. You could pop up a JS window when the user click the "upload pictures" link, to allow him to select the desired...
-
The principle of the animation is the same.
Just keep the image stucked in the same place and rotate it.
-
What do you have in database? The image itself or the server path to that?
-
Hi, I am not sure but I think that the array sort method will always consider the array entries as strings. To correctly sort the array, try the following traditional sorting routine:
a = new...
-
If you are referring to test the movieclip itself instead its instance, the answer is "NO". The movieclip is an library object, and you do not interacts to it in your movie, but with its instances....
-
To be sure that it's what's happening, just put in the very first line of your mover function the following line:
trace(currentsquare);
If you obtain an "undefined" output, that's it!
|
Click Here to Expand Forum to Full Width
|