Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Benjer

    load movie problem

    bizarre, u can send me the .fla if you like: benjer@mac.com
  2. Benjer

    load movie problem

    shouldn't be a problem. In your case probably best to load the movide into target MC "loadClip" for example: loadMovie("yourFile.swf", "_root.loadClip"); so yourFile is in the same directory as your flash movie.
  3. Benjer

    Scrolling graphic in flash 4

    its not 2 movies. you have your movie where the image is tweened. the 2 movies i explained make it move forward/backward. well you could script it, just not sure how much control flash 4 gives you (its been a while). here's code for a button which will show/hide a tweened graphic, using code as...
  4. Benjer

    On release Button problem..

    ok, i think i get it.... use blank button (just put a graphic the same size if image in the hit area). In your buttonMC have the button the complete length of the movie. Have a stop() on frame 1. label frame 2 "show". Tween your graphic from frame 2 to 12 - using alpha etc. Stop on...
  5. Benjer

    Scrolling graphic in flash 4

    sorry, had a few probs with browser then...... can u edit or delete posts...
  6. Benjer

    Scrolling graphic in flash 4

    Scratching head Flash 4 mmmm. can you use 2 movie clips for the movement called play & reverse. stop() on frame 1. Frame 2 telltarget IMAGE >nextFrame()/prevFrame() frame 3 gotoandPlay(2). on rollover(forward) telltarget play>gotoandPlay(2). on Rollout(forward) telltarget play>gotoandStop(1)...
  7. Benjer

    Scrolling graphic in flash 4

    Scratching head Flash 4 mmmm. can you use 2 movie clips called play & reverse. stop() on frame 1. Frame 2 telltarget >nextFrame()/prevFrame() frame 3 gotoandPlay(2). on press telltarget play>gotoandPlay(2). hope that makes sense or works in 4.......
  8. Benjer

    Scrolling graphic in flash 4

    Scratching head Flash 4 mmmm. can you use 2 movie clips called play & reverse. stop() on frame 1. Frame 2 telltarget >nextFrame()/prevFrame() frame 3 gotoandPlay(1). on press telltarget play>gotoandPlay(2). hope that makes sense or works in 4.......
  9. Benjer

    Preloader won't play

    A word of warning: if (_framesloaded>=_totalframes) will sometimes make the condition true, when you first start the preload totalframes will = 0 as nothing is loaded. use. if (_framesloaded>=_totalframes && _totalframes>1) { why not use getBytesLoaded for a more accurate preloader? BenG
  10. Benjer

    Action Script to Move Objects

    Nice code. The link does work - wondering wether it wqsa published in MX? Ben
  11. Benjer

    preload images on mouse click?

    Hello, I've had to strip out all the images on our 'work' section as they were making the page weigh in close to 1MB! I've been working on this Javascript <script language=&quot;JavaScript&quot;> function flip(name,src) { if (navigator.appName == &quot;Microsoft Internet Explorer&quot;) {...
  12. Benjer

    onFocus error

    Hi, thanks. I ended up using a similar test: function FocusMe1() { if(!window.window1){ } else if(window1.closed){ } else{setTimeout(&quot;window1.focus()&quot;,10); } } still get a strange debug error on pc... but no actual listing in the debugger.
  13. Benjer

    onFocus error

    Hi, Firstly hello as this is my first post. I've just started using javascript and have built a pop up window test for two windows. So have code on 3 pages. The 1st pop up is flash and u click the far right button and then more>> to get the next pop up. Hopefully my flash detect should work, so...

Part and Inventory Search

Back
Top