A Flash Developer Resource Site

Search:

Type: Posts; User: michaelhejja

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Replies
    13
    Views
    979

    kitter08, post the problem that you are having,...

    kitter08, post the problem that you are having, and maybe somebody here can help you out.
  2. Try: _root["holder" + i].whatever =...

    Try:

    _root["holder" + i].whatever = "anotherwhatever";
  3. AC_RunActiveContent.js is a javascript file that...

    AC_RunActiveContent.js is a javascript file that embeds flash on a webpage. If you want to play a flash movie locally, you don't need to use a webpage, just save a projector file.

    File > Publish...
  4. What is happening is that "t" is being...

    What is happening is that "t" is being overwritten every time it loops through the code, so by tracing t.swf you are looking at the last "t". Try tracing the variable value relative to that object...
  5. Replies
    1
    Views
    2,051

    you need to use loadMovie, or the...

    you need to use loadMovie, or the MovieClipLoader.

    instead of

    this._parent.picload.content = image;

    try

    this._parent.picload.loadMovie(image);
  6. Replies
    1
    Views
    1,077

    hey aidanmack! Check out this application. ...

    hey aidanmack!

    Check out this application.

    You can edit and save any XML file on your site, even upload new images and videos and preview them in the editor.

    http://www.flashxmleditor.com
  7. Replies
    15
    Views
    8,048

    Hey Parmour! I think this is exactly what you...

    Hey Parmour!

    I think this is exactly what you are talking about.

    http://www.flashxmleditor.com
  8. Replies
    3
    Views
    692

    I have an XML editor that allows you to edit and...

    I have an XML editor that allows you to edit and save XML live online through an easy to use interface. So, if your site on cd is pulling XML from the internet when it's run, this could be a good...
  9. Replies
    22
    Views
    2,968

    Did you download the file I posted a link to?

    Did you download the file I posted a link to?
  10. Replies
    4
    Views
    541

    oh, ok I see Try taking the code out of the...

    oh, ok I see

    Try taking the code out of the first frame completely and see what happens.
  11. Ok, since you're doing it on the timeline, just...

    Ok, since you're doing it on the timeline, just put a function similar to this wherever you want the sound to fade down:

    currentVolume = mySound.getVolume();
    targetVolume = 10;
    fadeOutSpeed = 1;...
  12. Not sure if this will help, but you can use a...

    Not sure if this will help, but you can use a movieclip AS a button instead of replacing a button with the movieclip.
  13. Replies
    2
    Views
    1,427

    As long as you're calling _root.firstSound you...

    As long as you're calling _root.firstSound you should be able to access it from anywhere.
  14. Replies
    2
    Views
    4,078

    Some fonts might not show up or will format...

    Some fonts might not show up or will format differently, but I can't think of any other thing that wouldn't show up on a mac. Are you sure the mac has the latest version of flash player?
  15. Replies
    4
    Views
    1,252

    You can pass the same variable into your flash...

    You can pass the same variable into your flash movie when you embed it on the page.

    myFlashMovie.swf?profile=Tim would automatically create a variable called profile on your root timeline with a...
  16. Replies
    4
    Views
    541

    Paste this on the top movieclip: on(rollOver){...

    Paste this on the top movieclip:

    on(rollOver){
    this.useHandCursor = false;
    }
  17. Replies
    5
    Views
    608

    this.onEnterFrame = function(){...

    this.onEnterFrame = function(){
    if(textBox._alpha > 0){
    textBox._alpha -= 1;
    }else{
    delete this.onEnterFrame;
    }
    }
  18. Replies
    7
    Views
    661

    Not really problems, but you'll want to go with 8...

    Not really problems, but you'll want to go with 8 if you can.
  19. Replies
    4
    Views
    541

    It seems like you are embedding all of your sound...

    It seems like you are embedding all of your sound and video in the main file, in which case it all needs to be loaded at the beginning.

    For sound, try to use the sound object to control when you...
  20. Replies
    5
    Views
    608

    Yes. Dynamic text can only be altered through...

    Yes. Dynamic text can only be altered through actionscript.
  21. Replies
    7
    Views
    550

    This is correct. The same problem happens alot...

    This is correct.

    The same problem happens alot when trying to reposition dynamically loaded clips of different size. The loaded clip actually appears slightly after the code applying to it is...
  22. Thread: Preloader

    by michaelhejja
    Replies
    2
    Views
    544

    Both of those classes have getBytesLoaded and...

    Both of those classes have getBytesLoaded and getBytesTotal methods.

    bytesLoaded divided by bytesLoaded times 100 is your percent loaded.

    Use this to either scale a loading bar movieclip or...
  23. I have created this already, only without the...

    I have created this already, only without the feature that detects when the ad is complete. It loads the ads through XML, and even supports image maps for multiple links if you load a jpg.
  24. You are using loadMovie, with which you cannot...

    You are using loadMovie, with which you cannot grab the percent loaded. If you use the MovieClipLoader class instead, you can access percent loaded.
  25. The crawler will most likely recognize this and...

    The crawler will most likely recognize this and penalize you for it. Also, much of search engine rankings have to do with the number of quality sites that link back to your site, the amount of...
Results 1 to 25 of 64
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center