What is the Sandbox path?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2008 05:54 AM
can anybody help me?
i wrote script for displaying the XMLs in the Sandbox.but i am not able to locate the path of the sandbox.please somebody help me to find sandbox path
I have this kind of locater code for the sandbox in js file
Do u think i m going in a proper way?
any suggestion will be appreciated.
thx in advance.
i wrote script for displaying the XMLs in the Sandbox.but i am not able to locate the path of the sandbox.please somebody help me to find sandbox path
I have this kind of locater code for the sandbox in js file
var storeRoot = avm.lookupStore("MADemo");var folder = storeRoot.lookupNode("ROOT/" + "admin");
Do u think i m going in a proper way?
any suggestion will be appreciated.
thx in advance.
Labels:
- Labels:
-
Archive
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2008 12:19 PM
There is an example at the bottom of the JavaScript API docs, here is a snippet:
var storeRootNode = avm.lookupStoreRoot(args["store"]); if (storeRootNode != null) { var path = storeRootNode.path + "/ROOT/admin/index.html"; var node = avm.lookupNode(path); if (node == null) { return "ERROR: unable to find path: " + path; }…
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2008 01:05 AM
Thank kevin for reply…..
bye
bye