Menu
Scriptable Customer Service Phone, Email, Contacts

Scriptable
reviews and complaints

Scriptable's customer service contact info has been verified by the ComplaintsBoard team. We made sure it's all legit and accurate, so you can trust it! 👌
www.scriptable.app
www.scriptable.app

Learn how the rating is calculated

3.9 17 Reviews 2 Complaints
Claim Your Business
Take control of your profile: address complaints and engage with reviews
Write a review File a complaint

Scriptable reviews 17

ComplaintsBoard
B
Verified customer This review was posted by a verified customer. Learn more

Scriptable good and bad thoughts

this is a nice little app and it's amazing that the app developer donated it.

i gave it 4 stars since my use cases dont necessarily line up all the the time with the capabilities of the app. I dont know if we can contribute on github to future versions.

so it's at least a good starting poimt.

Read full review of Scriptable
Hide full review
ComplaintsBoard
S
Verified customer This review was posted by a verified customer. Learn more

Scriptable Error 1307

Really appreciate this app!
But can you tell me what can I do with this :

Shortcuts
Automation failed
"When any of 2 apps are opened"
encountered an error: The operation
couldn't be completed.
(INCExtensionErrorDomain error 1307.)

It keeps pushing when I run the process. But the function works well .

Read full review of Scriptable
Hide full review
ComplaintsBoard
M
Verified customer This review was posted by a verified customer. Learn more

Scriptable Shortcuts for JavaScript nerds

This is an incredibly well put together and well thought out app that is a virtual replacement for the Shortcuts app, assuming you know JavaScript.

One thing I can’t seem to make it do is behave as an input/output step in the actual Shortcuts app. It might be nice to offer a script with a return value as a suggestion there.

Read full review of Scriptable
Hide full review
ComplaintsBoard
D
Verified customer This review was posted by a verified customer. Learn more

Scriptable Browser

Great app; but the built in web browser has an issue: Web content is displayed under the notch and status bar. I have a scriptable action that sometimes requires me to view a web page (to log in and out) and the site's menus are at the top. It's impossible to use the menu at the top. I've only had partial success rotating my phone to access the menu. Please fix!

Read full review of Scriptable
Hide full review
ComplaintsBoard
A
Verified customer This review was posted by a verified customer. Learn more

Scriptable Fantastically powerful but

The app finally makes Shortcuts not a toy.

However, as of iOS 14, some things are more complicated than they need to be. Stability is lacking still. But the progress has been incredible.

Apple needs to implement their own integration tools in Shortcuts for this app to be able to pass data back and forth freely.

As for this app, I’d only complain about the Documentation view. I think, it’s poorly presented.

Read full review of Scriptable
Hide full review
ComplaintsBoard
L
Verified customer This review was posted by a verified customer. Learn more

Scriptable The Greatest Pair for Siri Shortcuts

There’s a few quirks here and there, but they’re only graphical, so your content is all safe and sound (from my experience so far). The documentation is 10/10, and the example scripts are wonderful for new comers with all the comments!
More features would be awesome, so I look forward to what is up next for this app.

I just tipped the dev a caffe latte (the best in-app purchase I’ve ever made), but I wish I could give them a handshake for an app well done

Read full review of Scriptable
Hide full review
ComplaintsBoard
B
Verified customer This review was posted by a verified customer. Learn more

Scriptable Kept freezing

I tried using the app to write some JavaScript. In less than 24 hours the app has frozen multiple times. None of the controls work. I have to force quit and restart.

It happens after hitting the play button to run my code. I don’t have an infinite loop, but sometimes there are bugs that I enter (e.g. I forget to add const or let to a variable). The app doesn’t complain, but freezes.

I like the layout and the functionality of the app, just wish it didn’t freeze.

Read full review of Scriptable
Hide full review
ComplaintsBoard
O
Verified customer This review was posted by a verified customer. Learn more

Scriptable I’m finally comfortable doing iOS automation

I’ve been meaning to try Scriptable for a long time, and finally gave it a spin today. It’s SO MUCH better than using Shortcuts’ scripting language!

Not only did I get my “upcoming birthdays” script working the way that I wanted it to, I was able to fix a date range bug in JS that I couldn’t figure out how to do in Shortcuts. Plus, as a bonus, now I’ve got a widget using my script that works with parameters.

All this after noodling around for just part of the afternoon. Thanks so much for Scriptable.

Read full review of Scriptable
Hide full review
ComplaintsBoard
L
Verified customer This review was posted by a verified customer. Learn more

Scriptable Pachino

Wonderful App,

but, I opened the app, and noticed one of my saved script was one..

*In other words, the app automatically deletes scripts it chooses to (Randomly, or selected by the developer).

Also, Apple App Store and the developer, take note of this, this App “Scriptable” does not appear under the cellular data section, therefore it means one cannot put off the cellular data for the app.. noting the face that The Apple iPhone does not have 100%(total) control over the app..

This is wrong, a very massive bug, please this needs to be fixed..

