Add hint (like OnMouseMove) to Play, Pause and Stop buttons in flash player(player_mp3_maxi) -


i using "http://flash-mp3-player.net/players/maxi/" flash player in html page. , there have source code("https://github.com/neolao/mp3-player").

it works me good.

but, want add hint (like onmousemove) play, pause , stop buttons.

does have idea?

you can create hint each button (i assume text field text). make invisible @ start. in each button add code like:

on (rollover) {        //show hint;  }  on (rollout) {        //hide hint }  

another way make movieclip called hint_mc. create 4 keyframes, put stop() action in of them. leave first frame blank. create hints on frame 2,3,4, 1 each. add code button like:

on (rollover) {     hint_mc.gotoandplay(framenummer);  }  on (rollout) {     hint_mc.gotoandplay(0);  }  

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -