rez.deleteNamedResource
| Syntax |
rez.deleteNamedResource (path, type, name)
|
| Params |
path is the path to the file from which the resource is to be removed. type is a string4 identifying the type of resource to be removed. name is a string identifying the specific resource of type type to be removed.
|
| Action |
Deletes the resource of type type and named name from the file at path.
|
| Returns |
True if the file and resource are found and the resource is deleted, false otherwise
|
| Examples |
rez.deleteNamedResource ("System:Test File", 'curs', "Big Hand") » true
|
| Platform Notes |
This verb is only implemented in the Mac OS version of Frontier.
|
| Notes |
If you know the resource ID but not the name, you can use rez.deleteResource rather than this verb.
|
| See Also |
rez.deleteResource
|