Hi Thierry,
I am still very interested in editing Livecode using BBEdit. Please let me know when/if this might be available for testing.
Henry
Search found 8 matches
- Sun Feb 20, 2022 2:48 am
- Forum: Mac OS
- Topic: BBEdit 12.5 Language module for LC
- Replies: 32
- Views: 123352
- Fri Oct 11, 2019 1:07 am
- Forum: Mac OS
- Topic: BBEdit 12.5 Language module for LC
- Replies: 32
- Views: 123352
Re: BBEdit Language module for LC
I am also interested in a Livecode language module for BBedit.
- Sat Jan 05, 2019 12:26 am
- Forum: iOS Deployment
- Topic: How to identify iPhone X
- Replies: 14
- Views: 24245
Re: How to identify iPhone X
I have tested iPhoneHasNotch() on an iPhone X, iPhone Xs, iPhone Xr and iPhone Xs Max and it returns true (as expected) in each case. The function returns false on an iPhone 6S (which has no notch), also as expected.
- Sat Dec 29, 2018 9:20 am
- Forum: iOS Deployment
- Topic: How to identify iPhone X
- Replies: 14
- Views: 24245
Re: How to identify iPhone X
This is the code that I now use to detect an iPhone X, Xs, Xr or Xs Max (the iPhones with notches). This replaces the IsIPhoneX function that I posted earlier this year.
function iPhoneHasNotch
local tiPhoneHasNotch,tScreenRect,tScreenHeight,tScreenWidth
put false into tiPhonehasNotch
if ...
function iPhoneHasNotch
local tiPhoneHasNotch,tScreenRect,tScreenHeight,tScreenWidth
put false into tiPhonehasNotch
if ...
- Sun Mar 18, 2018 6:46 am
- Forum: iOS Deployment
- Topic: How to identify iPhone X
- Replies: 14
- Views: 24245
Re: How to identify iPhone X
Try this:
Function isIPhoneX
local tIsiPhoneX,tScreenRect,tScreenHeight,tScreenWidth
put false into tIsiPhoneX
put the ScreenRect into tScreenRect
if word 1 of the machine is "iPhone" and MobilePixelDensity() = 3 then
put item 3 of tScreenRect into tScreenWidth
put item 4 of tScreenRect into ...
Function isIPhoneX
local tIsiPhoneX,tScreenRect,tScreenHeight,tScreenWidth
put false into tIsiPhoneX
put the ScreenRect into tScreenRect
if word 1 of the machine is "iPhone" and MobilePixelDensity() = 3 then
put item 3 of tScreenRect into tScreenWidth
put item 4 of tScreenRect into ...
- Fri Mar 14, 2014 5:45 pm
- Forum: iOS Deployment
- Topic: Xcode 5.1 problem?
- Replies: 15
- Views: 18955
Re: Xcode 5.1 problem?
After upgrading my iPad to iOS 7.1 I could no longer install iOS apps compiled under LC 6.5.2 using the xCode 5.0.2 organizer. That prompted my updating to xCode 5.1 and losing the ability to run LC apps in the iOS simulator. Hopefully RC2 will appear soon as developing without the iOS simulator is ...
- Wed Mar 12, 2014 8:19 pm
- Forum: iOS Deployment
- Topic: Xcode 5.1 problem?
- Replies: 15
- Views: 18955
Re: Xcode 5.1 problem?
I updated my development iPad to iOS 7.1 and installed the new version of xCode (5.1). Prior to doing so I made copies of the xCode 5.0 folders :
Applications/xCode.app/Developer/Platforms/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk
Applications/xCode.app/Developer ...
Applications/xCode.app/Developer/Platforms/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk
Applications/xCode.app/Developer ...
- Wed Dec 05, 2012 6:03 am
- Forum: iOS Deployment
- Topic: IOS Mail Style "Multi Line Scoller"
- Replies: 10
- Views: 10323
Re: IOS Mail Style "Multi Line Scoller"
I agree that scrolling data grids under iOS LC are sluggish. LC native support for UITableView should be relatively easy to implement and a huge plus!