A Flash Developer Resource Site

Search:

Type: Posts; User: next2heaven

Page 1 of 11 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    555

    Very odd. The flash now loads but it doesn't...

    Very odd. The flash now loads but it doesn't load the xml. I'm using the full path and when testing from siteA.com it works just fine but if siteB.com uses that same code it won't. Odd. Any...
  2. Replies
    2
    Views
    555

    Load swf from different site issue

    I can't seem to load a swf from another domain. I'm not doing this from another flash file or anything. Just a page on SiteB.com trying to load a swf to display on SiteA.com. That flash file on...
  3. Replies
    6
    Views
    670

    You need to create a listener and check the delta...

    You need to create a listener and check the delta for the rate of change. Something like this:


    box.addEventListener(MouseEvent.MOUSE_WHEEL, doSomething);

    function doSomething(e:MouseEvent){...
  4. More than likely it's because it can't find the...

    More than likely it's because it can't find the file. Make sure the path to the file is correct and relative to the page that contains the flash.
  5. Replies
    2
    Views
    378

    I'm guessing that the deployed version going like...

    I'm guessing that the deployed version going like this:

    - Start swf
    - frame 1 says goto Frame 25 of video
    - can't find frame 25 of video since it hasn't downloaded yet
    - just skips it.

    Flash...
  6. Replies
    5
    Views
    576

    No...I've got it attached to a button. So...

    No...I've got it attached to a button. So whenever you click the button it dispatches the CLICK event and in that function it does the dispatching using the customEvent.
  7. Replies
    5
    Views
    576

    The dispatch is being called for sure. I can't...

    The dispatch is being called for sure. I can't figure out why it's not 'hearing' it (so to speak).
  8. Replies
    5
    Views
    576

    Dispatching Event from embeded swf

    How do I send an even from an embeded swf and receive it from the class that called it?

    Code the dispatches from account_settings.swf file.

    dispatchEvent(new...
  9. Replies
    2
    Views
    1,430

    Great idea. Thank you, that will work...

    Great idea. Thank you, that will work wonderfully!
  10. Replies
    2
    Views
    1,430

    Draw three quarter circle...

    I need to draw a circle like a pie chart. But I need the circle to only go around about 2/3's or whatever I choose. I've tried the 'curveTo' method but that didn't work. It makes the circle more...
  11. Got it! Thanks. I was thinking that the second...

    Got it! Thanks. I was thinking that the second number was for how many characters away from the begining index it was when in fact it was an index as well. Thank you!
  12. Multiple TextFormat options for a textfield help needed

    var theText:TextField = new TextField();
    I've got the following code that shows a line of text on the stage and sets a format to it then sets a specific word to another format. Why won't this work?...
  13. You should call a function on the Bullet...

    You should call a function on the Bullet MovieClip to stop it.

    So to impliment you'd add this function to your Bullet Class:

    public function stopBullet():void {
    ...
  14. I set the fullScreenTakeOver to false and it...

    I set the fullScreenTakeOver to false and it worked just fine. I was thinking that I couldn't use that method or I wouldn't get the hardware excelleration but I think I'm wrong on that.

    Hope this...
  15. [RESOLVED] FLVPlayback Fullscreen issue...

    I'm using the FLVPlayback and need to go fullscreen. I can do that using the built in function: enterFullScreenDisplayState and it works just fine.

    My problem is that I've written my own dynamic...
  16. Replies
    7
    Views
    686

    Try: this.parent.removeChild(this);

    Try:

    this.parent.removeChild(this);
  17. Replies
    3
    Views
    421

    This used to work for AS2...try this approach: ...

    This used to work for AS2...try this approach:

    var urlRquest:URLRequest = new URLRequest("javascript:window.close()");
    navigateToURL(urlRquest, "_self");
  18. Replies
    6
    Views
    1,303

    Once it's drawn and as long as it doesn't move,...

    Once it's drawn and as long as it doesn't move, there are no performance issues. The only time there is problems are when things have to be calculated constantly because of changes. You shouldn't...
  19. Replies
    5
    Views
    1,775

    oh sorry! I thought he had that in as3. He...

    oh sorry! I thought he had that in as3. He usually does his stuff in both.

    Ya, if you are loading stuff outside of the flash program locally you'll get sandbox errors. If your running it in the...
  20. Replies
    5
    Views
    1,775

    Check out: ...

    Check out:

    http://blog.greensock.com/category/preloading/
  21. Replies
    2
    Views
    2,629

    You need to wait for the swf to load first. Add...

    You need to wait for the swf to load first. Add an eventlistener like this:

    ldr.addEventListener(Event:COMPLETE, nowPlay);

    function nowPlay(e:Event):void {
    my_mc.play();
    }
  22. Replies
    3
    Views
    391

    I am making a custom player which plays...

    I am making a custom player which plays progressive flv's just fine. When I try using the rtmp://.... it says it can't find it. When I put it as the source for the FLV component it connects just...
  23. Replies
    3
    Views
    391

    Class question with videos

    Do I have to use the FLVPlayback Class if you want to stream a video using RTMP? Or is it possible through the plain Video Class? I'm trying to keep the filesize low and the FLVPlayback Class is...
  24. Replies
    3
    Views
    696

    Add the event Listener to the ad_btn without the...

    Add the event Listener to the ad_btn without the 'rollClip' before it unless rollClip is a class. In AS3 you target things more directly.
  25. I think you're correct. I did it over and over...

    I think you're correct. I did it over and over and it'd go up and down but pretty much stay in a certain range. Well thanks. I just wanted to make sure I wasn't crazy and needed to unload...
Results 1 to 25 of 275
Page 1 of 11 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center