self:dofile("myscript.lua").
I tried this as the following:
dofile("/absolute/path/to/myfile.lua")
and this works...
package.path = "/my/pdlua/files/?.lua;" .. package.path
I also tried this as follows
package.path = "/absolute/path/to/?.lua;" .. package.path require "myfile.lua"
and this works...
Thanks for your help.
Mike