Viewpoint Developer Central    Viewpoint Forums    Viewpoint Forums  Hop To Forum Categories  VETScript    VETScript Function list
Go
New
Find
Notify
Tools
Reply
  
-star Rating Rate It!  Login/Join 
rik
Member
Posted
Hi ,

where to find a complete list of VETScript functions?

I tried this way to explore the properties inside an instance Frown but this function crash explorer on win xp

function getProperties( obj ) {
var allProperties = "";
for (var property in obj ){
var propertyName = property ;
var propertyValue = obj[ propertyName ];
allProperties += (propertyName+'='+propertyValue+'; ');
}
return allProperties;
}
 
Posts: 34 | Registered: March 17, 2003Reply With QuoteEdit or Delete MessageReport This Post
Member
Picture of duncan
Posted Hide Post
The VETScript reference can be found in the attachment. Beyond what's in that document, it's all ECMA. Certainly your code snippet should work, unfortunately it seems you've stumbled upon a bug Frown Does it crash with any object you pass in, regardless of size and type?

Zip/GZ archivevmp_win_330_relnotes.zip (36 KB, 75 downloads)
 
Posts: 381 | Registered: January 24, 2003Reply With QuoteEdit or Delete MessageReport This Post
  Powered by Eve Community  
 

Viewpoint Developer Central    Viewpoint Forums    Viewpoint Forums  Hop To Forum Categories  VETScript    VETScript Function list