|
-
Step-by-step to remove seek triangle
Hi TheJester12,
I had the same problem, and this posting helped me fix it. Thanks flashpipe1!!
Here is the step-by-step way to fix:
If you need help using the custom components to begin with, check out this link: http://backyardgeek.blogspot.com/200...rface-for.html
Then...
1. In your project, create a new movie clip.
2. Call the movie clip "seekbar_container"
3. Highlight your existing seek bar component on the stage and press "ctrl" and "x" to cut it into the clipboard.
4. Go into the seekbar_container mc and paste the seek bar in there ("ctrl" and "v").
5. On the main timline, create a new layer called "seekbar_container", then drag the "seekbar_container" mc onto it.
6. Give that seekbar container mc an instance name of "seekbar_container" in the properties panel.
7. Go to your actionscripting where you tell it the names of your components, which looks like this:
Code:
myvideo.playPauseButton = playpause;
myvideo.seekBar = seekvideo;
myvideo.volumeBar = volslide;
and change it to this:
Code:
myvideo.playPauseButton = playpause;
myvideo.seekBar = seekvideo_container.seekvideo;
myvideo.volumeBar = volslide;
Now the seek bar indicator arrow will go away when you navigate to another section of your project.
Hope that helps,
- Kent
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|