Questions tagged [livecode]

The LiveCode programming language (formerly the "Revolution" programming language) is a cross-platform rapid application development language.

LiveCode allows developers to create applications that run in any of the supported environments, using a compile-free workflow. The scripting language is based on the Hypertalk language originally developed by Apple for Hypercard. Since version 6 an open source version (GPL) is available.

644 questions
20
votes
4 answers

The app's Info.plist can't contain values for the UIRequiredDeviceCapabilities key

"The app's Info.plist can't contain values for the UIRequiredDeviceCapabilities key that would prevent this app from opening on any iOS device. For more information, see Understanding the UIRequiredDeviceCapabilities Key." I keep getting this error…
Vikki
  • 211
  • 1
  • 2
  • 7
10
votes
1 answer

ITMS-90078: Missing Push Notification Entitlement

I created and submitted my iOS app to App Store Connect. But after submitting the build I got this email We identified one or more issues with a recent delivery for your app, "HIITimer Interval Workout" 1.0.1 (1). Your delivery was successful, but…
Gstarox
  • 111
  • 1
  • 3
10
votes
3 answers

How to add words in aspell dictionary?

I am using aspell in my application for spell checking. I don't have any idea about how to add words in aspell. Is it any way to add words
RAHUL.S. KRISHNA
  • 221
  • 1
  • 3
  • 8
7
votes
1 answer

Stopping in-built php server on Mac Mavericks - Livecode

I'm developing something in Livecode and I have been experimenting with using Mavericks own in-built php server. I started the server by sending the following command through shell... php -S localhost:8000 This enabled PHP to run successfully…
user2317093
  • 746
  • 4
  • 8
  • 25
5
votes
5 answers

LiveCode Source Control

Anyone out there using LiveCode in a multi developer project? Either way, can someone recommend a good source control system / plugin to use? We've looked at MagicCarpet but since it is no longer developed we wish to use something else. Thanks
Saquesh
  • 107
  • 1
  • 8
4
votes
8 answers

LiveCode field level input validation

How can I restrict a users input to be only numeric (allowing decimals) when typing into certain fields in a desktop application? ~Roger
Roger Eller
  • 113
  • 1
  • 6
4
votes
2 answers

Why won't this simple LiveCode iOS external compile?

I created a simple external using the LiveCode iOS externals SDK. The test.lcidl file is as follows: external test function testMyExternal return boolean The test.mm file is as follows: bool testMyExternal(void) { return true; } The…
Monte Goulding
  • 2,380
  • 1
  • 21
  • 25
4
votes
2 answers

Osascript - syntax error when run from daemon (LiveCode app)

I have a LiveCode app that, as part of a larger purpose, checks to see what the name of the "frontmost" application (i.e. the name in the menu bar). I am having LiveCode run this through the shell: osascript -e 'tell application "System Events" to…
Nextyoyoma
  • 41
  • 1
3
votes
1 answer

How to make an app fit different phones

I made an app in LiveCode - calculator. I was doing it by these (https://livecode.com/lessons/calculator/) instructions and it is scaled to fit iPhone. I need it to fit different mobile phones that run Android (Samsung, GSmart, LG etc). I went…
U.Evans
  • 31
  • 3
3
votes
0 answers

Livecode Strict isNumber() needed

Livecode's isNumber returns true when certain text strings are used. isNumber("one") returns true. I need a "strict" isNumber function where any strings would return false. Needs to handle +/-, integers, reals, e notation preferably. I'm looking for…
Bob Hall
  • 31
  • 3
3
votes
2 answers

Name of newly opened stack

I have stored a stack in a custom property, using set the cStack of stack "abc" to \ url "binfile:~/desktop.abc.rev" This opens the stack: go inv stack (the cStack of this stack) The stack needs to be hidden. Due to the nature of the project, I…
user3330392
3
votes
2 answers

Spinning an Image with acceleration - LiveCode

I've been working with LiveCode for a couple of days, but I found a problem and have been stuck for a whole day. My project is a Roulette/Wheel of Fortune game, in which a circular image spins for a random amount of degrees and a static needle in…
TianRB
  • 671
  • 1
  • 7
  • 22
3
votes
1 answer

Dynamic text size resizing to fit the entire text line into a text field

I have about 640 text lines of different length that can be viewed both as a list in a data grid and in a one-line view. In one-line view I'd like to resize the font size of the text line so that it fits completely in the text field has maximum…
mark
  • 222
  • 1
  • 9
3
votes
2 answers

transform an Array into a multidimensional Array in livecode

How do i transform an Array like this into a multidimensional Array in livecode? I have about 20 Toplevel categories with nested categories as described below. The nesting can be up to 6 levels deep. Starting array as result of database…
3
votes
2 answers

How do I convert XML image data in HEX to Image that can be viewed with Livecode

I am trying to convert an image presented as HEX data (comes in as HEX in a XML file) back into an image that I can display using my stack user interface. I have tried every option that I could think of and could find in forums and manuals and ended…
Danny
  • 127
  • 6
1
2 3
42 43