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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie needs audio help 1

Status
Not open for further replies.

fjp476

Technical User
Dec 28, 2001
113
US
Hi and thanks in advance for any help. I am making a presentation where I need for each screen an audio clip to play once and then go to the next marker wher there will be an advance button that the enduser will need to push to advance to the next screen where they will repeat the process and so forth. Right now I have this script on frame 1:
on exitFrame me
puppetsound 1, "myaudioname"
end

On frame 6 I have this script:
on exitFrame me
go to the Frame
if soundBusy(1) = 0 then go to "next"
end

On frame 20 is my marker named "next" and on frame 25 I have this script:
on exitFrame me
go to the frame
end

When I test it the playhead stays at 6 but the sound clip starts repeating a small bit of the clip over and over. Any help will be greatly appreciated. Thanks again. Cheers~Frank
 
On frame 61 try rewriting it this way:
on exitFrame me
if soundBusy(1) = 0 then go to "next"
go to the Frame
end

Mayuresh
 
Hi Mayuresh, me again. It's still doing it. Do I need to put my sound(s) in a list or something? Or are there any other scripts that I need in my movie? Any suggestions will once again be greatly appreciated.
Cheers~Frank
 
I changed the audio file formats to mp3 and it works fine now. Thanks again Mayuresh. :) Cheers~Frank
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top