If you guys are like me, your X is your long axis...Every other CAM package i've used allows how i define my X and Y start point. Aspire only allows me to select a corner or center.

So i cant either swap my axies in mach, or, after im done designing, rotate my work 90.

No thanks.

After seeing some others on the Aspire forum having the same issues, i decided to post how i solved it. I'm guessing this will work on any post that comes with any vectric software, as i see this part of the files are all the same.

Navigate to C:\ProgramData\Vectric\YourSoftwarePackage\PostP\T hePostYouWantToFix

Open it up with Notepad.

Find this block
Code:
+================================================
+                                                
+    Formating for variables                     
+                                                
+================================================

VAR LINE_NUMBER = [N|A|N|1.0]
VAR FEED_RATE = [F|C|F|1.1]
VAR X_POSITION = [X|C|X|1.4]
VAR Y_POSITION = [Y|C|Y|1.4]
VAR Z_POSITION = [Z|C|Z|1.4]
VAR ARC_CENTRE_I_INC_POSITION = [I|A|I|1.4]
VAR ARC_CENTRE_J_INC_POSITION = [J|A|J|1.4]
VAR X_HOME_POSITION = [XH|A|X|1.4]
VAR Y_HOME_POSITION = [YH|A|Y|1.4]
VAR Z_HOME_POSITION = [ZH|A|Z|1.4]
Change it to:
Code:
+================================================
+                                                
+    Formating for variables                     
+                                                
+================================================

VAR LINE_NUMBER = [N|A|N|1.0]
VAR SPINDLE_SPEED = [S|A|S|1.0]
VAR FEED_RATE = [F|C|F|1.1]
VAR X_POSITION = [X|A|Y|1.4]
VAR Y_POSITION = [Y|A|X|1.4|-1]
VAR Z_POSITION = [Z|A|Z|1.4]
VAR ARC_CENTRE_I_INC_POSITION = [I|A|J|1.4]
VAR ARC_CENTRE_J_INC_POSITION = [J|A|I|1.4|-1]
VAR X_HOME_POSITION = [YH|A|X|1.4]
VAR Y_HOME_POSITION = [XH|A|Y|1.4]
VAR Z_HOME_POSITION = [ZH|A|Z|1.4]
VAR SAFE_Z_HEIGHT = [SAFEZ|A|Z|1.4]
Some posts use C in the top variable declarations, leave that be! Just swap the X and Y's as i did, and add the -1.

I take no responsibility for any mishaps! That being said, i hope this helps somebody. Always simulate/Check the output code before running! In my case, using mach3, it was pretty straightforward getting everything behaving properly.