A Flash Developer Resource Site

Search:

Type: Posts; User: EvolveDesigns

Page 1 of 20 1 2 3 4

Search: Search took 0.30 seconds.

  1. Replies
    6
    Views
    2,372

    Thank you!

    Thank you!
  2. Replies
    6
    Views
    2,372

    Thanks so much, this part below is a game changer...

    Thanks so much, this part below is a game changer for me:
    function startMove(evt:MouseEvent):void{
    var thing:MovieClip = MovieClip(evt.currentTarget);
    //do stuff with thing. thing will be the...
  3. Replies
    6
    Views
    2,372

    Thanks! I'm going to have to think about your...

    Thanks! I'm going to have to think about your reply for a bit... In particular, the currentTarget property which I've never heard of haha.

    1. sequentially named instances. Put them in an array...
  4. Replies
    6
    Views
    2,372

    Weird for loop issue

    Hey all, I'm new to as3 and I can't understand why this doesn't work. Here's the code:

    for(var i:Number=0;i<def.length;i++)
    {
    this["term" + i].addEventListener(MouseEvent.MOUSE_DOWN,...
  5. When importing gifs, make sure to import > movie...

    When importing gifs, make sure to import > movie > gif rathern than import > image > gif.
  6. Replies
    3
    Views
    620

    Your code is correct and you're right about the +...

    Your code is correct and you're right about the + sign. Is the text field you're loading it in to long enough? Try tracing the same line of code to see if it's being recorded correctly.

    ...
  7. Replies
    3
    Views
    1,235

    yep. It doesn't mean they use external swf files,...

    yep. It doesn't mean they use external swf files, but it does mean that the page content is being loaded as needed. Might be an swf file or many jpg files or mp3 etc.
  8. Replies
    4
    Views
    1,506

    I can't figure what this is trying to do.. if you...

    I can't figure what this is trying to do.. if you could post an example fla i'll take a gander.

    That said I do see room for error in your code.

    this line:

    if(_currentframe > 250 ||...
  9. MX04 Nope it looks fine for me using every browser and...

    Nope it looks fine for me using every browser and version, but I'm on xp so maybe it's a vista thing.
  10. Replies
    1
    Views
    546

    CS3 I suggest this. put your 5 if statements at the...

    I suggest this. put your 5 if statements at the end of the fade out transition, then simply fill the variable on the button.

    So if you have a contact button, in it's code you would just set the...
  11. MX04 Your embedding code, although a bit dated, looks...

    Your embedding code, although a bit dated, looks correct... wish i could offer more!
  12. Replies
    2
    Views
    496

    Your site loads fine for me although it did take...

    Your site loads fine for me although it did take a bit to get the flash loaded, a preloader might be helpful. If you're on a pc hold down the shift key and press 'f5'. this will ignore your browser...
  13. Hey I did some tests for this and I don't think...

    Hey I did some tests for this and I don't think it's possible. Even when using javascript, it only works when not right-clicking the swf itself. You can test this by replacing <body> in your html...
  14. Technically, you can't disable the right-click...

    Technically, you can't disable the right-click menu. I can envision some tricky use of javascript to bring up that sort of prompt upon right-clicking, but i've never played with anything like that....
  15. Replies
    4
    Views
    607

    Just sent it back to you ;) hope that's what...

    Just sent it back to you ;)

    hope that's what you're after!

    Ryan
  16. Replies
    2
    Views
    460

    In simple terms something like this would do...

    In simple terms something like this would do that:


    var date:Date = new Date();
    var month:Number = date.getMonth()+ 1;
    var day:Number = date.getUTCDate();

    trace(month + " " + day);
    ...
  17. hmm, I would think that would work.. try...

    hmm, I would think that would work.. try changing:


    mc.onRelease = function ()

    to


    this["picture"+i].onRelease = function()
  18. Replies
    1
    Views
    418

    looks like you're using the video component....

    looks like you're using the video component. select the video on the stage in flash, then on the properties bar click the 'parameters' tab. You'll see a few settings for the player including whether...
  19. Replies
    4
    Views
    607

    email to: ryanthomson at gmail dot com and I see...

    email to: ryanthomson at gmail dot com and I see what I can do ;)
  20. Replies
    2
    Views
    865

    Maybe you could do that using Zinc to create your...

    Maybe you could do that using Zinc to create your exe, but straight flash can't do that. The closest thing I can think of is the FileReference class which would at least open a browse window which...
  21. Replies
    2
    Views
    464

    Sure. You would make a dynamic text field, give...

    Sure. You would make a dynamic text field, give it an instance name (example: page). Now on each frame in your timeline put a bit of code like:
    page.text = _currentframe;

    or something like this:...
  22. Replies
    1
    Views
    504

    It can't be done. That code has lots of html/css...

    It can't be done. That code has lots of html/css along with some flash. You can't display html in flash (cept for a couple formating tags like bold and italic)
  23. Should this be the foundation? No. Can it be?...

    Should this be the foundation? No. Can it be? Sure!

    My favourite part of flash is all the vector which means tiny files. You can definitely import your images from Photoshop, but then you're going...
  24. Replies
    1
    Views
    2,063

    "flash 8 movie clip" do you mean a flash movie...

    "flash 8 movie clip"

    do you mean a flash movie you're trying to load? (file.swf) or an actual movieclip?
  25. Replies
    2
    Views
    444

    Hi! just a heads up, you'll get more feedback...

    Hi!

    just a heads up, you'll get more feedback if you post in the actionscript 3 section. ;)
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