A Flash Developer Resource Site

Search:

Type: Posts; User: bgregus

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    1,764

    I'll admit I don't know what the getURL link is...

    I'll admit I don't know what the getURL link is doing, maybe some kind of external call to a cascade function?

    Everything else however -

    //just different syntax
    stage.align =...
  2. In regards to image quality flash generally...

    In regards to image quality flash generally defaults pngs to whatever you select as image quality in the export settings. If you want to improve all images do so there. If you want to alter the...
  3. Replies
    8
    Views
    1,948

    unsure if this is helpful but when I do a...

    unsure if this is helpful but when I do a scrollbar, which is somewhat similar I guess, I put the mouse up listener on the stage

    - stage.addEventListener(MouseEvent.MOUSE_UP, whatever);
  4. maybe pass your display objects in an array to...

    maybe pass your display objects in an array to the removeSettings function?

    TweenLite.to(musicPlus, .5, {alpha:0, onComplete:removeSettings, onCompleteParams:new Array(remove me)});

    override...
  5. Replies
    2
    Views
    11,359

    Interesting issue. If the mask is applied in the...

    Interesting issue. If the mask is applied in the timeline you may want to try creating one dynamically. Another option you might try is putting a listener on the stage and when it's resized change...
  6. KeyboardEvent.KEY_UP - user presses a key and...

    KeyboardEvent.KEY_UP - user presses a key and then you wait until they release it before your code accepts another input. Theoretically that should work.
  7. I'm not great with AS3 but it sounds to me...

    I'm not great with AS3 but it sounds to me (without actually seeing the file) something is not ordered correctly. For example I've had difficulty with Flash blowing through some code for a component...
  8. Replies
    2
    Views
    561

    whoops... you can take that last...

    whoops... you can take that last "Stage.addListener(stageObj); " out.
  9. Replies
    2
    Views
    561

    Hope this helps - Stage.align = "TL";...

    Hope this helps -


    Stage.align = "TL";
    Stage.scaleMode = "noScale";
    var stageObj = new Object();
    Stage.addListener(stageObj);
    stageObj.onResize = function() {
    circle_mc._x = Stage.width/2...
  10. Replies
    3
    Views
    604

    If you would upload the fla it would be easier to...

    If you would upload the fla it would be easier to look at.

    From just seeing the swf I'd guess
    - pull out the easing (that is making it slow at the tail end)
    - add gotoAndPlay(1) on the final...
  11. Replies
    1
    Views
    533

    fla is the flash project file. Flash will indeed...

    fla is the flash project file. Flash will indeed import flv files. try the following -

    - create fla same dimension as your flv
    - click on the timeline and hit ctrl+r
    - find your flv to import...
  12. Replies
    9
    Views
    2,557

    This is the syntax I used and it works......

    This is the syntax I used and it works... although I seem to remember seeing an example using [] as well. It might be worth giving the following syntax (with your naming of course) a try.

    ...
  13. Replies
    7
    Views
    12,575

    danddleo, unsure if you have solved your issue,...

    danddleo, unsure if you have solved your issue, but I was curious if you were trying to use the escape key to get out of fullscreen video aka - Stage.displayState

    If you are using fullscreen...
  14. Replies
    2
    Views
    868

    no time to look at this, running to a meeting but...

    no time to look at this, running to a meeting but it occurred to me - when rollover for the second button have it check to see if the other tables are closed and if it isn't close them.

    You know...
  15. Replies
    6
    Views
    1,337

    I would agree with Rynoe. AS2 looks much like...

    I would agree with Rynoe. AS2 looks much like reading English to me now where as AS3 might as well be Japanese. On occasion you might have to do projects that specs require AS2 but it's certainly...
  16. Replies
    3
    Views
    3,238

    exactly so digdawg. you are most welcome. - B

    exactly so digdawg. you are most welcome.
    - B
  17. Replies
    3
    Views
    3,238

    digdawg -- couple of things you should try. ...

    digdawg --

    couple of things you should try.


    Go into the Library, find your image and view the properties. In properties check the "allow smoothing" box. This will help your images while...
  18. Replies
    15
    Views
    1,562

    nice!

    nice!
  19. Replies
    15
    Views
    1,562

    It's possible the order of execution is screwing...

    It's possible the order of execution is screwing things up. The text fields may offset that. How did the setTimeout() work?
  20. Replies
    2
    Views
    2,843

    Another update -- problem solved. Used a set a...

    Another update -- problem solved. Used a set a timer to force a different execution order.


    var bugFix = function(){
    var sw:int = stage.stageWidth -1;
    var sh:int = stage.stageHeight -1;
    ...
  21. Replies
    15
    Views
    1,562

    This seems to work for my stage object problem. ...

    This seems to work for my stage object problem. Maybe it might work for yours.


    var bugFix = function(){
    // do stuff
    // make sure stage variables are in here as well
    };...
  22. Replies
    15
    Views
    1,562

    :confused: wacky

    :confused: wacky
  23. Replies
    15
    Views
    1,562

    Have you tried what jAQUAN mentioned? Drop a...

    Have you tried what jAQUAN mentioned? Drop a dynamic text box onto the stage and then see what it's spitting out when the file is embedded into your html.

    I noticed that AS3 stage calls have...
  24. Replies
    9
    Views
    1,294

    jonis - Gotcha, I haven't tried doing it like...

    jonis - Gotcha, I haven't tried doing it like that.

    Usually I just set the "my_variable" in the parent file and then have the external swf look for "my_variable" on init or whatever function. ...
  25. Replies
    15
    Views
    1,562

    Jbard - I noticed when creating dynamic boarders...

    Jbard - I noticed when creating dynamic boarders that preview (ctrl+enter) will short the height value of the stage. For example if the stage height was 200px the boarder would show up as 100px in...
Results 1 to 25 of 144
Page 1 of 6 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center