|
From: zou l. <zou...@gm...> - 2007-09-25 05:30:58
|
Hi Klaus, In Gnash's testsuite, many of the testcases are based on Ming. Tags order control in the source level would be a interesting feature. As we found, tags order affects the overall actions execution order of the SWF file. Basically, we'd like to do something like this(within or without the same frame): PLACE_OBJECT DO_ACTION PLACE_OBJECT DO_ACTION REMOVE_OBJECT DO_ACTION REMOVE_OBJECT ... But Ming(beta4) seems always group the above tags(no matter how you organize the source code) as follows: DO_ACTION DO_ACTION PLACE_OBJECT PLACE_OBJECT REMOVE_OBJECT REMOVE_OBJECT .... Although swfc could handle the above case perfectly as we need, but it also lacks of some other features that Ming does well. So we have to switch between them frequently. And that's really inconvenient. --zou |