Code: Select all
delete line gline of URL ("file:" & $USERPROFILE & "\Documents\AllDescriptions.txt")
Is there a way to do thatbutton "Delete": execution error at line 6 (Chunk: can't find object), char 4

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
delete line gline of URL ("file:" & $USERPROFILE & "\Documents\AllDescriptions.txt")
Is there a way to do thatbutton "Delete": execution error at line 6 (Chunk: can't find object), char 4
Code: Select all
put URL ("file:" & $USERPROFILE & "/Documents/AllDescriptions.txt") into tFile
delete line gline of tFile
put tFile into URL ("file:" & $USERPROFILE & "/Documents/AllDescriptions.txt")