Hi Grant,
In order to get your MOTO form back you need to do the following:
- close Actinic
- browse to your site folder and locate the ActinicCatalog.mdb file (take a backup)
- open the database with MS Access
- go to 'Insert | Query'
- select 'Design View'
- go to 'View | SQL View'
- replace the contents with the following:
- click on 'Query | Run'
- click 'OK' on the message it shows as to how many lines it is updating
- close the database
This will now stop the crash when you go to the 'Page Layouts' tab in 'Advanced Themes Configuration'.
- next go to go to 'Design|Themes|Advanced Themes Configuration|Page Layout tab | Advanced Page Configuration' and scroll to the bottom of the list. For the 'Moto Form' line, select 'MotoForm' for the 'Outer Layout' and 'MainArea' for the 'Inner Layout'.
None of your MOTO Form selectors (pink circle icon) in the Library have any layouts defined on the 'Values' tab so you need to go through each 'MOTO....' group and:
- double-click on the selector(s) in the group
- click on the 'Values' tab
- add the appropriate layout (for the 'MOTOFields' selector add all layouts and 'MOTOShortcut' add both) to the 'Layouts offered by this selector' column.
Once you have done all of this you should be able to see the MOTO Form on the 'New Order' tab.
In order to get your MOTO form back you need to do the following:
- close Actinic
- browse to your site folder and locate the ActinicCatalog.mdb file (take a backup)
- open the database with MS Access
- go to 'Insert | Query'
- select 'Design View'
- go to 'View | SQL View'
- replace the contents with the following:
Code:
DELETE UserDefinedProperties.* FROM UserDefinedProperties LEFT JOIN Variable ON UserDefinedProperties.nVariableID = Variable.nID WHERE (((Variable.nID) Is Null));
- click 'OK' on the message it shows as to how many lines it is updating
- close the database
This will now stop the crash when you go to the 'Page Layouts' tab in 'Advanced Themes Configuration'.
- next go to go to 'Design|Themes|Advanced Themes Configuration|Page Layout tab | Advanced Page Configuration' and scroll to the bottom of the list. For the 'Moto Form' line, select 'MotoForm' for the 'Outer Layout' and 'MainArea' for the 'Inner Layout'.
None of your MOTO Form selectors (pink circle icon) in the Library have any layouts defined on the 'Values' tab so you need to go through each 'MOTO....' group and:
- double-click on the selector(s) in the group
- click on the 'Values' tab
- add the appropriate layout (for the 'MOTOFields' selector add all layouts and 'MOTOShortcut' add both) to the 'Layouts offered by this selector' column.
Once you have done all of this you should be able to see the MOTO Form on the 'New Order' tab.
Comment