A Flash Developer Resource Site

Search:

Type: Posts; User: caroach

Page 1 of 15 1 2 3 4

Search: Search took 0.03 seconds.

  1. It sounds like the object videos_mc or...

    It sounds like the object videos_mc or videos_mc.chili_player doesn't exist on frame one, or where ever you are trying to call it.
  2. If you need to use the timeline for AS, it's good...

    If you need to use the timeline for AS, it's good practice to keep the "meat" of it on the root timeline. As you dig into AS3, you'll find that using a Document Class and a Class pattern will be much...
  3. Replies
    3
    Views
    659

    Do you have a sample of the code you are using to...

    Do you have a sample of the code you are using to download? I had a similar problem and I found that the problem occurs when you define the FileReference variable inside the scope of a function. The...
  4. Replies
    3
    Views
    797

    You could just use TweenLite...

    You could just use TweenLite to tween the frames like:

    btn.addEventListener(MouseEvent.ROLL_OVER, onRollOver);
    btn.addEventListener(MouseEvent.ROLL_OUT, onRollOut);

    function...
  5. Replies
    6
    Views
    530

    You'll have to separate them into 49 different...

    You'll have to separate them into 49 different swfs if you want to load them separately. Is there a reason you need to load one at a time?
  6. Replies
    12
    Views
    2,203

    I would just set it up using children so that...

    I would just set it up using children so that each heading node is a new section in your resume. Like:


    <resume>
    <heading name="Objective">
    <sentence>Lorem ipsum dolor sit...
  7. Replies
    8
    Views
    541

    Are you just randomizing the position of the...

    Are you just randomizing the position of the characters on the stage?
  8. Replies
    4
    Views
    432

    You are referencing an object that doesn't exist...

    You are referencing an object that doesn't exist or hasn't been instantiated. Do you have a bit of the code...or at least the mySetter() function?
  9. Replies
    4
    Views
    758

    You can just load any text as a String and apply...

    You can just load any text as a String and apply your formatting to the textfield. You have to embed the font you want to use. BTW...there's no attached file :)
  10. Replies
    3
    Views
    511

    Do you have the php file for this example. It...

    Do you have the php file for this example. It looks like the AS part is fine, but the data returned has a '%0D%0A' at the beginning. This is a PHP error...possibly a line break in your print/echo...
  11. check the end of this post:...

    check the end of this post:
    http://www.codingforums.com/archive/index.php/t-113282.html
    see if that helps...
  12. try to set a boolean variable to toggle on/off...

    try to set a boolean variable to toggle on/off when it is playing:

    var randomNumber = Math.floor(Math.random()*6)
    var isPlaying = false;

    if (randomNumber == 0 && !isPlaying){
    isPlaying =...
  13. Replies
    1
    Views
    499

    check out this tutorial:...

    check out this tutorial: http://www.gotoandlearn.com/play?id=71
  14. Replies
    3
    Views
    645

    MyCheckBox.selected should return a Boolean. ...

    MyCheckBox.selected should return a Boolean. Just put that in your 'submit form' method.
  15. Replies
    2
    Views
    577

    or if its still inside the same flash document,...

    or if its still inside the same flash document, use:
    Mouse.hide();
    Mouse.show();
  16. Replies
    2
    Views
    577

    stage.addEventListener(Event.MOUSE_LEAVE,...

    stage.addEventListener(Event.MOUSE_LEAVE, mouseLeaveHandler);
  17. Replies
    5
    Views
    634

    The error you are getting isn't actually breaking...

    The error you are getting isn't actually breaking the site...it's just throwing an error because you are receiving a "MOUSE_DOWN" event on two objects at the same time. Both are trying to do what...
  18. Replies
    5
    Views
    634

    what is this: goodYToronto(stage.mouseY);?

    what is this: goodYToronto(stage.mouseY);?
  19. Replies
    6
    Views
    613

    If all of your enemies are in one container...

    If all of your enemies are in one container Sprite (or MovieClip) you could add your mouse event listener to your container. If the container's mouseChildren variable is 'true' then you can get the...
  20. Thread: resize issue

    by caroach
    Replies
    2
    Views
    479

    CS3 I would suggest going for about 1600×1200 and...

    I would suggest going for about 1600×1200 and compress the image to smalles size while of course maintaining the quality. Because it's just one image, the load time shouldn't be terrible. If you...
  21. Replies
    2
    Views
    546

    You can put the video inside a Sprite or...

    You can put the video inside a Sprite or MovieClip container object and add your click event to the object.
  22. Replies
    12
    Views
    994

    From my understanding, you are having issues with...

    From my understanding, you are having issues with not being able to click on the tab when it is overlapping the bar. If you test this code in flash, you will see that there is no issue with the...
  23. Replies
    12
    Views
    994

    Hey tk, I made a little mock using your code,...

    Hey tk,
    I made a little mock using your code, and made some updates. If you just paste the code into flash it will work. Of course you have it in it's own class so it would need some adjustments,...
  24. Replies
    5
    Views
    513

    try nav_mc["thumb"+i].text =...

    try
    nav_mc["thumb"+i].text = bookInput.Book.author.text()[i];
  25. In their flash example, I'm not sure what the...

    In their flash example, I'm not sure what the purpose of the "#" symbol is, but I would guess it's just a reference to know the deep-link is within flash. With SWF Address, you set the browser path...
Results 1 to 25 of 374
Page 1 of 15 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center