Ask a Question related to Macromedia Flash, Design and Development.
-
oiv #1
referencing problem, or so i think
// Hi I can't seem to pass the right instance to the function move
Make_bg() //initiate
////////////////////////////////////////////////////////////////////////////
/////////////////
function move(obj){
obj._x =obj._x +200
}
////////////////////////////////////////////////////////////////////////////
////////////////
function make_bg(){
af = 0;
bf = 1;
cf= 600;
df= 1;
ef= 600;
ff= 0;
_root.createEmptyMovieClip("bg",-2);
this.onEnterFrame= function(){
bf = bf+2;
df = df+2;
if (bf >=402){
bf = 405;
df = 405;
delete this.onEnterFrame;
move(_root.bg); ////////// why oh why, doesnt
this work.?
trace("somthing happened");
}else{
with(_root.bg){
this.moveTo(0,0);
this.beginFill( 0x0000FF, 100 );
this.lineTo(af,bf);
this.lineTo(cf,df);
this.lineTo(ef,ff);
this.endFill();
}
} }
}
////////////////////////////////////////////////////////////////////////////
//////////////////////////////
Kind regards
Řivind
oiv Guest
-
Referencing what is in a movieclip
Hi, I am calling an image from a server to be displayed in flash using php, mySQL. If the image is in part of a browsing gallery where there are... -
Referencing the Table Name
Say I have a Table called Predator: country(varchar 20), animal(varchar 20) And I want to search for the animal "Python" in my Predator table,... -
Problem referencing web service
Hi I am trying to get web reference to my first (!) web service which is on a remote host. I am getting the following error; Server Error in... -
Array de-referencing problem
I wrote the following code: $thread = "TEFD0"; $logfile = "V_DEBUG12121.txt"; $delay = "10232"; @servers = qw (SERVER1 SERVER2 SERVER3... -
I have a problem to create a constraint referencing table in another schema
Hallo, the begin of the problem is, i will migrate the structure of a Sybase Adaptive Server Anywhere Database into ORACLE 8i(8.1.7)Personal...



Reply With Quote