This App has too much access to the apple iPhone. Please developers fix this..

Read full review of Scriptable
Hide full review
ComplaintsBoard
M
Verified customer This review was posted by a verified customer. Learn more

Scriptable Best iOS interface I’ve ever seen

Theirs is truly no app that can compare to the sheer number of ways to interact with iOS on Scriptable. I was skeptical at first with this app because theirs so many useless apps for programing on the App Store and this one is 1000% better than the best I’ve seen. Seriously this app doesn’t cost a dime and I’ve been using it for the past couple of days and not ONE ad has opened, its amazing! Not to mention the possibilities with this app you can create timed notifications check sites. And best of all you can basically add Siri functions to your phone. Nothing else truly compares to this app if I could I would give it more than 5 stars.

Read full review of Scriptable
Hide full review
ComplaintsBoard
L
Verified customer This review was posted by a verified customer. Learn more

Scriptable Best Automation App!

This is probably the best automation app you could install. I use it more than Shortcuts, even. I mean, you can customize your device with JavaScript? How cool is that?
Scriptable has a ton of nice features: A clean UI (settings, dark mode, log), extensive documentation, and a ton of custom APIs written just for iOS.
With Apple’s recent iOS/IPadOS 14 update came the ability to create widgets with Simon’s beautiful ListWidget() api. No other app that I know of can do that.

Those were the Pros, and the Cons are... well... hmm... well, guess there are no cons. ‍♂️

Also, since Scriptable is free, there is really no reason not to download it. So go download it!

Read full review of Scriptable
Hide full review
ComplaintsBoard
S
Verified customer This review was posted by a verified customer. Learn more

Scriptable Script not working

My script has not been working post iOS 13

let addrs = "my work address here" //address
let name = "Work"
let cal = await Calendar.forEventsByTitle(name)
let events = await CalendarEvent.between(new Date(2019,01,01), new Date(2021,01,01),[cal]) // fetch data until 2024
let nolocation = events.filter(ev =>ev.location == "" && ev.isAllDay == false) // only use events that have no location and is not all day
for (event of nolocation){
event.location = "addrs"
let sd = event.startDate.toLocaleTimeString('en-US', {hour:"2-digit",minute:"2-digit"})
let ed = event.endDate.toLocaleTimeString('en-US', {hour:"2-digit",minute:"2-digit"})
event.title = "" + sd + " to " + ed
event.save()
}

Read full review of Scriptable
Hide full review
ComplaintsBoard
N
Verified customer This review was posted by a verified customer. Learn more

Scriptable I think the app needs its next update

The options I had to play videos on loop and at different speeds aren’t there anymore. When the video is over I have to keep pressing play to start it over again. Now it’s just a black backround with nothing but the video playing and if I skip forward or backwards, it takes the video out of the frame and into PiP. Another thing; when I put the YouTube video into PiP, when scriptable opens it up it starts the back from the beginning again and not from where it was playing when I chose to send the video to scriptable to watch in PiP. Get me? I don’t know who else is experiencing this but I’am, on my iPhone. Hopefully you send an update soon that fixes all of this. I appreciate your work and this app. It helps.

Read full review of Scriptable
Hide full review
ComplaintsBoard
Z
Verified customer This review was posted by a verified customer. Learn more

Scriptable Amazing Automation App

This app is amazing! It’s like Shortcuts (formerly Workflow) for people who would rather write code than drag boxes (this is not a criticism of Shortcuts; different people do things differently). If you like Pythonista but not Python, this might be the app for you. Right out of the gate the dev includes a great and powerful set of APIs that let you access iOS frameworks, interact with the user or the web, display output, etc. They’ve even included a graphics context! I can’t wait to see what they add in future releases. My one suggestion at this point would be to include some basic documentation on the app itself. The API docs are great and the sample code is helpful but some basic info on how to use the app would be appreciated. It’s kind of embarrassing, but it actually took me a while to figure out that the scripting language was JavaScript :-).

Read full review of Scriptable
Hide full review
ComplaintsBoard
A
Verified customer This review was posted by a verified customer. Learn more

Scriptable Should Be An Editor’s Choice App

Scriptable is by far one of the best apps I’ve ever downloaded. As a website developer, using JavaScript to program iOS shortcuts is like a dream come true. With the no ads and no premium subscription, it’s an app that I would definitely recommend to anyone with a background in programming.

With that being said, I do have a few bugs and feature requests for the developer. The features include:
- Word wrap toggle: on iPhone, it’s a pain to have to enter landscape mode just to make sure all the indentations are as they should be. A word wrap toggle would be a big help.
- Theme choices: we should have the option to use a different theme for light/dark mode (for example: one dark pro, etc)
- TypeScript support: this is pretty self-explanatory

And the bug:
- Accessing Contact and ContactsContainer in a widget results in a blank widget. However, this does seem to work if you preview the widget in-app using present.

Read full review of Scriptable
Hide full review

Scriptable complaints 2

ComplaintsBoard
S
Verified customer This complaint was posted by a verified customer. Learn more

