Where do copied files go on mobile?
Mark Talluto
mark at canelasoftware.com
Mon Apr 20 14:16:07 EDT 2020
On Apr 20, 2020, at 11:00 AM, Mark Talluto <mark at canelasoftware.com> wrote:
>
> function csi_soundDirectory
> local tPath
>
> --USEFUL FOR GETTING THE ROOT FOLDER OF THIS APP
> set the itemDel to slash
> put specialFolderPath("resources") & slash into tPath
> return tPath & "/sounds/" & sVehicle —in this example sVehicle contains “lambo"
> end csi_soundDirectory
This function had an extra slash that is not needed. Here is the updated function:
function csi_soundDirectory
local tPath
--USEFUL FOR GETTING THE ROOT FOLDER OF THIS APP
set the itemDel to slash
put specialFolderPath("resources") into tPath
return tPath & "/sounds/" & sVehicle —in this example sVehicle contains “lambo"
end csi_soundDirectory
Best regards,
Mark Talluto
livecloud.io <http://livecloud.io/>
nursenotes.net <http://nursenotes.net/>
canelasoftware.com <http://www.canelasoftware.com/>
More information about the use-livecode
mailing list