If it's crashing it needs a bug report. LC should never crash. https://quality.livecode.com
You may get a workaround when LC examines the problem. Or at least a fix.
Search found 5669 matches
- Tue Jan 26, 2021 7:22 pm
- Forum: Android Deployment
- Topic: Quitting the app in Android freezes it
- Replies: 8
- Views: 645
- Mon Jan 25, 2021 6:30 pm
- Forum: Android Deployment
- Topic: Problem Parsing The Package.
- Replies: 1
- Views: 85
Re: Problem Parsing The Package.
Have you installed the app previously? If so, delete it before reinstalling. Another way around it is to change the build number in standalone settings. Android won't really reinstall an identical app with the same build number. If you're using the Test button in the IDE, LC takes care of this for y...
- Fri Jan 22, 2021 7:24 pm
- Forum: iOS Deployment
- Topic: Problem with mobilecontrol player object
- Replies: 7
- Views: 634
Re: Problem with mobilecontrol player object
I can't test right now, but there was a similar but not identical problem with the mobile player in one of my apps. The first thing you can try is to set the filename to empty before displaying or reloading the player. mobileControlSet "TestPlayer", "filename", empty If that doesn't work, try it in ...
- Thu Jan 21, 2021 7:08 pm
- Forum: Mac OS
- Topic: stdout on macOS 11.0.1 - working??
- Replies: 7
- Views: 465
Re: stdout on macOS 11.0.1 - working??
If you're doing this in a standalone, "put" sends output to Console by default:
In the IDE it goes to the message box instead.
Code: Select all
put tMessage
- Wed Jan 20, 2021 9:04 pm
- Forum: Talking LiveCode
- Topic: ImageData question
- Replies: 13
- Views: 620
Re: ImageData question
I looked it up. You're right, the first pixel is the alpha channel.
- Wed Jan 20, 2021 6:57 pm
- Forum: Talking LiveCode
- Topic: ImageData question
- Replies: 13
- Views: 620
Re: ImageData question
I thought the alpha pixel was last but I'm too lazy to look it up.FourthWorld wrote: ↑Tue Jan 19, 2021 6:16 pmI believe the order of each pixel is Alpha channel, R, G, B.
- Wed Jan 20, 2021 6:53 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: What is a sample code for execution measure in ms ?
- Replies: 6
- Views: 473
Re: What is a sample code for execution measure in ms ?
If you really want precision there is also "the long milliseconds" but you'll probably want an even larger pool of averages.
- Wed Jan 20, 2021 6:42 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Distorted view of fields in Android Device
- Replies: 5
- Views: 515
Re: Distorted view of fields in Android Device
I almost always use showAll. Sometimes noBorder works better for landscape orientation. The other options aren't very useful on mobile. You don't need different modes for each device if you're okay with occasional black bars around the card when the screen ratio is different. If you set the stack's ...
- Wed Jan 20, 2021 3:53 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Installing on iPad Witout Developer ID?
- Replies: 4
- Views: 450
Re: Installing on iPad Witout Developer ID?
Yes, the tether is only for the installation.
- Tue Jan 19, 2021 8:29 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Installing on iPad Witout Developer ID?
- Replies: 4
- Views: 450
Re: Installing on iPad Witout Developer ID?
If I remember right, you can cable the device to your computer, select it in the Development -> Test Target menu, and choose Test. I don't think you need a profile for that.
- Tue Jan 19, 2021 6:32 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: button/icon vs. image?
- Replies: 15
- Views: 1011
Re: button/icon vs. image?
But I am still confused. Does the image become in any way at all a property of that button? Or does it simply overlie it to a certain extent to form a pair of controls that travel together? I assume the latter, and can relax. We're just talking about using the imported image's ID as a button icon. ...
- Tue Jan 19, 2021 6:22 pm
- Forum: Off-Topic
- Topic: Only Connect
- Replies: 10
- Views: 472
Re: Only Connect
Too cool! Way to go, Ali!
Re: Big Sur?
I used the Project Browser once . . . I did too. Maybe even twice. The Application Browser is easier when working with lots of stacks with lots of cards, and I prefer its horizontal layout which allows me to see more content at once. I wish they hadn't hidden it in the Development menu. The only th...
- Sun Jan 17, 2021 11:45 pm
- Forum: iOS Deployment
- Topic: Problem with mobilecontrol player object
- Replies: 7
- Views: 634
Re: Problem with mobilecontrol player object
I'll assume that this is actually two lines, right? mobileControlSet "TestPlayer", "filename", "ht tps://commondata storage. google apis. com/gtv-videos-bucket/sample/BigBuckBunny. mp4" mobileControlDo "TestPlayer", "play" Have you tried testing with a different online file? It may be an issue with ...
- Sun Jan 17, 2021 6:33 am
- Forum: Linux
- Topic: How to Keep Tool Bar on working plan ? even with Ctrl+T
- Replies: 45
- Views: 1382
Re: How to Keep Tool Bar on working plan ? even with Ctrl+T
The message box is basically LC's command line. Type the command line and hit either return or enter to execute it. The multiline pane (second tab) allows many lines, and so return begins a new line and enter executes the commands sequentially. The message box is invaluable for setting and getting a...