1/14/2011 4:57:47 PM
Title:
looping in flash
im working on a project that teaches a person how to play guitar. is it possible to have the user be able to loop any portion of the video that they are having trouble with? lets say they cant figure out what is being played from 3 seconds to 11 seconds, is there a way to have them loop that section only?
Kiney
Points: 600
Posts:0
1/15/2011 5:51:46 AM
you can seek the video being played to the time required and create a loop.
it could be something like this
you can keep checking the time of video in timer function
function secTimer():void{
if(netstream.time==11000){
netstream.seek(3000)
}
}