<HTML><FONT FACE=arial,helvetica><BODY BGCOLOR="#3dffff"><FONT  SIZE=2>In a message dated 8/11/02 1:01:04 PM Eastern Daylight Time, use-revolution-request@lists.runrev.com writes:
<BR>
<BR>
<BR><BLOCKQUOTE TYPE=CITE style="BORDER-LEFT: #0000ff 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px; PADDING-LEFT: 5px">From: "Ken Ray" <kray@sonsothunder.com>
<BR>To: <use-revolution@lists.runrev.com>
<BR>Subject: Re: Can I automate the process of getting New Reference Controls?
<BR>Date: Sun, 11 Aug 2002 08:50:27 -0600
<BR>Reply-To: use-revolution@lists.runrev.com
<BR>
<BR>This is a multi-part message in MIME format.
<BR>
<BR>------=_NextPart_000_004D_01C24114.2408C0E0
<BR>Content-Type: text/plain;
<BR>    charset="iso-8859-1"
<BR>Content-Transfer-Encoding: quoted-printable
<BR>
<BR>Mike,
<BR>
<BR>Are you bringing in one player per music file? You don't need to do that =
<BR>(unless that's how you want it). You can have one Player control and =
<BR>then point the control to the music file by setting its 'filename' =
<BR>property.
<BR>
<BR>Hope this helps,
<BR>
<BR>Ken Ray
<BR>Sons of Thunder Software
<BR></FONT><FONT  COLOR="#000000" SIZE=3 FAMILY="SANSSERIF" FACE="Arial" LANG="0"></BLOCKQUOTE>
<BR></FONT><FONT  COLOR="#000000" SIZE=2 FAMILY="SANSSERIF" FACE="Arial" LANG="0">
<BR>Would I have to supply a filepath for each title? Up to this point, I have been working withing my own little stack world, and have not ventured out much into looking for files in the rest of the hard drive. Below is the script of the field that contains all of the music titles in the music folder. This works fine to simply play songs individually(with a player for each). Of course, if nothing is screwing up I fix it with this playlist thing. I'm wondering how I could incorporate changing to the option you mention from this.... then again, I have been looking at this screen for too long. Maybe an Old Nick is in order.
<BR>
<BR>on mouseUp
<BR>  global muse --keeps me from specifying each title
<BR>  if muse is not empty then --gets an error without this if nothing is in muse
<BR>  stop player muse --stops current player
<BR>  set the currentTime of player muse to 0 --resets the player to the beginning
<BR>end if
<BR>get the value of the clickLine --song title
<BR>  put it into muse --puts the player name(song title) into muse
<BR>  put it into field"currentplay" --just a field with current title playing
<BR>  start player muse --plays new song
<BR>end mouseUp
<BR>
<BR> Thanks. I am going to play with your idea a while.
<BR>mike</FONT></HTML>