python 3:
python -m SimpleHTTPServer
python 2:
python -m http.server 8000
in browser:
http://localhost:8000
Sunday, May 24, 2015
Thursday, May 14, 2015
import files dialog Maya (mel)
string $result[] = `fileDialog2 -fm 3 -ds 2 -cap "Choose Folder with Caches" -okc "Select"`;
$selected = `ls -sl`;
for ($node in $selected)
{
string $geo[] = `select -r $node;`
select -r $node;
doImportCacheFile(($result[0] + "\\" + $node), "xmlcache", $geo[0], {});
}
Subscribe to:
Comments (Atom)