Scriptable Loading problem

This app was excellent before recent two updates now it not working properly I’ve to switch twice everytime Youtube pip mode otherwise it keeps loading. Please fix it

Read full review of Scriptable
Hide full review
ComplaintsBoard
P
Verified customer This complaint was posted by a verified customer. Learn more
Resolved
The complaint has been investigated and resolved to the customer’s satisfaction.
Replied
Scriptable has left an official reply on this complaint.

Scriptable iOS 13 required when iOS isn’t out?

?

Read full review of Scriptable
Resolved

The complaint has been investigated and resolved to the customer’s satisfaction.

Hide full review

Is Scriptable legit?

Our conclusion: Scriptable stands out for their exceptional legitimacy, according to ComplaintsBoard’s detailed analysis. This highlights Scriptable's reputation as a trustworthy leader in their field. Customers can rely on Scriptable's services, assured they're dealing with a highly reputable and fully legitimate company.

Scriptable earns a trustworthiness rating of 100%

Highly recommended, but caution will not hurt.

Scriptable has received 12 positive reviews on our site. This is a good sign and indicates a safe and reliable experience for customers who choose to work with the company.

Scriptable.app has a valid SSL certificate, which indicates that the website is secure and trustworthy. Look for the padlock icon in the browser and the "https" prefix in the URL to confirm that the website is using SSL.

Scriptable.app has been deemed safe to visit, as it is protected by a cloud-based cybersecurity solution that uses the Domain Name System (DNS) to help protect networks from online threats.

Scriptable.app you are considering visiting, which is associated with Scriptable, is very old. Longevity often suggests that a website has consistently provided valuable content, products, or services over the years and has maintained a stable user base and a sustained online presence. This could be an indication of a very positive reputation.

Scriptable.app regularly updates its policies to reflect changes in laws, regulations. These policies are easy to find and understand, and they are written in plain language that is accessible to all customers. This helps customers understand what they are agreeing to and what to expect from Scriptable.

However ComplaintsBoard has detected that:

  • Scriptable.app has relatively low traffic compared to other websites, it could be due to a niche focus, but could also indicate a potential lack of traffic and popularity. The scriptable.app may offer a niche product or service that is only of interest to a smaller audience.
  • Scriptable protects their ownership data, a common and legal practice. However, from our perspective, this lack of transparency can impede trust and accountability, which are essential for establishing a credible and respected business entity.

About Scriptable

Screenshot Scriptable
Scriptable is a powerful automation tool for iOS that allows users to create and run custom scripts on their iPhone or iPad. With Scriptable, users can automate tasks, create custom widgets, and even build their own apps using JavaScript.

One of the key features of Scriptable is its ability to interact with other apps on the device. This means that users can create scripts that pull data from other apps, manipulate that data, and then send it back to the original app. For example, a user could create a script that pulls data from their calendar app, filters it based on certain criteria, and then displays the results in a custom widget on their home screen.

Scriptable also includes a powerful JavaScript editor that allows users to write and debug their scripts directly on their device. The editor includes features like syntax highlighting, auto-completion, and error highlighting, making it easy for users to write complex scripts without having to switch to a separate development environment.

In addition to its automation and scripting capabilities, Scriptable also includes a number of built-in APIs that allow users to interact with various parts of the iOS system. For example, users can use the FileManager API to read and write files on their device, or the Location API to get the user's current location.

Overall, Scriptable is a powerful tool for iOS users who want to automate tasks, create custom widgets, or build their own apps. Its intuitive interface and powerful scripting capabilities make it a must-have for anyone looking to get more out of their iPhone or iPad.

Overview of Scriptable complaint handling

Scriptable reviews first appeared on Complaints Board on May 31, 2023. The latest review good and bad thoughts was posted on Jun 12, 2023. The latest complaint iOS 13 required when iOS isn’t out? was resolved on May 31, 2023. Scriptable has an average consumer rating of 3 stars from 17 reviews. Scriptable has resolved 1 complaints.
Trust badge
Collect Your Trust Badge
Be recognized for outstanding customer service
  1. Scriptable contacts

  2. Scriptable emails
  3. Scriptable social media
Scriptable Category
Scriptable is related to the Mobile Apps and Add-Ons category.

Our Commitment

We stand for unbiased reviews

We make sure all complaints and reviews are from real people sharing genuine experiences.

We help resolving issues

We offer easy tools for businesses and reviewers to solve issues together. Learn how it works.

We advocate freedom of speech

We support and promote the right for reviewers to express their opinions and ideas freely without censorship or restrictions, as long as it's respectful and within our Terms and Conditions, of course ;)

We ensure transparent and fair ratings

Our rating system is open and honest, ensuring unbiased evaluations for all businesses on the platform. Learn more.

We care about your privacy

Personal details of reviewers are strictly confidential and hidden from everyone.

We are easy, free and open to everyone

Our website is designed to be user-friendly, accessible, and absolutely free for everyone to use.