A Flash Developer Resource Site

Search:

Type: Posts; User: phil'ter design

Page 1 of 20 1 2 3 4

Search: Search took 0.26 seconds.

  1. Just make sure your class extends...

    Just make sure your class extends EventDispatcher, then you can dispatch events like:

    dispatchEvent(new Event("someEvent"));

    Or instead of using Event, you can create your own custom event and...
  2. As mentioned in the response above way back in...

    As mentioned in the response above way back in 2001, this is a security feature and prevents a swf from messing with your printer big time.

    However, if you just need to print simple text, Zinc...
  3. Flash8 It can only be done from Flash directly if you're...

    It can only be done from Flash directly if you're using AIR. Otherwise, within the browser, you need a server script like php.
  4. for (i=1; i

    for (i=1; i<150; i++) {
    this["ovnr"+i].text = myLV["nr"+i];
    }
  5. Replies
    10
    Views
    692

    Store your items in an array and splice values...

    Store your items in an array and splice values out of that array as they are used, so:

    items = [];
    for each (var item in xml.slide) {
    items.push(item);
    }

    var i:uint =...
  6. hp3, That's a good suggestion. Actually, on a...

    hp3,

    That's a good suggestion. Actually, on a different project, we tried that exact thing with a perl script so it wouldn't cache the xml that was being sent from the server. However, it seemed...
  7. Thanks for taking the time to reply hp3. What...

    Thanks for taking the time to reply hp3.

    What you say does sound logical...i guess when the Flash player loads the mp3, it HAS to be downloaded in order for the user to listen to it.

    I wonder...
  8. Loaded mp3's supposed to be downloaded to user????

    I got inside information that hp3 might be able to help me with this, so here goes...(and by all means, anyone else if possible).

    In the flash docs, it says that when using loadSound to load...
  9. Loaded MP3's downloading onto system?????

    According to my understanding of dynamically loading an mp3 into Flash using loadSound(), and according to the Flash MX docs, the mp3 should NOT be downloaded onto the user's system. This is from...
  10. From Macromedia: "If you don't have...

    From Macromedia:

    "If you don't have administrator access to your Windows NT- or Windows 2000-equipped computer, you may not be able to install the Flash Player successfully. Permissions can be...
  11. Replies
    3
    Views
    1,188

    Thanks Luke, That's exactly what i was looking...

    Thanks Luke,

    That's exactly what i was looking for.
  12. Replies
    3
    Views
    1,188

    I guess this question is specifically for...

    I guess this question is specifically for Vaykent, but if anyone else knows, please respond...

    Do you have a link to your XML parsing speed test between Flash 5 and Flash MX available? If so, I...
  13. Replies
    0
    Views
    286

    Was anyone here at FlashForward, and if so, would...

    Was anyone here at FlashForward, and if so, would you be able to give those of us who couldn't go a head's up as to some of the sessions. I'm eager to hear what went on, but it seems as though it...
  14. Replies
    1
    Views
    440

    From what I know, SharedObjects just create a...

    From what I know, SharedObjects just create a file with extension ".sol" on the user's machine. This file can contain any object structure. So strictly speaking, no, you can't create a file with a...
  15. If you are using embedded fonts, the tags will...

    If you are using embedded fonts, the tags will not work unless you insert another text field into your Flash movie (maybe hidden) that has the bold or italics font set included.
  16. Replies
    4
    Views
    784

    Anyone at all? Pleeeease?

    Anyone at all? Pleeeease?
  17. Replies
    4
    Views
    784

    Was anyone at the Flash in the Can Festival in...

    Was anyone at the Flash in the Can Festival in Toronto? If so, can you post who won the Flash in the Can awards...just curious. Also, how was the festival overall? Would've loved to have been...
  18. You could try using wddx. I believe there is a...

    You could try using wddx. I believe there is a serializer/deserializer for php. I've only done it with ColdFusion myself.

    Basically, with wddx, you can transfer an object structure, an array, or...
  19. Replies
    12
    Views
    889

    That line of code just sets the visibility of the...

    That line of code just sets the visibility of the initial nested movie clip to false (the one i'm using to duplicate). If you omit this line in this example, it won't make a difference because the...
  20. Replies
    12
    Views
    889

    Sure... Here's the code: ...

    Sure...

    Here's the code:



    myPane.setScrollContent("clipSet");
    var clipSet = myPane.getScrollContent();

    for (i=0; i<20; i++) {
  21. Replies
    12
    Views
    889

    I posted my source about 4 posts above.

    I posted my source about 4 posts above.
  22. Replies
    12
    Views
    889

    nig just helped me out with this one yesterday. ...

    nig just helped me out with this one yesterday. Try this:

    http://www.philterdesign.com/fla/scrollpane2.zip
  23. Replies
    12
    Views
    751

    nig, Man, i wish i could just hire you to...

    nig,

    Man, i wish i could just hire you to stand beside me and stare at my computer screen while i work...;)

    Thanks for the embed fonts tip. Is not embedding fonts an issue with all built in...
  24. Replies
    12
    Views
    751

    nig, I'm sorry to keep troubling you, but i...

    nig,

    I'm sorry to keep troubling you, but i have one more question. The reason why i asked the first question was because I have been trying to create a set of movie clips that is being duped...
  25. Replies
    12
    Views
    751

    nig, I'm sure i'm not the only one who...

    nig,

    I'm sure i'm not the only one who appreciates people like you taking the time to help...especially with all of the added functionality that i'm trying to wrap my head around.

    Thanks for...
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