Alice

Results 8 comments of 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: ![image](https://user-images.githubusercontent.com/42270214/106380533-b8e83200-63fe-11eb-9915-2362fbbdfcac.png) ![image](https://user-images.githubusercontent.com/42270214/106380593-06fd3580-63ff-11eb-8c0e-b6a4def00b83.png) It still works like magic: ![image](https://user-images.githubusercontent.com/42270214/106380612-24ca9a80-63ff-11eb-89fd-3d15eec93576.png) But I think...