what im trying to do is have someone type a file name into a field called 
"artistfield"
then on mouseDown check if the file exists using the fileXtra3 command 
fxObj.fx_FileExists("C:\") if the file exist then
it should appear on another field.

supposively my script is supposed to take whats in field "artistfield" and 
put
it into a certain location in this script line-----> 
fxObj.fx_FileExists("C:\Artistfieldcontents") and then the script line 
should run
trying to look for the file. this is stressing me out and no luck at all any 
LINGO pros out there willing to help me out.



on mouseUp
  global gMyArtist, gMyFile
  fxObj = xtra("FileXtra3").new()
  gMyArtist = field "Artistfield"
  gMyFile = fxObj.fx_FileExists("C:\")
  put member("gMyFile").line[1].char[24] = "ArtistField"
  if gMyFile = true then
    put gMyArtist into field "FileLocator"
  end if
end



thanks


JUAN-NYC

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to