A Flash Developer Resource Site

Search:

Type: Posts; User: pmineault

Page 1 of 20 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    573

    You should take a look at the tutorial here: ...

    You should take a look at the tutorial here:

    http://www.actionscript.org/tutorials/intermediate/PHP_Remoting/index.shtml

    I revised it a few days ago for AS2 and it should give you a good...
  2. Replies
    3
    Views
    574

    You'll want to disable debugging while you're at...

    You'll want to disable debugging while you're at it. I get a window asking me where I'm running the debugger when I access the site.
  3. Replies
    5
    Views
    1,287

    Note that the selection tools have been updated...

    Note that the selection tools have been updated to version 1.1 after feedback from FlashGuru's extendFlash mailing list.
  4. Replies
    5
    Views
    1,287

    Yes, it's done with the JSAPI. The select inside...

    Yes, it's done with the JSAPI. The select inside tool is mainly there for the snap to pixels function, since it allows you to edit pixel art in a natural way.

    I created some new tools for pixel...
  5. Replies
    5
    Views
    1,287

    New selection tools for Flash MX 2004

    Hi all,

    I've created two new selection tools that should prove useful. You can download them here:

    www.5etdemi.com/extend/pxSelectionTools.mxp

    The first tool selects inside figures (unlike...
  6. Replies
    5
    Views
    596

    The actions panel

    The actions panel
  7. Replies
    4
    Views
    369

    Yes, the scrollpane component is problematic with...

    Yes, the scrollpane component is problematic with dynamic text, but it's a generic bug within Flash: dynamic text won't mask. You have to live with it. Embedding fonts is not so bad.
  8. Replies
    10
    Views
    511

    Wait... Shouldn't this: function...

    Wait...

    Shouldn't this:

    function updatePage(newPage) {

    be this:

    function updatePage(newPageNode) {
  9. Paste your new script into a message.

    Paste your new script into a message.
  10. Replies
    10
    Views
    511

    Do a trace(newPageNode) in the updatePage...

    Do a trace(newPageNode) in the updatePage function. What does it say?
  11. delete = remove

    delete = remove
  12. var mc = _root.attachMovie(mcName, "mc", 1); ...

    var mc = _root.attachMovie(mcName, "mc", 1);

    This line is probably causing a conflict. You should delete the var mc = part. When you name a movie clip it becomes an object just like a variable. So...
  13. Replies
    1
    Views
    343

    Try this: ...

    Try this:

    http://www.actionscript.org/tutorials/advanced/Dynamic_masking_using_the_drawing_API/index.shtml
  14. Replies
    4
    Views
    369

    Why don't you use the scrollpane component? If...

    Why don't you use the scrollpane component? If you need easing, FlashLoaded.com has a scrollbar that does that and will scroll pixel fonts as well.
  15. Thread: Probability

    by pmineault
    Replies
    2
    Views
    371

    Look at the following functions in Flash help: ...

    Look at the following functions in Flash help:

    random
    Math.random
    Math.floor
    Math.ceil

    That should do the trick
  16. Replies
    10
    Views
    511

    Here's the problem: imagePath =...

    Here's the problem:

    imagePath = newPageNode.JpgUrl.nodeValue;

    It should be:

    newPageNode.childNodes[0].nodeValue;

    Same with the next line.
  17. Replies
    2
    Views
    779

    Thi stutorial will answer your questions: ...

    Thi stutorial will answer your questions:

    http://www.actionscript.org/tutorials/intermediate/SharedObjects/index.shtml
  18. Replies
    9
    Views
    571

    In any event the portfolio is what's important...

    In any event the portfolio is what's important and I as I said it's very nice.
  19. Yes, it can be done using a method quite similar...

    Yes, it can be done using a method quite similar to the one I showed. At this point you're on your own. Experiment, and good luck!
  20. Replies
    8
    Views
    402

    If there's a big spike on frame 1 that's caused...

    If there's a big spike on frame 1 that's caused by a sound, it's probably because you have chosen to export it for actionscript. hen you do, the sound is loaded even before the rest of the movie. The...
  21. Replies
    9
    Views
    571

    I think in general for a model website the most...

    I think in general for a model website the most important part is certainly the portfolio which in your case is very nice. On the other hand the whole scene with the sun is corny and just doesn't...
  22. Replies
    8
    Views
    402

    As for the 160 kb, it may be that you have sounds...

    As for the 160 kb, it may be that you have sounds or movie clips that are exported on the first frame. When you turn on the bandwidth profiler in the test movie mode, do you have a big spike in the...
  23. A good way to start would be with a single movie...

    A good way to start would be with a single movie clip (let's say a square):



    onClipEvent(load)
    {
    this.onRollover = handleRollOver;
    this.onRollOut = handleRollOut;
    dir = 0;
    function...
  24. Replies
    8
    Views
    402

    If you add: trace(pr); After the var pr...

    If you add:

    trace(pr);

    After the var pr line, what does it say when you test your movie?
  25. Replies
    1
    Views
    504

    Try looking at the tutorials section either here...

    Try looking at the tutorials section either here or at actionscript.org
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center