<HTML><FONT FACE=arial,helvetica><BODY BGCOLOR="#3dffff"><FONT  SIZE=2>In a message dated 8/12/02 1:36:16 AM 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">Message: 6
<BR>Date: Mon, 12 Aug 2002 11:26:26 +1000
<BR>Subject: Re: set player filename (was:use-revolution digest, Vol 1 #597 - 7 msgs)
<BR>From: Sarah <sarahr@genesearch.com.au>
<BR>To: use-revolution@lists.runrev.com
<BR>Reply-To: use-revolution@lists.runrev.com
<BR>
<BR>In case some other script has changed the default folder, or the 
<BR>application has been closed & opened, I would store the path to your 
<BR>audio files folder in a custom property and not rely on the default 
<BR>folder.
<BR>
<BR>To modify Kurt's scripts slightly:
<BR>
<BR>on mouseup
<BR>   answer folder "Please select a folder containing audio clips."
<BR>   set the cAudioFolderPath of this stack to it
<BR>   set the defaultfolder to it
<BR>   put the files into fld "playList"
<BR>end mouseup
<BR>
<BR>on mouseup
<BR>   put the cAudioFolderPath of this stack into folderPath
<BR>   put the selectedText of me into audioToPlay
<BR>   set the currentTime of player "audioPlayer" to 0
<BR>   set the filename of player "audioPlayer" to folderPath & "/" & 
<BR>audioToPlay
<BR>   start player "audioPlayer"
<BR>end mouseup
<BR>
<BR>This way you give the complete file path to your player every time, 
<BR>regardless of the default folder setting.
<BR>
<BR>Sarah
<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>Many thanks to you and Kurt! My cpu thanks you as well as it has lost 70 headaches in the form of individual players. One could build a sandwich while waiting for the invisible objects to show up.I was confused as to player filenames and player names. I had thought them to be one and the same. I'm sorry to inject beginner questions into this forum but.........such am I.
<BR>mike</FONT></HTML>