alex OF DEATH Posted December 14, 2006 Share Posted December 14, 2006 Okay, so I have a little problem. I'm trying to get the name of a file that a user chooses with a Fileopendialog. I had a GUICtrlRead ( Fileopendialog ) but that doesn't seem to work. Right now I have this: Func OpenSong() $SongOpenText = FileOpenDialog ( "Select Sone Please", "C;", "Mp3 (*.Mp3)" , 4 ) $Text = GuictrlRead ( $songOpenText ) $Name = FileGetShortName ( "" & GUICtrlRead ( $text ) , 1 ) SoundPlay ( $SongOpenText ) GUICtrlSetData ( $playlist, "" & $name ) EndFunc This does not seem to work. If you need more information or the whole script posted, tell me :\ Link to comment Share on other sites More sharing options...
NELyon Posted December 14, 2006 Share Posted December 14, 2006 FileOpenDialog doesen't return a GUI Control Value. It returns the File opened like this: $File = FileOpenDialog ( "Select Sone Please", "C:", "Mp3 (*.Mp3)" , 4 ) $Text = $File $Name = FileGetShortName ($text) SoundPlay ( $File ) GUICtrlSetData ( $playlist, "" & $name ) Link to comment Share on other sites More sharing options...
alex OF DEATH Posted December 14, 2006 Author Share Posted December 14, 2006 Har, it works. Thanks. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now