====PX_==== Used to get the [[ardi point code|point code]] of a named property on the [[owning asset|active asset]]. ===Parameters=== **Property Name**: The name of the property on the owning asset. ===Example=== Let's assume you wanted to make an SVG file you could use for any machine with a 'Temperature' property. . You could use the following code.... connection.Subscribe("[PX_Temperature]",function (val) { $('#temp').html(parseFloat(val).toFixed(1) + " Deg C"); }); This is replaced with the full point code for the Temperature property on the active asset.