Alice
Alice
Same error here, but I am using Mohist (latest, 1.20.1) so I am not sure whether it's a problem that's caused by a server software or a bug in a...
Diving a little bit deeper, looks like the problem is not with the `fetch` polyfill, but with the `XMLHttpRequest` implementation. I rewrote the `callFetch()` function in example like so: ```javascript...
Looks like I'm talking to myself, but that's okay. After I went through your code, I think that the problem is with the way you pass values around in `XMLHttpRequest`...
So... I purpose replacing `fetch` polyfill with this implementation ### Javascript ```javascript function fetch(url, options) { options = options || {}; return new Promise(async (resolve, reject) => { let request...
Reading something from the project without After Effects itself being opened is not possible, since `.aep` is just a binary file (which is a little bit weird, since Premiere Pro...
Currently only two commands are supported: `-aer `: Will open Launcher and populate all the fields with the contents of an `.aer` file. `-aerq `: Will open Launcher and populate...
I just thought for a moment that this may not be tied to version, but to some unsupported effects and stuff... For example, [this project](https://github.com/LilyStilson/AErender-Launcher/tree/master/benchmark/SuperEffectiveBros%20-%20Mograph%20Practice) uses Trapcode Particular and fails...
@rioam2 I modified `Item` and `CDTA` struct a bit, and even though, it turned to be a bit ugly:   It still works like magic:  But I think...