A Flash Developer Resource Site

Search:

Type: Posts; User: Beathoven

Page 1 of 14 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    18,183

    Mac users: Need quick test on website.

    I am working on a website at the moment and some Mac testers are reporting major issues.

    Testing address is:

    http://www.oilforce.com/?home

    Basicly I need these things checked:

    -...
  2. Replies
    3
    Views
    574

    It's a blogspot feed. I weeded everything out of...

    It's a blogspot feed. I weeded everything out of the feed. All I get is the latest post. There's nothing special about it. My problem is really htmlText is not displaying images properly. It just...
  3. Replies
    3
    Views
    574

    Best way to display HTML?

    Hi all,

    I'm having trouble displaying HTML formatted data from a RSS feed. My problem is I don't know how the data is gonna come in. I made a custom scrollbox component but like everyone else when...
  4. Replies
    2
    Views
    928

    Show us the part of your code that loads and...

    Show us the part of your code that loads and unloads the 'pageflip'
  5. Replies
    8
    Views
    973

    As he said, just make the dynamic text not...

    As he said, just make the dynamic text not selectable.

    subTxt.selectable = false;

    And when you add the tab, to get the hand cursor:

    myTab.useHandCursor = true;
    myTab.buttonMode = true;...
  6. tf.antiAliasType = AntiAliasType.ADVANCED;...

    tf.antiAliasType = AntiAliasType.ADVANCED;
    tf.thickness = 200;

    Try that see if it works for you.
  7. Replies
    3
    Views
    959

    You're welcome. Mark the thread resolved please...

    You're welcome. Mark the thread resolved please (Top Right - Thread Tools - Mark Thread 'Resolved')
  8. Replies
    3
    Views
    959

    On last frame of your child animations put...

    On last frame of your child animations put something like this:


    dispatchEvent(new Event("doneWalking", true));

    And then on your character just go:

    ...
  9. Replies
    3
    Views
    600

    The error your getting is saying that those...

    The error your getting is saying that those instances don't exist at that point.

    Look at the picture I have attached here, make sure that you have that done.

    If you do, make sure you are adding...
  10. I am actually not no. I just started coding...

    I am actually not no. I just started coding again. Just happened to come here around 2002 looking for help in AS2. Didn't make websites for a couple years then started again a year ago.
  11. Replies
    28
    Views
    4,980

    Your friend is a retard. If you make something...

    Your friend is a retard.

    If you make something 'invisible' it is still in memory and being processed by 'flash'. Where as removing the movie clip and assigning a null value to the variable...
  12. Replies
    5
    Views
    1,841

    Just pull the cycleOpponent() out of the switch...

    Just pull the cycleOpponent() out of the switch statement and put it at the end.
  13. Replies
    28
    Views
    4,980

    To simplify it: function...

    To simplify it:

    function closeThis(e:MouseEvent):void
    {
    removeChild(e.target.parent);
    e.target.alapvideo.stop(); // That will work only if all video instances within your mcboxvideos are...
  14. Replies
    28
    Views
    4,980

    This guy is right too. My code was meant to be...

    This guy is right too. My code was meant to be done inside an instance of a class that has a parent. However, if you ever end up coding without the timeline at some point and you need to delete and...
  15. Replies
    28
    Views
    4,980

    Alright I fixed your problem. It was stupid...

    Alright I fixed your problem.

    It was stupid too.

    this line:

    videobox1_mc.play(); //so it fades in

    needs to read this:
  16. function xBtnPosition(btnName: DisplayObject,...

    function xBtnPosition(btnName: DisplayObject, btnXpercentage: Number):String
  17. Replies
    28
    Views
    4,980

    Well I'm a bit lost here in your project buddy. ...

    Well I'm a bit lost here in your project buddy.

    The whole timeline thing is making it a sh*tshow.

    For all I know the object is added but then everything else is overlapping it.

    Try adding a...
  18. Replies
    28
    Views
    4,980

    EDITED: Answered my own question.

    EDITED: Answered my own question.
  19. Replies
    28
    Views
    4,980

    Also make sure you have a classpath defined for...

    Also make sure you have a classpath defined for your class.

    To do that go to Edit -> Preferences

    Then select actionscript in the list on the left

    Then press Actionscript 3.0 button

    Then...
  20. Replies
    28
    Views
    4,980

    I bit the bullet and downloaded your zip. Your...

    I bit the bullet and downloaded your zip. Your problem is simple:

    Go in the library, go to mcboxvideo1. Right Click > Properties.

    For class type in:

    mcboxvideo1

    For base class type in:
  21. Replies
    28
    Views
    4,980

    So this 'mcvideobox' is it a MovieClip you made...

    So this 'mcvideobox' is it a MovieClip you made in flash and then have it exported for actionscript in the library or it's a class?
  22. Replies
    28
    Views
    4,980

    Just make sure your 'dragDrop' base class extends...

    Just make sure your 'dragDrop' base class extends 'MovieClip' so the objects have all the same properties as a MovieClip + the added functionality of your new class.
  23. Replies
    28
    Views
    4,980

    var videobox1:MovieClip = new mcboxvideo1(); ...

    var videobox1:MovieClip = new mcboxvideo1();

    Try that.
  24. Replies
    28
    Views
    4,980

    Alright to steer you in the right direction: ...

    Alright to steer you in the right direction:


    addChild(myMovieClip);

    myMovieClip.addEventListener("closeMe", closeMC);

    function closeMC(e:Event):void
    {
    removeChild(myMovieClip);
  25. Replies
    28
    Views
    4,980

    Code please.

    Code please.
Results 1 to 25 of 343
Page 1 of 14 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center