in Anime Studio 5.4 (formerly Moho) I can setup the display quality in main window:

Where I can setup this in 5.5 or 5.6?
Thanks!
Moderators: Víctor Paredes, Belgarath, slowtiger



I see no differences between version 5.5 and 5.6.PARKER wrote:Why dont you upgrade your anime studio version?
Get the 5.6 version.
Code: Select all
Moho 5.4 (*.moho)
application/x-vnd.lm_mohodoc
version 14
### Created in Moho version 5.4, © 1999-2006 Lost Marble
...Code: Select all
Anime Studio 5.5 (*.anme)
application/x-vnd.lm_mohodoc
version 14
### Created in Moho version 5.5, © 1999-2006 Lost Marble
...Code: Select all
from math import *
# "QualityFlags" "1662" after install
checkbox = [
0 , # Fast Buffer (don't work, automatically reset to 0 at start)
1 , # Construction curves (don't work, automatically reset to 1 at start)
1 , # Fills (don't work, automatically reset to 1 at start)
1 , # Outlines (don't work, automatically reset to 1 at start)
1 , # Images (don't work, automatically reset to 1 at start)
1 , # Smooth Images (YES, you can switch it in Debut!!!)
1 , # Masking (YES, you can switch it in Debut!!!)
1 , # Transparency (YES, you can switch it in Debut!!!)
0 , # Antialiasing (don't work, automatically reset to 0 at start)
1 , # Brushes (don't work, automatically reset to 1 at start)
1 ] # Shaded fills (YES, you can switch it in Debut!!!)
QualityFlags = 0
for index in range(len(checkbox)): QualityFlags += checkbox[index] * (2 ** index)
print QualityFlags