Hi, Does someone can explain me with the following code raises a runtime error ?
Thanks for any help. Joseph jaracic - Wed Jun 04 08:59:57 EDT 2014 |
Re: decodeResourceURL runtime error The string in variable "theURL" is in the format of a "URL", not of a "ResourceURL". Run the following code from a folder to see what I mean:
So in your code, match up "getURL()" with "decodeURL()", and match up "getResourceURL()" with "decodeResourceURL()". What is the real difference? I have no idea at all. -Louie And it seems surround your "decode" statement wiith noError() and lastError():
|
Re: decodeResourceURL runtime error llandale - Wed Jun 04 09:38:51 EDT 2014 The string in variable "theURL" is in the format of a "URL", not of a "ResourceURL". Run the following code from a folder to see what I mean:
So in your code, match up "getURL()" with "decodeURL()", and match up "getResourceURL()" with "decodeResourceURL()". What is the real difference? I have no idea at all. -Louie And it seems surround your "decode" statement wiith noError() and lastError():
Many thanks ! I missed this function ;-) |