You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Case g_UserInterface.m_LayeringArmFGCheckbox, g_UserInterface.m_LayeringArmBGCheckbox, g_UserInterface.m_LayeringLegFGCheckbox, g_UserInterface.m_LayeringLegBGCheckbox
Local filename:String= RequestFile("Save graphic output", Null, True) 'No file extensions here, we add them later manually otherwise exported file name is messed up
113
+
Local filename:String= RequestFile("Save graphic output", Null, True) 'No file extensions from filters here, we add them later manually otherwise exported file name is messed up.
101
114
If pixmapToSave <>NullAnd CheckValidExportFileName(filename) Then
102
115
Local saveSuccess:Int=True
103
-
ForLocalrow:Int=0To3
104
-
LocalrowName:String'Name the rows - by default: ArmFG, ArmBG, LegFG, LegBG in this order
105
-
Selectrow
116
+
ForLocallimb:Int=0To3
117
+
LocallimbName:String'Name the limbs - by default: ArmFG, ArmBG, LegFG, LegBG in this order.
118
+
Selectlimb
106
119
Case0
107
-
rowName="ArmFG"
120
+
limbName="ArmFG"
108
121
Case1
109
-
rowName="ArmBG"
122
+
limbName="ArmBG"
110
123
Case2
111
-
rowName="LegFG"
124
+
limbName="LegFG"
112
125
Case3
113
-
rowName="LegBG"
126
+
limbName="LegBG"
114
127
EndSelect
115
128
116
129
ForLocal frame:Int=0To frameCount -1
117
130
Local leadingZeros:String="00"
118
-
Local fullFilename:String= filename +rowName+ leadingZeros + frame
131
+
Local fullFilename:String= filename +limbName+ leadingZeros + frame
0 commit comments