A Flash Developer Resource Site

Search:

Type: Posts; User: marshallhansen

Page 1 of 7 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    3
    Views
    1,332

    Just in case this happens to someone else....In...

    Just in case this happens to someone else....In the library I had a Media Display that must have some how been interfering with the other stuff some how. As soon as I deleted it, problem solved. Go...
  2. Replies
    3
    Views
    1,332

    I'm still looking for any ideas on this. ...

    I'm still looking for any ideas on this.

    Thanks.
  3. Replies
    3
    Views
    1,332

    [RESOLVED] scrubber not working

    I have a video player and the playhead scrubber is not working properly.

    This is a player that I am reusing from a previous project. Everything worked perfectly before.

    When the video is...
  4. Hm, you may have to use loadVars or something...

    Hm, you may have to use loadVars or something like that. I'm sorry I can't spend more time, but I'm under the gun on a project.

    I did a quick search and found this person is trying to do exactly...
  5. Replies
    4
    Views
    594

    Yes, you can still send variables back and forth,...

    Yes, you can still send variables back and forth, but you have to be careful about your paths. Just remember that even though the external swf, when it is on it's own, has a different root than...
  6. Replies
    6
    Views
    10,700

    I just remebered...You have to put your closing...

    I just remebered...You have to put your closing "X" in the flash. Then you can stop the movie/sounds whatever and call your javascript function to hide the div.
  7. Replies
    6
    Views
    10,700

    I did this exact thing about a year ago and for...

    I did this exact thing about a year ago and for the life of me I can't remember off the top of my head. I will look around and try and remember what site it was for then try and find the files. If...
  8. Do you mean the link that brought you to the page...

    Do you mean the link that brought you to the page with the flash on it? If so, if the link looks something like this...www.myurl.com/index.htm?xLoc=100&yLoc=200

    Then inside you movie you can call...
  9. Replies
    4
    Views
    594

    Another option would be to make the clip with all...

    Another option would be to make the clip with all the images a sperate swf. Once the main movie is loaded start loading the external swf where you want it, but have it be invisible, with a...
  10. I finally found a solution. I hope this is...

    I finally found a solution. I hope this is helpfull to others. I did have to use the onEnterFrame but oh well.

    onClipEvent(load){
    this._visible = false;
    this.onEnterFrame = function(){...
  11. I'm not horribly keen to have an onenterFrame...

    I'm not horribly keen to have an onenterFrame continually operating. I found something called "watch" that seems as though it might work but i'm still fooling around with it. Do you know anything...
  12. Thank you for your replies. Hum, I did try...

    Thank you for your replies. Hum, I did try pretty much what you suggested and I could see that scroll bar was attached to the box, but it still didn't show up...

    I like Aldarn's suggestion, I...
  13. [RESOLVED] hide scroll buttons when not needed

    I have a dynamic text field that displays a variety of different content. Some of it fills the box and beyond and some doesn't. I created a couple buttons to scroll the box when the content is more...
  14. bump

    bump
  15. [F8] input text/dynamic text general question

    I have both input and dynamic text fields. They have both an instance name box and var box. I never used to use the instance name box but have found recently that i have trouble if i don't. ...
  16. bump

    bump
  17. [F8] attached clips not present when duplicated

    I've got a clip on my stage(mcCol1). I attach 50 clips from the library inside mcCol1. Later I duplicate mcCol1, but the attached clips are not present in the duplicate. I know that the duplicate...
  18. Replies
    6
    Views
    533

    ah...i see. I thought you were rotating like a...

    ah...i see. I thought you were rotating like a record player, but now I understand. You should be able to track what frame you are on then if you name your MCs in some corosponding way.

    If you...
  19. Anyone please?

    Anyone please?
  20. Replies
    6
    Views
    533

    I would put the code on the +/- button. I...

    I would put the code on the +/- button.

    I don't see why you have multiple frames just for rotating the object. This can be done with code also. Off the top of my head I don't know what the...
  21. Replies
    6
    Views
    533

    Why not scale down the image for the main image. ...

    Why not scale down the image for the main image. Then when it is zoomed in on it will be the regular size image and not pixilated.
  22. Replies
    2
    Views
    471

    I don't see anywhere where you have cleared your...

    I don't see anywhere where you have cleared your interval. You also did not name your interval.

    yourInterval = setInterval(counDown,1000);

    if (sec == 0){
    clearInterval(yourInterval);
  23. Replies
    10
    Views
    599

    Perhaps if you post your fla I could take a look.

    Perhaps if you post your fla I could take a look.
  24. Replies
    10
    Views
    599

    Say you remove "word6"(7th word in the array)...

    Say you remove "word6"(7th word in the array) from the array, now "word7" is the 7th word in the array. I would say, do not delete from the array.Create another array that holds the "used" words. ...
  25. Replies
    1
    Views
    453

    Just add onClipEvent(load){ this._visible =...

    Just add

    onClipEvent(load){
    this._visible = 0;
    }

    to the bg clip
Results 1 to 25 of 156
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center