all groups > flash actionscript > may 2005 > threads for saturday may 21
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
Standard blinking method
Posted by olamm2k at 5/21/2005 7:25:44 PM
Hi,
First post here, so forgive me if this is in the wrong part of the site. I'm
just curious about the standard way everyone does blinking in animation. At the
moment, I have the following:
onClipEvent(load) {
if (getTimer() % 650 < 100) {
_root.JO1.nextFrame();
}
}
The Mov... more >>
Simple 'write text file' code please!
Posted by Laer2 at 5/21/2005 12:00:00 AM
What I need is very simple... I just want to create a Flash program (for
myself) which has a text input field that will write the resulting content to a
single .txt file on my SERVER (not the visitors drive) along with the website
files (...this is just so I can easily update a tiny block of ... more >>
relative path is not working properly
Posted by mballom3 at 5/21/2005 12:00:00 AM
Hi,
I tried a drap and drop code with my movie clip. Everything is okay as long as
i use absolute path to refer to it, but when i change everything to relative
path, test movie, i can't drag.
Any one has an idea what could be going on?
... more >>
advanced swapDepths problem... need help!
Posted by albert105 at 5/21/2005 12:00:00 AM
I have a bunch of objects (little boats) animating from and to dynamically
loaded positions. The depth of the boats is determined by the y values so they
are 'in front' of each other ( this["boat"+id].swapDepths(this["boat"+id]._y)
).
The boats are sometimes very close to each other and m... more >>
Combo Box Selections
Posted by sshrop at 5/21/2005 12:00:00 AM
I am a new developer and I am using FlashMX 2004 Professional
I am trying to develope a store and would like for the image on the screen to
change according to what selection the customer makes in the combo box.
ex: The default image is of a pair of brown flip flops - when the customer
s... more >>
Retrieving variables from php
Posted by Lifeasalounge at 5/21/2005 12:00:00 AM
I am having trouble. I am using LoadVars to retrieve variables from a php
script. Everything works fine and the variable is retrieved. But i can only
access the variable within the function. Here is my code:
var getDat = new LoadVars();
getDat.load("countRows.php");
getDat.onLoad = fun... more >>
Sound Start piles up with OnEnterFrame
Posted by frosto at 5/21/2005 12:00:00 AM
this.onEnterFrame = function() {
if (_root.dash.orange._x >= -4 && _root.dash.orange._x < 0 ) {
song.start();
} else {
song.stop();
root.dash.orange is the sliver inside a radio which changes with the turn of
the tuner knob. When it meets the if requirement... more >>
XML Array in a component?
Posted by IlikeIke at 5/21/2005 12:00:00 AM
I am trying to load an XML file with an array nested inside a parent array into
a data grid component.
I have my XML connector passing the data of the parent array into a data set
which passes it into a data grid.
When I bind the root of the first array the data grid properly lists all my
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
constrain mouse
Posted by g5604 at 5/21/2005 12:00:00 AM
i am trying to constrain my mouse following mc to a certain part on the x
axis... here is my code:
if ( _xmouse > -20) && ( _xmouse < 100 ) {
this._y+=(_root._ymouse-this._y)/14;
;
}
obviously its does not work, so how do i write this correctly
many thanks,
G
... more >>
Controlling instances not in first frame
Posted by phillyj at 5/21/2005 12:00:00 AM
I've found that if I introduce an instance into an mc on any frame other than
the first, then I cannot control that instance from the _root level (where all
my code is). My workaround has been to put the instance on the first frame
(with an _alpha value of 0 or _visible value of false) and th... more >>
Help updating the frame
Posted by the_monkey-catfish at 5/21/2005 12:00:00 AM
This is a section of code I have, and I want the frame to update each time the
bandstrip's x value is increased, but currently, it increases the x value until
it reaches 100, and then updates, so you get a sudden jump. How can I rectify
this, I am very new to actionscript, but have previous co... more >>
passing variables from flash to php
Posted by d_arc9 at 5/21/2005 12:00:00 AM
Hello...
I really need some help - it might be simple - but i am new to the loadVars
and loadVariables command in ActionScript.
THE STORY:
My hosting company does NOT allow php email relaying - which mean I can use a
php script to send myself any comments to my email - just can't do it. ... more >>
Graphics and properties
Posted by Pe_ka at 5/21/2005 12:00:00 AM
Hi,
I new to Flash and is trying to work on a website. I have a question:
I am trying to build a webpage where i have a few small thumbnail pictures and
when you click on them they should appear as a bigger picture. The thumbnails
is buttons and the big picture is a graphic symbol. As i ... more >>
|