A Flash Developer Resource Site

Search:

Type: Posts; User: NetSpyder101

Page 1 of 12 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    29
    Views
    3,297

    Once I find the VC tutorial I'll post a link to...

    Once I find the VC tutorial I'll post a link to it for you. If anyone wants to write a .jpg encoding algorithm that would be peachy. It would probably be easier to write an encoder for a .bmp...
  2. I was on the beta test team for the MX software...

    I was on the beta test team for the MX software package. A large reason it was released when it was (with known errors) was because the Flash Community as a whole requested it to be so. YOU, the...
  3. Replies
    1
    Views
    459

    Here is a simple tracking formula you can use...

    Here is a simple tracking formula you can use when programming games. It also allows you to simplify hitTests since you can just use an array of the different MCs and only perform hitTests on ones...
  4. Replies
    1
    Views
    578

    There were a couple requests about using lineTo...

    There were a couple requests about using lineTo in order to draw a following line (like the old 45deg line trick)

    http://perfectweb.org/Simple_Drag_Follow.html...
  5. Replies
    8
    Views
    908

    part of the MC object -- if you look in the...

    part of the MC object -- if you look in the actionscript dictionary and search for "moveto" it will let you view all the related MC functions for on-the-fly drawing of lines and polygons.

    Spyder
  6. Replies
    29
    Views
    3,297

    Anyone made some changes to the .fla that...

    Anyone made some changes to the .fla that improves/changes the way it interacts?

    Just curious what we can do with a little paint program.

    Spyder
  7. Replies
    1
    Views
    626

    Anyone have any fractal generator code (AS)...

    Anyone have any fractal generator code (AS) they'd be willing to share. I have several from VC, but it's a pain to port them all over (especially if other people have already written some).

    Spyder
  8. Replies
    5
    Views
    1,073

    yeah a comboBox element must exist before before...

    yeah a comboBox element must exist before before it can be called. Normal wait time is 1 frame, but sometimes using embeded functions and passing the object to the second function after creating it...
  9. Replies
    5
    Views
    1,016

    It will work fine as long as the proper codecs...

    It will work fine as long as the proper codecs are installed and configured. A lot of PCs are unable to properly display Divx AVI files which will prevent a lot of people from using them within...
  10. Replies
    8
    Views
    908

    moveto() and lineto() Spyder

    moveto() and lineto()

    Spyder
  11. To drag and drop frames -- click on it once and...

    To drag and drop frames -- click on it once and then your arrow cursor will change to have a little light box at the bottom right hand corner. If you then click on the frame again you can drag it.
    ...
  12. Replies
    5
    Views
    1,073

    Subway -- Not to sound like a maroon, but...

    Subway --

    Not to sound like a maroon, but would you e-mail me the .fla file so I can see exactly what you are talking about?

    Just by looking at the code snippet everything appears to be correct...
  13. Replies
    1
    Views
    626

    Here is a very basic fractal (often called the...

    Here is a very basic fractal (often called the chaos game):

    http://perfectweb.org/sierpinski.html
    http://perfectweb.org/sierpinski.fla

    I'll make a 3D version once I get back to work this...
  14. Replies
    29
    Views
    3,297

    I took my VC tutorial site offline when I didn't...

    I took my VC tutorial site offline when I didn't have time to support it anymore. I can try to scrounge up an older copy of that tutorial if you'd like.

    As for exporting it as a jpeg...I...
  15. if you have more than 3 options, you should...

    if you have more than 3 options, you should ALWAYS use switch. It is less intensive on the processor as well as easy to read in case you distribute your .fla file.

    Standard programming rules...
  16. Sure thing, it's a standard switch statement: ...

    Sure thing, it's a standard switch statement:


    myVar = Math.ceil(Math.random()*5);

    switch(myVar)
    {
    case 1:
    trace ("case 1 tested true");
    break;
  17. Replies
    29
    Views
    3,297

    If you want the .fla -- ...

    If you want the .fla --

    http://perfectweb.org/drawing.fla

    enjoy

    Spyder
  18. It only asks permission if you are going to be...

    It only asks permission if you are going to be going above the default limit for object size (100Kb).

    Spyder
  19. Thread: HELP!

    by NetSpyder101
    Replies
    67
    Views
    8,392

    If it helps any -- I can resolve your domain name...

    If it helps any -- I can resolve your domain name -- but time out on all pings to you.

    Spyder
  20. Replies
    4
    Views
    824

    If you want to keep the button from displaying...

    If you want to keep the button from displaying the handcursor, try putting this on the first frame of your main timeline:



    Button.prototype.useHandCursor = false;


    HTH,

    Spyder
  21. Want to know how to use a sharedobject to write...

    Want to know how to use a sharedobject to write to the user's HDD for directly storing variables and other such things?



    function setCookie()
    {
    _root.myCookie_so.data.strTest =...
  22. Replies
    29
    Views
    3,297

    When you use the lineto function (whether you are...

    When you use the lineto function (whether you are using a fill, a gradient fill, or no fill at all), it doesn't take long for flash to hog up a lot of memory (we all remember the problems with...
  23. Replies
    18
    Views
    1,307

    Since Flash is becoming insanely object oriented,...

    Since Flash is becoming insanely object oriented, you should make some slight adjustments to your coding style in order to take full advantage of this fact.

    When you are creating names for your...
  24. Replies
    29
    Views
    3,297

    Ok -- just because I was bored at work before...

    Ok -- just because I was bored at work before leaving:

    I've added in a small color palette and a size adjuster for painting. I'm happy to give the .fla to anyone who wants it.

    Spyder
    ...
  25. Replies
    29
    Views
    3,297

    This is a generic bit of code that is from a...

    This is a generic bit of code that is from a mouse tutorial I wrote for VC++. With some changes, it now works in Flash MX.

    Just add this code to the first keyframe on your main movie timeline and...
Results 1 to 25 of 300
Page 1 of 12 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center