A Flash Developer Resource Site

Search:

Type: Posts; User: flashbeast

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    508

    make sure that the textbox is set on an exact...

    make sure that the textbox is set on an exact pixel, in the properties pannel. if it's at 11.1 instead of 11 on the X or Y, that may be the reason.
  2. Replies
    2
    Views
    723

    great, thanks thats the one

    great, thanks thats the one
  3. Replies
    2
    Views
    723

    Browser question

    How do I change the position of flash content, inside the swf, based on windowed broser size?

    http://www.thefwa.com/

    so window your browser, then play around with the size, notice the...
  4. A question about mutliple instances on depths

    var maxflakes:Number = 70;
    for (var i = 0; i<maxflakes; i++) {
    var flake:MovieClip = attachMovie("snow", "flake", i);
    flake._x = Math.random()*Stage.width;
    flake._y =...
  5. Replies
    0
    Views
    427

    loadMovie problem - - - - -

    ok, so I have a swf called swf1.swf, with a movieclip named mcbutton

    now on my main.swf, i have swf1 loading in on a container clip called loadspot

    it loads in fine, but when i try...
  6. Replies
    1
    Views
    314

    so in other words, how do you target a movie clip...

    so in other words, how do you target a movie clip inside a swf that you loaded with loadmove
  7. Replies
    1
    Views
    314

    Targetting clips loaded with loadMovie

    ok, so I have a swf called swf1.swf, with a movieclip inside with an instance name mcbutton

    now on my main.swf, i have swf1 loading in on a container clip called loadspot

    it loads in fine, but...
  8. Replies
    15
    Views
    560

    thank you so much, haha this is so good for me,...

    thank you so much, haha this is so good for me, thanks for taking the time.
  9. Replies
    15
    Views
    560

    hahaha I got another one for ya I want to put...

    hahaha I got another one for ya

    I want to put code for changing swfs in a loop



    for (i=1; i<3; i++) {
    _root["b"+i].onRelease = function() {
    loadMovie("swf2.swf", mcPlace);
    };
  10. Replies
    15
    Views
    560

    mm the above code allows me to move the level...

    mm the above code allows me to move the level
    and if you go _level0._x = 10, it moves everything on the root over 10

    I
    m using flash 8, and I'm pretty much experementing, because I want to...
  11. Replies
    15
    Views
    560

    so loadMovieNum("swf2.swf", 2); ...

    so

    loadMovieNum("swf2.swf", 2);


    b1.onRelease = function() {
    _level2._x = 145

    };
    works, when I press, the level is moved over, but how can you initially set the position? it seems that...
  12. Replies
    15
    Views
    560

    alright, a sample preloader with loadmovie would...

    alright, a sample preloader with loadmovie would be nice, sure. thanks for all the help, I quite appriciate it.

    One more question,


    loadMovieNum("swf2.swf", 2);
    _level2._x = 145


    The...
  13. Replies
    15
    Views
    560

    I see, ok. So what about the blinking problem?...

    I see, ok.
    So what about the blinking problem? it's like there's 1 frame of blank space, yet all my movies have only one frame so i dont understand. iit's like it takes a second to load, and for...
  14. Replies
    15
    Views
    560

    ok thanks for that, but i was wondering if there...

    ok thanks for that, but i was wondering if there was a built in method that could check for us if something was loaded or not, didn't want to resort to making my own tracker var
  15. Replies
    15
    Views
    560

    loadMovie question---

    ok, so I have a problem with loadmovie. when I use the following code, (swf1 and swf2 have 1 frame, just a shape)


    b1.onRelease = function() {
    loadMovie("swf2.swf", "mcPlace");
    };
    b2.on =...
  16. Replies
    8
    Views
    414

    Alright, makes sense to me. Thanks a lot.

    Alright, makes sense to me.

    Thanks a lot.
  17. Replies
    8
    Views
    414

    Thanks! that's great, although it does behave a...

    Thanks! that's great, although it does behave a bit differently, the movement is considerably slower for some reason.

    So I guess this'd be the only way to do it? That is a fair bit of code-I was...
  18. Replies
    8
    Views
    414

    I can't seem to find a workaround, geez, I...

    I can't seem to find a workaround, geez, I remember I had this problem a while ago too, I'm sure there's a simple solution
  19. Replies
    1
    Views
    387

    A question about loading

    So what is the most efficient way to load flash? Meaning, is it common practice to load clips when needed through the library, using attachMovie? Or is it common to load separate swfs into the...
  20. Replies
    8
    Views
    414

    ok, attached is the fla I'm working on, in a real...

    ok, attached is the fla I'm working on, in a real simple form
  21. Replies
    8
    Views
    414

    Odd problem with movieclip events

    ok this is a sliding navigation bar, based on mouse position. ok, so I have a slider movie clip, instance name 'slider'. Inside, I have a movieclip called 'test'. Now I assume that my...
  22. Replies
    2
    Views
    882

    You'd probably want to make use of getTimer() ...

    You'd probably want to make use of getTimer()

    Trace out getTimer(), and you'll see that it returns the time that the movie has been running(in miliseconds). so, onclick, store the value of...
  23. Hmm so there's no way around that then? What...

    Hmm so there's no way around that then? What about using macros or something, I guess that's something different entirely but info on that would be nice too
  24. Oh and also, is there a way to give large numbers...

    Oh and also, is there a way to give large numbers of clips' instance names(that are simmilar, like b1, b2, b3 etc) quickly?
  25. [B]Flash question-annoying thing with(probably)simple answer[/B]

    Ok, so say I have one movie clip, which is a simple black box. I then create 10 instances of this box on the stage, and give them instance names like b1, b2, etc up to 10. Now if I double click any...
Results 1 to 25 of 105
Page 1 of 5 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center