api icon indicating copy to clipboard operation
api copied to clipboard

Scripting API for Aseprite

Results 47 api issues
Sort by recently updated
recently updated
newest added

Add missing pages for commands: - `LayerOpacity` - `CelOpacity`

I just found out there're some websockect support in API and it's really cool. And it's seems that require() support will be in next version. So is there a way...

feature

We should have a way to access widgets by ID. Mainly a canvas to paint some part of its surface. E.g. ```lua local d = Dialog():canvas{ id=myCanvas } local ctx...

feature

We should be able to create an `UIImage()` from an `Image` (and maybe from scratch or other objects), and getting a `GraphicsContext` from it so we can paint on it...

feature

I have made a script which makes a info.concat file using default lua's write function. but i can't delete it using the script. the os.remove returns error saying that remove...

Fixed typo in the description of `Image.rowStride` before: > Each image has a total of **`image.rowSide`** * `image.height` bytes after: > Each image has a total of **`image.rowStride`** * `image.height`...

If you set the `isVisible` property on a Layer inside a transaction, and then call `app.undo()`, the visibility change is not reverted. Example code: ``` local function revealLayers(layers) for i,...