A Flash Developer Resource Site

Search:

Type: Posts; User: hijkee

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    587

    Have a look at this example. It should explain...

    Have a look at this example. It should explain what your looking for:3d menu
  2. Replies
    5
    Views
    443

    solved!

    Thank you so much Moagrius for picking up on my errors! Your solution works perfectly :-)
  3. Replies
    2
    Views
    493

    Enable HTML in the dynamic text field: ...

    Enable HTML in the dynamic text field:
    TextField.htmlText

    then in the urls.txt file simply add common HTML code
    <html><A href="www.lala.com">www.lala.com</A>,<A...
  4. Replies
    6
    Views
    646

    The forum is the best educator ;-)

    The forum is the best educator ;-)
  5. Replies
    5
    Views
    443

    This is the file attached. :p

    This is the file attached. :p
  6. Replies
    6
    Views
    646

    on an empty keyframe in the movie that does not...

    on an empty keyframe in the movie that does not contain actionscript add this:
    #include "your_AS_FileName.as"

    Keep the .as file and the .swf in the same directory. hope this helps.
  7. Replies
    5
    Views
    443

    thanks for the quick reply... unfortunatly. that...

    thanks for the quick reply... unfortunatly. that didn't do it. If you got a minute I've attached a simple example. Thanks again :)
    external_color.zip
  8. Replies
    5
    Views
    443

    Changing color through an external file??

    I am trying to set the color of a given MC by getting an RGB variable defined in an external .txt file. The RBG variable loads (verified through trace) but it does not update the color. IN this...
  9. Replies
    6
    Views
    581

    It is possible with Flash 7. Here's a great...

    It is possible with Flash 7.

    Here's a great tutorial on how to do this:

    Right Click Tutorial

    ;)
  10. Replies
    2
    Views
    470

    'Sigh'.... why do I kill myself over these little...

    'Sigh'.... why do I kill myself over these little things... Thanks for pointing out the error of my ways :D
  11. Replies
    2
    Views
    412

    pellepiano has explained this in this...

    pellepiano has explained this in this post:dynamic gallery It should be an excellent start for you. It can be a fairly complicated .fla if your not use to actionScript.
    :)
  12. Replies
    5
    Views
    785

    wow... I am not sure how you could edit the...

    wow... I am not sure how you could edit the component to add actionScript to the different button states. The only way that I know to have both the graphical effect you want and all the...
  13. Replies
    2
    Views
    470

    Quick syntax question

    if I am loading external data how would i write

    _root.viewer["info" + i].text = this.["info" + i];

    Flash does not like the
    this.["info" + i];

    Expected a field name after '.' operator.
    ...
  14. Replies
    5
    Views
    785

    Well... You wouldn't use the component. You would...

    Well... You wouldn't use the component. You would create your button like I did in the example. You would tell flash to do whatever it was that you want the button to do in the MC.onRelease...
  15. Replies
    5
    Views
    785

    You could just do it with an onRelease function:...

    You could just do it with an onRelease function:
    on frame 1 (your buttons instance name is up)

    stop()
    up.onRelease = function() {
    play()
    }

    on frame 2 (your buttons instance name is down)
  16. Replies
    3
    Views
    455

    Whew... Thanks guys.. I think I need to get some...

    Whew... Thanks guys.. I think I need to get some sleep.. I'm getting sloopy ;)
  17. Replies
    6
    Views
    456

    There are Two MC's that make up this button. The...

    There are Two MC's that make up this button. The Black one and the Blue one. The black one is under the Blue one. The blue one is just fading its _alpha on rollover. This is done with actionScript....
  18. Replies
    3
    Views
    455

    Syntax Error on: _root.My_MC[i]_y ??

    I'm just trying to move 10 MC's _y by 10 px. I thought I could just use this:


    for (var i = 1; i < 11; ++i) {
    _root.My_MC[i]_y = i * 10
    }

    Where I have one My_MC1 on the Stage

    any ideas...
  19. Replies
    2
    Views
    316

    Unbelievable... I was working with a for loop and...

    Unbelievable... I was working with a for loop and could not get it to work.... I forgot to use quotes on bx.. LOL

    Thanks for the response :D
  20. Replies
    2
    Views
    316

    color change on multiple MC's

    Hi!
    Instead of:

    myColor = Math.round( Math.random()*0xFFFFFF );
    myColoredObject = new Color (_root.bx1);
    myColoredObject.setRGB(myColor);
    repeated 100 times for the 100 MC's
    _root.bx1,...
  21. Replies
    1
    Views
    797

    bump

    bump
  22. Replies
    1
    Views
    797

    Grab / Grabbing Cursor?

    OK... This should be an easy one. How do I code for a grab and grabbing cursor? Is this available in MX?

    Thanks
  23. Replies
    7
    Views
    709

    Im not sure if it's the standard practice or not....

    Im not sure if it's the standard practice or not. I think working with the code gives you more flexability than working with MC's on the stage. So, I am working towards everything being created...
  24. Replies
    3
    Views
    379

    Thanks You Two! :) The floor Method seems to...

    Thanks You Two! :)
    The floor Method seems to work very well.

    Problem solved :p
  25. Replies
    3
    Views
    379

    using random, BUT excluding 0??

    I'm loading a random .jpg. All works well, but I don't have a 0.jpg. Other code within the file will not permit me to create a 0.jpg. Can I exclude the number 0 somehow?

    Here's what I'm using for...
Results 1 to 25 of 65
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center