Search found 453 matches

by Jellicle
Tue Apr 22, 2014 9:07 am
Forum: iOS Deployment
Topic: finding bluetooth Keyboard paired to ipad or not using LC.
Replies: 1
Views: 1924

Re: finding bluetooth Keyboard paired to ipad or not using L

LiveCode can't do that. But it's extendable with external code written in objective C. Look at mergext.com - the developer there might be able to help you.

Gerry
by Jellicle
Sun Apr 20, 2014 9:01 am
Forum: iOS Deployment
Topic: get duration of audio on iOS player
Replies: 4
Views: 3363

Re: get duration of audio on iOS player

Stick this code in the card script: local playerID on makeplayer mobileControlCreate "player", "playerControl" -- the second param is the name you give the object - can be anything put the result into playerID mobileControlSet playerID, "useApplicationAudioSession", "true" mobileControlSet playerID,...
by Jellicle
Sun Apr 20, 2014 5:33 am
Forum: iOS Deployment
Topic: get duration of audio on iOS player
Replies: 4
Views: 3363

Re: get duration of audio on iOS player

As far as I know the player object isn't available on iOS. You can use channels or the iOS native player instead, but the native player is the only one that gives you access to the duration of an audio file. It has lots of other properties you can set and get (the documentation mentions movies but i...
by Jellicle
Tue Apr 15, 2014 9:30 pm
Forum: iOS Deployment
Topic: I need the reader to continue on the last page he read.
Replies: 5
Views: 3569

Re: I need the reader to continue on the last page he read.

On iOS the app binary cannot be changed at runtime. Write the page number out to a text file and read that file on restart.
Gerry
by Jellicle
Tue Apr 15, 2014 5:38 am
Forum: iOS Deployment
Topic: iOS development and release, path and license needed?
Replies: 6
Views: 3664

Re: iOS development and release, path and license needed?

Looking at the license comparison chart on the LC site, you can't deploy to the iOS with the community edition.

Gerry
by Jellicle
Mon Apr 14, 2014 8:51 am
Forum: iOS Deployment
Topic: Locking an ios text input with mobilecontrolset
Replies: 7
Views: 4817

Re: Locking an ios text input with mobilecontrolset

I use this in a current project:

Code: Select all

 mobileControlSet hMultilineControlD, "editable", "false"
Works fine.

Are you sure that the script your example code is from has access to the scrollidStudents variable?

Gerry
by Jellicle
Mon Apr 14, 2014 8:46 am
Forum: iOS Deployment
Topic: populating a datagrid fails in simulator
Replies: 9
Views: 7234

Re: populating a datagrid fails in simulator

I have tried the recommendation of putting a datagrid on card 1 and hiding it, but that didn't work. I'm not surprised - that's voodoo. Tell us more about the format of the data, the kind of data grid and perhaps show us the script you are trying to debug. It's hard to help when someone just says "...
by Jellicle
Sun Apr 13, 2014 10:26 am
Forum: iOS Deployment
Topic: Apple Store's requirement as for native look and function
Replies: 6
Views: 3561

Re: Apple Store's requirement as for native look and functio

. Have you got any ideas or tips? keram My data grids tend towards the fairly simple - list views with a few fields and graphics in each item. I also only develop for iOS so I'm targeting reasonably fast devices. My data grids scroll smoothly when I set the acceleratedrendering of the stack to true...
by Jellicle
Sun Apr 13, 2014 3:21 am
Forum: iOS Deployment
Topic: iOS 7 blur effect
Replies: 2
Views: 2340

Re: iOS 7 blur effect

That lesson shows a similar effect to Apple's iOS blur, but on a desktop/laptop. On mobile you really don't have the power to do it efficiently using that method. Apple has optimised their blur routines but I don't believe they are available inside LC without an external, and maybe not even then - t...
by Jellicle
Sat Apr 12, 2014 10:57 pm
Forum: iOS Deployment
Topic: Apple Store's requirement as for native look and function
Replies: 6
Views: 3561

Re: Apple Store's requirement as for native look and functio

Keram

What have you tried to make your data grids scroll faster?

Gerry
by Jellicle
Sat Apr 12, 2014 11:17 am
Forum: iOS Deployment
Topic: Apple Store's requirement as for native look and function
Replies: 6
Views: 3561

Re: Apple Store's requirement as for native look and functio

Apple won't care but your users will. iOS users expect native behaviours. Why would you use a scroll bar instead?

Gerry
by Jellicle
Tue Apr 08, 2014 8:11 am
Forum: iOS Deployment
Topic: How can I browse html file from local path?
Replies: 2
Views: 2416

Re: How can I browse html file from local path?

I'll leave it to you to find out how to make a browser control. When you've got that sorted out, do this: put (specialfolderpath ("Documents") & "/localfile.html") into theURL replace " " with "%20" in theURL -- weird, but required mobileControlSet "Browser", "url", theURL The above assumes a browse...
by Jellicle
Fri Apr 04, 2014 9:17 pm
Forum: iOS Deployment
Topic: Reading files from the internet server
Replies: 3
Views: 2696

Re: Reading files from the internet server

Yep a cache issue. Simon's solution may work - it depends on the server. Some auto-forward URLs like that to an error page,which is no help at all!

See bug http://quality.runrev.com/show_bug.cgi?id=10672.

Gerry
by Jellicle
Fri Mar 28, 2014 7:33 am
Forum: Off-Topic
Topic: Flip Your Lid
Replies: 25
Views: 16374

Re: Flip Your Lid

...by which you mean "it doesn't fake a page curl".

Gerry
by Jellicle
Sun Mar 23, 2014 10:38 pm
Forum: iOS Deployment
Topic: App switcher/multi-tasking thumbnail
Replies: 13
Views: 9945

Re: App switcher/multi-tasking thumbnail

This this remains unsupported by RR out of the box defies belief, frankly, given that pretty much every app on the ios App Store can be properly sent to the background. Yes, it's the "wait" command that keeps them from making it possible by default. Surely LC can check for wait commands when it comp...

Go to advanced search