Toad06

Results 30 comments of Toad06

Implemented by #6547 but the issue persists for some reason.

It seems like `XML.getBytesLoaded` and `XML.getBytesTotal` are still not implemented in Ruffle (not even as stubs). By the way, the provided link is dead (404) but a ZIP file with...

There is also a [`print`](https://www.oreilly.com/library/view/actionscript-the-definitive/1565928520/re191.html) function/method (and compiling to `Action::GetURL2`) currently missing in the main post. See #6154 for an example.

It seems UTF-8 should also work in SWFv5 ([sample](https://github.com/ruffle-rs/ruffle/files/11294814/swf5_utf8.zip)): ``` trace("âäéèÔ"); trace("-----"); trace("早上好"); trace("-----"); trace("สวัสดีตอนเช้า"); ``` In Flash Player, these strings are displayed as you'd expect, but in Ruffle they're...

`transform` is a property that was added in SWFv8. This game is a SWFv6 file. The following code gives different results in Flash Player depending on the SWF version. ```...

Seems this is caused by the `TextField.autoSize` property which is not completely implemented yet (cc #280). For instance, removing this piece of code: `score_txt.autoSize = "right";` produces a way better...

@andrewvarga, I think the issue may have been fixed by #1767. Could you please give it another try using the [web demo](https://ruffle.rs/demo/)? Thanks in advance!

I've added some `trace`s in `function onLoad()` located in `\__Packages\item`: ``` trace("this.id: " + this.id); trace("this.collectable: " + this.collectable); ``` In Ruffle, `this.id` will always be undefined and `this.collectable` always...

👍 I've tested that in Chrome and Firefox (Windows) and that did the trick: no more panic screen. This is also still good for #2046.

Seems like the code in `DefineButton2 (19)` doesn't operate in the right scope? For instance, if you add this: ``` testme = 123; trace(_root.testme); // 123 in FP, undefined in...