A Flash Developer Resource Site

Search:

Type: Posts; User: Gu35s

Page 1 of 11 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    584

    as2 Stage.align='TL';...

    as2

    Stage.align='TL';
    Stage.scaleMode='noScale';


    set html object width and height sizes to 100%.
  2. Replies
    4
    Views
    584

    set stage scaling to noscale and align TL. the...

    set stage scaling to noscale and align TL. the rest is just script telling the top left stuff stay top left, top right stay top right. the picture is detecting stage.width and stage.height fit the...
  3. Replies
    2
    Views
    473

    //assuming your textfield instance names are...

    //assuming your textfield instance names are pp1,pp2,pp3...
    //assuming your data is placed into array called ppArray
    for(i=1;i<=5;i++){
    results_plate.pp[i].text = ppArray[i-1];
    ...
  4. Replies
    4
    Views
    591

    i don't think it's possible since it's flash...

    i don't think it's possible since it's flash parameter. not flashvars.

    best way (maybe) is to set an "enter" button at the front and hit swf to fullscreen when clicked. then detect if it's...
  5. Replies
    2
    Views
    632

    CS3 http://www.gotoandlearn.com/play?id=20 maybe....

    http://www.gotoandlearn.com/play?id=20

    maybe.

    as for posting, it's basically sending stuff to php and let php deal with mysql (same as retriving) so maybe you should just search for php to...
  6. Replies
    3
    Views
    808

    it is a good tool to make your interactive map....

    it is a good tool to make your interactive map. but if you want to use modify google map api, search for "customize google map".
  7. Replies
    2
    Views
    693

    got it working. work arounds. here is for those...

    got it working. work arounds. here is for those who enjoy watching plane shooting ufo. best in 30 fps and black background.

    Stage.scaleMode = 'noScale';
    Stage.align = 'TL';
    speed = 20;
    maxspeed...
  8. Replies
    1
    Views
    3,275

    got it working. work arounds. here is for those...

    got it working. work arounds. here is for those who enjoy watching plane shooting ufo. best in 30 fps and black background.

    Stage.scaleMode = 'noScale';
    Stage.align = 'TL';
    speed = 20;
    maxspeed...
  9. Replies
    1
    Views
    3,275

    [RESOLVED] rotate to dynamic point

    i made this thing that would move to mouse.

    -removed. check next post-
    it should rotate to mouse gradually, but i can't seem to get it to rotate fully. it would go the other way most of the time....
  10. Replies
    2
    Views
    693

    really? nobody knows? i mean sure it's more of a...

    really? nobody knows? i mean sure it's more of a math problem, i suppose. maybe i should just post there instead. or moved.
  11. Replies
    1
    Views
    778

    you need input textfield placed. put this on the...

    you need input textfield placed. put this on the frame.

    var so:SharedObject = SharedObject.getLocal('sodata');
    if (so.data.dataA == undefined) {
    so.data.dataA = '0';
    so.flush();
    } else {...
  12. Replies
    2
    Views
    693

    [RESOLVED] [AS2] turn to mouse while moving

    just kinda bored of my screensaver. neway, here's what I got.

    -removed. look for complete code below-

    all AS2. nothing in the lib. so far..

    anyway, the "flier_mc" won't turn fully toward the...
  13. Replies
    4
    Views
    705

    on(press){ button1.gotoAndStop(1); ...

    on(press){
    button1.gotoAndStop(1);
    this.gotoAndStop(2);
    }
    you don't need to declare the same function over and over. it just read the last one if that happens.
  14. Flash 2 is not the same as AS2. AS3 is...

    Flash 2 is not the same as AS2.
    AS3 is developed and used differently.
    I don't really like it so I stick with as2.
  15. Replies
    2
    Views
    636

    hugh is the wrong word. "hue" and i think...

    hugh is the wrong word. "hue"

    and i think "hue" is not what you are looking for. it's probably "tint".

    look inside mc properties. there should be Color: box and look up Tint. select a color and...
  16. Thread: variables

    by Gu35s
    Replies
    2
    Views
    493

    colums = 10; rows = 10; distance = 20; for...

    colums = 10;
    rows = 10;
    distance = 20;
    for (var i = 0; i < colums; i++) {
    for (var e = 0; e < rows; e++) {
    depth = _root.getNextHighestDepth();
    _root.attachMovie("box","box" +...
  17. Replies
    3
    Views
    743

    for me, I would just make my own on/off button....

    for me, I would just make my own on/off button. first make a green circle, select it and make it movieclip called onoff_mc. go into onoff_mc and make a second frame and make the circle red. basically...
  18. Replies
    3
    Views
    893

    by setting a variable to hold the target's next...

    by setting a variable to hold the target's next position and moving _x and _y toward it instead of setting the _x and _y immediately to the target's position.
  19. Replies
    2
    Views
    900

    if the whole .swf itself is more than 300kb, i...

    if the whole .swf itself is more than 300kb, i say use it.
  20. maybe this ...

    maybe this

    mymovie_mc.loadMovie("incomingswf.swf",1);
    myButton.onRelease = function(){
    _root.mymovie_mc.stop();
    }

    if that doesn't work, then try...
  21. Replies
    6
    Views
    1,296

    Flash8 (5 - Math.random()*10); is just randomizing the x...

    (5 - Math.random()*10); is just randomizing the x and y. Math.random()*10 is randomize a number up to 10 then substract by 5. meaning it should span between -5 to 5 and add that to original _x or _y...
  22. Replies
    3
    Views
    759

    CS3 it's very nice. but you made the whole things in...

    it's very nice. but you made the whole things in such complicated way I almost have no idea where goes what.

    i shorten some of your codes, and to get the explosion thing working you have to rename...
  23. Replies
    3
    Views
    743

    never used radio buttons so this is just a blurt....

    never used radio buttons so this is just a blurt. maybe set if radio is true then mc.onPress = startdrag(this) and if it's false mc.onPress = null. or if you already have the drag function built into...
  24. Replies
    2
    Views
    584

    Flash8 scrollPane.contentPath = "ClipContainer"; mc =...

    scrollPane.contentPath = "ClipContainer";
    mc = ScrollPane.content;
    mc.createEmptyMovieClip("Image", 1);
    mc.Image.loadMovie("imgTest.jpg");
    mc.createEmptyMovieClip("Image2", 2);...
  25. what do you want the loaded script to do exactly?...

    what do you want the loaded script to do exactly? if your loaded mc is on the stage, and so is your button, then try btn.onRelease = function() { loadedClip.controlledItem.doSomething;}; on the frame.
Results 1 to 25 of 273
Page 1 of 11 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center