Search found 168 matches

by peter-b
Wed Sep 28, 2016 10:20 pm
Forum: LiveCode Builder
Topic: type (SOLVED)
Replies: 10
Views: 8301

Re: type (SOLVED)

Java will definitely be useful and good to have. But I was more hoping for Obj-C myself. So far I have had no response to my posts on the blog site or here on the forum. I have just sent an email via Heather and hopefully we'll hear something back soon. Or maybe even a pledge refund. Though I doubt...
by peter-b
Mon Sep 26, 2016 11:51 am
Forum: iOS Deployment
Topic: Codesigning error
Replies: 18
Views: 14123

Re: Codesigning error

Did you update to 8.1.1-rc-1 yet? 8.1.1 has a large number of fixes related to codesigning for Xcode 8 and for Mac OS 10.12.

Please let me know if you're still experiencing issues when deploying with LiveCode 8.1.1.
by peter-b
Mon Sep 26, 2016 11:49 am
Forum: Android Deployment
Topic: Android App Keeps Crashing
Replies: 5
Views: 6014

Re: Android App Keeps Crashing

Could you please file a bug report so that I can make sure that this gets investigate? Thanks :)
by peter-b
Tue Sep 20, 2016 10:09 am
Forum: LiveCode Builder
Topic: type (SOLVED)
Replies: 10
Views: 8301

Re: type alias definitions

Bernd: MaxV is referring to type definitions in LiveCode Builder, not the "type" command in LiveCode Script. MaxV: For example: public type URI is String public handler GetHomeURI() returns URI return "https://livecode.com/" end handler It's not currently mega useful to use type definitions in LCB, ...
by peter-b
Mon Sep 19, 2016 11:35 am
Forum: iOS Deployment
Topic: When can we simulate iOS 10?
Replies: 10
Views: 7235

Re: When can we simulate iOS 10?

A quick update: we expect to deliver built-in Xcode 8 support in LiveCode 8.1.1-rc-1, but we are currently working several release-critical issues.
by peter-b
Mon Sep 19, 2016 11:33 am
Forum: iOS Deployment
Topic: iOS Responsiveness
Replies: 6
Views: 4464

Re: iOS Responsiveness

In addition to the significant overhead of emulating the ARM instruction set under the very different x86 Just to correct a misconception here: the iOS simulator does not emulate the ARM instruction set. The iOS simulators are actually x86 / x86-64 programs, and when you deploy your app for the iOS...
by peter-b
Fri Sep 02, 2016 5:00 pm
Forum: LiveCode Builder
Topic: Path of canvas
Replies: 3
Views: 3644

Re: Path of canvas

When I have this problem, I normally transform the canvas (using "scale tCanvas by tScale" and "translate tCanvas by tVector") so that the area I intend to draw into has unit height and width and located at the origin. Then it is very easy to position and scale your graphics correctly!
by peter-b
Fri Sep 02, 2016 3:55 pm
Forum: LiveCode Builder
Topic: Path of canvas
Replies: 3
Views: 3644

Re: Path of canvas

I don't think it's currently available. Can you give an example of what problem you would be able to solve using this that could not otherwise be handled a different way?
by peter-b
Tue Aug 16, 2016 8:01 am
Forum: MergEXT
Topic: mergExt Indy Latest - download issue
Replies: 2
Views: 5703

Re: mergExt Indy Latest - download issue

There was a server issue on Monday morning that may have caused problems with the mergExt update. Please try again.
by peter-b
Tue Aug 16, 2016 7:59 am
Forum: Android Deployment
Topic: Android App Keeps Crashing
Replies: 5
Views: 6014

Re: Android App Keeps Crashing

I strongly recommend re-deploying a new version of your app with LiveCode 8.0.2 (the current stable release of LiveCode 8.0). If I remember correctly, a fix for crashes on older versions of Android was introduced between 8.0.0 DP 16 and the final 8.0.0 release. LiveCode 8.0.2 contains many other fix...
by peter-b
Mon Aug 15, 2016 12:57 pm
Forum: Android Deployment
Topic: Android App Keeps Crashing
Replies: 5
Views: 6014

Re: Android App Keeps Crashing

Which version of LiveCode are you deploying with?
by peter-b
Mon Aug 15, 2016 12:56 pm
Forum: Android Deployment
Topic: XMLRPC request on mobile
Replies: 2
Views: 2822

Re: XMLRPC request on mobile

The XML RPC external is showing its age and I would be surprised if it worked correctly on mobile.

For XML RPC on mobile, your best option may be to use the revXML external to construct a query and then use libURL to send the request.
by peter-b
Thu Jul 21, 2016 12:23 pm
Forum: Announcements
Topic: Updates to LiveCode's platform support policy
Replies: 0
Views: 6661

Updates to LiveCode's platform support policy

Today, we are announcing some changes to the list of officially-supported platforms, i.e. the platforms that we use to test LiveCode, and that you can normally expect our support team will be able to help you with. Please read more this change on the LiveCode blog: https://livecode.com/updated-platf...
by peter-b
Tue Jun 28, 2016 1:04 pm
Forum: LiveCode Builder
Topic: array syntax in LCB
Replies: 9
Views: 9442

Re: array syntax in LCB

Great, I'm glad you got it working. The main difference between LCB and LCS is that LCB is much stricter. For example, it's an error to try and access things that don't exist, such as a key in an array which has not previously been assigned. This strictness is very intentional; it's designed to help...
by peter-b
Mon Jun 27, 2016 12:00 pm
Forum: LiveCode Builder
Topic: array syntax in LCB
Replies: 9
Views: 9442

Re: array syntax in LCB

I think you're a bit confused about what the "put" command does, and what an array literal is. Firstly, the "put" command always completely overwrites its right hand side: variable tList as List put ["foo"] into tList -- Now tList is ["foo"] put ["foo", "bar"] into tList -- Now tList is ["foo", "bar...

Go to advanced search