A Flash Developer Resource Site

Search:

Type: Posts; User: TurkeyMaster77

Page 1 of 8 1 2 3 4

Search: Search took 0.04 seconds.

  1. CS3 You could just use a single loop, and put the...

    You could just use a single loop, and put the selection logic inside of it. Try a variation of this:


    for (i=1; i <= 15; i++) {
    if (i <= 6) {
    container1.attachMovie ("thumb" + i, "thumb" +...
  2. Can SharedObjects store custom classes?

    I have a an array of a custom class that I'm trying to store in a SharedObject. Storing is working fine , but when I recall the SO next compile it only returns an array of generic Objects instead of...
  3. Uploading files with PHP not working..

    I'm working with Flash 8 first off, and it's uploading the file to the tmp folder just fine (I've tested for this). The problem begins when I use the move_uploaded_file function in PHP. Using the...
  4. Replies
    1
    Views
    460

    [CS3] Adding custom MovieClips

    How do I add a MovieClips/Buttons that was hand drawn without a class .as file? Is it even possible? If I'd like to refer to it with script and control it's members/timeline, do I need to create an...
  5. Can flash detect directory contents?

    I'm looking to dynamically load a set of jpgs into flash. Right now I'm loading them in accordance to an array like this photos = ["pic1", "pic2"]. I was just wondering if flash can read files in...
  6. Replies
    1
    Views
    522

    resizing jpgs from loadMovie

    I'm using loadMovie to load jpgs from a folder into container MCs labeled "pic0", "pic1", "pic2". The only problem having is I can't resize them other than setting the _x/yscales of the container...
  7. Replies
    1
    Views
    455

    Select the sound on the frame it exists in your...

    Select the sound on the frame it exists in your flash. Then in the properties menu change the sound type to 'Stream'. That's the option that will sync it with your movie, but it also lowers the...
  8. Replies
    1
    Views
    383

    Strange frame actions problem

    I am experiencing the strangest frame action's problem!!! All of them work completely fine until I place a .jpg on any frame of the movie! That's when everything stops working! What is going on??
  9. Replies
    4
    Views
    2,044

    I never viewed Flash as an application used for...

    I never viewed Flash as an application used for animation. If you're looking to simply animate, then you're better off using any of the programs you mentioned. The animation techniques, however are...
  10. Replies
    1
    Views
    486

    changing dynamic text color

    Hello. I'm having a problem with changing the color of text in a dynamic text box and making it permanent. Here's the code I'm using:
    fmt1 = new TextFormat();
    fmt1.color = 0xff0000;
    ...
  11. here you go, enjoy! LocalConnection Class...

    here you go, enjoy!

    LocalConnection Class
  12. Replies
    1
    Views
    474

    [F8] Declaring global functions

    How do I make a function declared inside a MovieClip available to the _root timeline?
  13. Replies
    2
    Views
    481

    Instead of drawing the lines on the root...

    Instead of drawing the lines on the root timeline, try drawing them inside the graph. This way the lines will retain the depth of their parent graph.
  14. Replies
    4
    Views
    3,094

    I wasn't completely sure what you meant, but try...

    I wasn't completely sure what you meant, but try this out:

    _root.myMC.ease = 2;
    _root.myMC.onPress = function() {
    this.drag = true;
    }
    _root.myMC.onEnterFrame = function() {
    if...
  15. how do i make .swfs have transparent backgrounds??

    I'm just looking to make the background of a menu on my site transparent, but I'm not sure where in the embedding code it goes!
  16. Replies
    1
    Views
    551

    [F8] Communicating between .swfs

    I have a menu .swf and a content .swf both embedded in an html file. I was just wondering if it was possible if when a button was clicked in the menu that the content file would display accordingly....
  17. Replies
    2
    Views
    470

    Declaring vars in embed code

    I've seen variables declared in the html code like below before. I was just wondering how to access the variables from inside flash. Thanks.

    <param name="movie" value="Untitled-1.swf?myVar=25" />
  18. [F8] detecting collision with a straight line

    I was just wondering if anybody could help me come up with a better way to test if a line from point (a,b) to point (c,d) is in collision with an object called 'myLevel'. The way I'm doing it right...
  19. Replies
    2
    Views
    466

    I got this code to work, but I changed a few...

    I got this code to work, but I changed a few things around that I couldn't find meaning in. If you need this to meet any other requirement just let me know! I'd be happy to work with it more. There...
  20. By simply say nextScene(), you're just telling...

    By simply say nextScene(), you're just telling the movie clip to go to the next scene, and since movieclips can't have seperate scenes, it plays the next frame of the movieclip. By using "_root." in...
  21. Collision Detection With Straight Line

    Is there a simple way to test if collision occurs between a line drawn from point (a,b) to point (c,d) and a movieclip named 'myLevel' as shown in the picture below?
    ...
  22. Replies
    0
    Views
    438

    Question about the loadSound function

    This is just for a simple media player for my site. I have it set up so when you hit the play button or select a song it begins loading the .mp3 with the loadSound function from my ftp. Is there...
  23. Replies
    1
    Views
    377

    loading variable from a .txt file

    Im just wondering how i need to format the text in a text file so it will create flash variables when loaded. standard defintions such as:

    myVar = new Variable();
    myArray = new Array(5);

    dont...
  24. Replies
    0
    Views
    300

    loading vars from a url

    this is for a media player for my site.
    im trying to load the song information from a .txt into flash as variables that would be set up like this:
    songs = new Array();
    songs[0] = new...
  25. Replies
    5
    Views
    406

    but i dont want them all to load right away or...

    but i dont want them all to load right away or even at the same time
Results 1 to 25 of 185
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center