all groups > flash actionscript > august 2006 > threads for saturday august 12
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
An urgent mc loading problem
Posted by mutantxx at 8/12/2006 8:01:16 PM
Hi,
I have a flash movie, that has a galleries page. When you navigate to the
galleries page, a menu is loaded into an empty mc.
the manu is a zooming menu (ie when you roll over it, the bit under your mouse
zooms in and its opacity increases).
When you press a menu buttom, one of the indi... more >>
tween onresize of browser window
Posted by microes at 8/12/2006 6:27:04 PM
attempting to reposition contents of swf on resize of browser window with tween
class
Stage.align = "TL";
Stage.scaleMode = "noScale";
stageListener = new Object();
stageListener.onResize = function() {
moveIt();
};
Stage.addListener(stageListener);
moveIt = function () {
dash.... more >>
Creating instances of custom components in Actionscript
Posted by everynewday at 8/12/2006 6:19:56 PM
I'm trying to create an instance of a custom component. My component shows up
in the components panel, and I can drag an instance on to the stage, but how do
I create an instance of a custom component in Actionscript?
... more >>
Dynamic drawing problem
Posted by jblack at 8/12/2006 4:49:22 PM
I'm creating a little app that maps out the vectors of hurricanes based on data
in an XML file.
So far I've been successful with getting the app to dynamically create a movie
clip for each storm and draw a vector for each storm clip.
Going a step further, I'm trying to make it so when a user... more >>
[F8} swf to swf communication prob
Posted by takennickname at 8/12/2006 4:25:42 PM
Thanks all.
Ok, here's my prob... I have a main flash file, the level0 controlling
timeline. I'm loading (loadMovie) my navigation swf into level1. This
particular navigation loads 3d animation swf files into a mc symbol located at
level0, and i also set the alpha of everything at level0 and... more >>
actionscript not working
Posted by ALLREADY at 8/12/2006 3:54:21 PM
hey i try to use actionscript but when i put in a specific code from tutorials
that i get from the web it says error like when i try to make a picture viewer
it says error opening url file and then it says the location of the picture and
i put the picture in the same location as the .fla file ... more >>
FLVPlayback and actionscript control of flv
Posted by celluser04 NO[at]SPAM comcast.net at 8/12/2006 8:55:11 AM
I have a flv movie that I am using FLVPlayback to give user control to.
I would also like to pause and play it using actionscript.
I can pause it using this:
var listenerObject:Object = new Object();
listenerObject.ready = function(eventObject:Object):Void {
my_FLVPlybk.pause();
};
my_F... more >>
attachMovie not working!!
Posted by VaporAction at 8/12/2006 1:24:09 AM
I can't get the attachMovie function to work and I set the Linkage on the
symbol so it's not that...
here's my code...
Element1_btn.onRelease = function () {
this.attachMovie ("Element", "ElementFe_mc", this.getNextHighestDepth);
ElementFe_mc._x = 507.6;
ElementFe_mc._y = 382.4;
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Drag a movie according to a circle
Posted by auit at 8/12/2006 12:00:00 AM
Hi there,
I'm a newbie with Flash and I have a question, please help me !
I have to make a clock which has 2 buttons: start and end. And user can
control 2 buttons to get the start time and end time they want. I wrote this
code to make the buttons can be draged and droped but I don't know ho... more >>
explanation for countdwn timer
Posted by m2ming at 8/12/2006 12:00:00 AM
hi, can anyone help to explain this script, line by line, as in what does "
var", "secInd", stands for, when to use it, how to use it etc...
stop();
var timerID:Number;
var secInd:Number =0;
var maxTime:Number = 60;
startTimer();
function updateTimer(){
secInd = maxTime--;
... more >>
|