Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I have a hurdle that I can't figure out. I have created a property that dictates if the post should output in 3-axis or 5-axis mode. This happens with a property as seen below:
I want to change the file extension depending on that mode. For 3-axis it should be *.RBD, as seen on pic above. For 5-axis, it should be *.RBX.
I wrote this code:
if (properties.A__Has_5Axis){
extension = "RBX";
} else {
extension = "RBD";
}
But it has no effect, I don't think it can read from the property when it is changed during posting. Right it uses the extension RBD for 3 or 5-axis mode.
Is there a way to do this?
Thanks!
Solved! Go to Solution.