Have you tried the 3.1.1 release? It ought to have this in there, I thought.


On 1/12/06, Denis Bohm <[EMAIL PROTECTED] > wrote:
With version 3.1 if I try to change compiler.runtime.default to swf8 I get:

java.lang.RuntimeException: Unknown SWF version: swf8

using lzr=swf8 works fine on the command line.

Looking in LPS.java reveals lots of code that just handles swf5-7:

    public static void setSWFVersionDefault(String swfversion) {
        if (swfversion.equals("swf7")) {
            mSWFVersionNumDefault = 7;
            mSWFVersionDefault = "swf7";
        } else if (swfversion.equals("swf6")) {
            mSWFVersionNumDefault = 6;
            mSWFVersionDefault = "swf6";
        } else if (swfversion.equals("swf5")) {
            mSWFVersionNumDefault = 5;
            mSWFVersionDefault = "swf5";
        } else {
            throw new RuntimeException("Unknown SWF version: " + swfversion);
        }
    }

Should these methods have another case for swf8?



_______________________________________________
Laszlo-dev mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-dev



--
Henry Minsky
Software Architect
[EMAIL PROTECTED]

_______________________________________________
Laszlo-dev mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-dev

Reply via email to