A Flash Developer Resource Site

Search:

Type: Posts; User: s00664233

Page 1 of 2 1 2

Search: Search took 0.06 seconds.

  1. caiminjones's doodle book (want to learn)

    there ,
    http://www.caiminjones.com

    theres a doodle book in beta mode available
    im interested in learning how to make this doodlebook
    i notice that ultrashock.com has it in their guest book too...
  2. ya attachmovie needs a movieclip to be there...

    ya attachmovie needs a movieclip to be there first

    u can also use

    createEmptyMovieClip("stg",yourDepth);
    for(i=0;i<xxx;i++) {
    stg.attachMovie(blahblah);
    }

    if u dont like the items to...
  3. How to make a preloader for loadVars.load

    hi guys how do i make a preloader for loading dynamic pages (jsp).

    its like preloader for sound where u getbytesloaded / getbytesTotal.

    but this time i need it for LoadVars.

    any idea?
  4. Replies
    1
    Views
    341

    i think if u duplicate a movie clip it kinda...

    i think if u duplicate a movie clip
    it kinda appear on top of the current layer
    maybe what u can do is
    1) create an empty movie clip name "stg"
    2) mask "stg"
    3) duplicate movie clips in "stg"...
  5. Replies
    13
    Views
    908

    hmm funny i tried drawing a square with those...

    hmm funny
    i tried drawing a square with those lines but the fill wont come out of the lines
  6. hm the site looks cool but i dont see any problem...

    hm the site looks cool but i dont see any problem in it
    anyways about loading variables form dynamic pages, im doing that in my work currently (trying to make a flash forum for fun)

    try loading...
  7. Replies
    1
    Views
    339

    LoadVars.onLoad() need help !

    hi guys
    the dictionary says that :

    LoadVars.onload
    Event handler; invoked when a load or sendAndLoad operation has ended.

    im trying to make a preloader for dynamic pages(JSP),
    all the...
  8. does not load from external file eg: &var1=qwe&var2=asd

    hi guys i had this strange problem

    i tried to load from my JSP file which prints
    &var1=qwe&var2=qwe2

    it doesnt loads

    so i tried on a simple txtfile instead with same values...
  9. hi, according to the actionscript dictionary , _...

    hi, according to the actionscript dictionary , _ root means :

    Property; specifies or returns a reference to the root movie Timeline. If a movie has multiple levels, the root movie Timeline is on...
  10. Replies
    5
    Views
    320

    action script is like java there is not end if ...

    action script is like java
    there is not end if

    if (condition) {
    }
    else {
    }
    use curly brackets instead
  11. Replies
    1
    Views
    331

    hmm to disable buttons button.enabled == false;

    hmm to disable buttons

    button.enabled == false;
  12. Replies
    5
    Views
    426

    hi i just made a preloader for loading variables...

    hi i just made a preloader for loading variables from JSP, however i tested with with external_loaded sounds before and it seems good

    on my _root timeline:
    ss = new Sound();...
  13. nvm fuond a new way to solve the problem i...

    nvm fuond a new way to solve the problem

    i load the variables into a new LoadVars() in the function and get the movieclip to loadit on the first frame
    no need to call functions anymore
    thanx for...
  14. the duplicating part is fine curently only...

    the duplicating part is fine curently
    only problem is i cant seem to call that method start() out from callPL()

    in the callPL() method
    when i use

    _root.pl.start(); it works

    but when i...
  15. because many clips might be generated at the same...

    because many clips might be generated at the same time, a counter is needed to change the depth and name of the different clips
    thats y i had a _root.x
    its just a name, no biggie
  16. Call a function in a duplicated movie clip form another function : (

    i have a movie clip on my root name "pl".
    on command, it duplicates with instance name as "y0","y1", etc.

    here is the method :

    function callPL(transmit,receive,addy,level) {

    var newName =...
  17. hmm it sounds like on filetwo.swf the time...

    hmm it sounds like

    on filetwo.swf
    the time line runs from frame 1 to 49,
    then it loads fileone.swf onto level1, which loadvars from the textfile.

    i think this means that filetwo.swf will not...
  18. hmm i suppose you have the following codes in...

    hmm i suppose you have the following codes in fileone.swf

    myLoadVars = new LoadVars();
    myLoadVars.load("yourtextfilehere.txt");

    since u you load fileone on _level1,
    u should try...
  19. hmm im not sure if its right but all my loops...

    hmm im not sure if its right but all my loops have no "var" inside

    it goes like this :

    if (i=0;i<10;i++) {
    }
  20. Replies
    7
    Views
    410

    yup syntax would be if (condition fulfilled)...

    yup
    syntax would be

    if (condition fulfilled) {
    //do these actions between the 2 brackets.
    }
    else {
    //do these actions between the 2 brackets.
    }
  21. thx it works but now i got another problem is...

    thx it works
    but now i got another problem is that i cant call the method in the duplicated movie clip :(

    when i try
    trace(_root[newName]);
    it returns "_level0.x1" , so thats ok

    so i try to...
  22. How to convert String to object (movieclip instance name)

    this is a function on my _root :


    function callMsg(title,msg,btn) {
    trace("_root.msgBox() is called");

    _root.x += 1;
    var newName = "x"+_root.x;...
  23. yay got it working thanx alot dude

    yay got it working thanx alot dude
  24. how to obtian flash document size (height n width)

    im looking for the height and width of the document (set in the document properties)

    however when i do a trace(_root._width) it shows the width to be the width of my drawing area.

    hence i need...
  25. Replies
    5
    Views
    1,257

    hey hey i dunno wad i did i just mess around...

    hey hey
    i dunno wad i did
    i just mess around and it works now :D
    phew thanx for all the help anyways
Results 1 to 25 of 28
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center