Search found 25 matches

by sincipient820
Tue Aug 19, 2014 9:26 pm
Forum: Games
Topic: Local variables in repeat
Replies: 2
Views: 4213

Re: Local variables in repeat

Thanks that's the solution I was looking for.
by sincipient820
Tue Aug 19, 2014 2:22 am
Forum: Games
Topic: Local variables in repeat
Replies: 2
Views: 4213

Local variables in repeat

I have 8 local variables that I need to put into 8 corresponding fields. I'm wondering how I can do this with repeat. My code doesn't work but is as follows.... locals svar1 local svar2 ----and so on until local svar8 put 5 into svar1 put 8 into svar2 --- and so on with different starting points rep...
by sincipient820
Thu Dec 12, 2013 8:06 pm
Forum: Android Deployment
Topic: Social media sharing (FB likes, posts and tweets!)
Replies: 0
Views: 2276

Social media sharing (FB likes, posts and tweets!)

In an attempt to use social media to help promote an app, I am wondering about the capabilities of integrating FB "likes", FB posts and tweets. For example, while in the app the user can be prompted to share.... if the user "likes" my FB page, posts a preset FB message, or tweets a preset tweet they...
by sincipient820
Tue Sep 10, 2013 1:12 am
Forum: Android Deployment
Topic: Android Game Center??
Replies: 3
Views: 3592

Re: Android Game Center??

ok, this is something i am very interested in... however, i am relatively new to LC but have quickly become proficient.. that being said, i have no idea where to start with externals and really what they are.. are they coded in LC?... can you direct me to some reading material to brush up on externa...
by sincipient820
Fri Sep 06, 2013 9:42 pm
Forum: Android Deployment
Topic: In app purchase Error (Solved)
Replies: 2
Views: 4073

Re: In app purchase Error (Solved)

solved the 2 errors i had.... 1. the identifier is shown as com.yourCo.yourApp.consumable in the LC lesson, however, i just needed com.yourCo.yourApp 2. the mobilePurchaseCreate was shown with the identifier in the LC lessson, however, the productID was required after these two changes the in-app pu...
by sincipient820
Fri Sep 06, 2013 3:13 am
Forum: Android Deployment
Topic: Android Game Center??
Replies: 3
Views: 3592

Android Game Center??

I see that the mergExt external has iOS Game Center capability... is there an equivalent for Android.... or another way to configure the Android Game Service?... thanks
by sincipient820
Sun Sep 01, 2013 5:33 pm
Forum: Android Deployment
Topic: In app purchase Error (Solved)
Replies: 2
Views: 4073

Re: In app purchase Error

update... I've been able to set up the item in the android developer account and it is activated and published. However, after following the iOS lesson it can not find the product. The error message "The item you were attempting to purchase could not be found" is returned. Following the lesson there...
by sincipient820
Tue Aug 27, 2013 3:19 pm
Forum: iOS Deployment
Topic: iOS dev account for community edition?
Replies: 1
Views: 2407

iOS dev account for community edition?

Just to clarify... If I'm using LC 6.0 to make iOS apps for my personal device (not for distribution in the app store) do I still need to get the apple developer account for 99$/year?... thanks
by sincipient820
Thu Aug 22, 2013 12:28 am
Forum: Android Deployment
Topic: In app purchase Error (Solved)
Replies: 2
Views: 4073

In app purchase Error (Solved)

The LC lesson http://lessons.runrev.com/s/lessons/m/4069/l/48771-how-do-i-implement-in-app-purchases-in-livecode is for iOS and requires iTunes Connect. I'm looking to implement on Android and expect some differences in coding as well as the required settings in the Android developer account. Any he...
by sincipient820
Sat Jun 22, 2013 6:31 pm
Forum: Databases
Topic: Save database between standalone sessions
Replies: 3
Views: 4387

Re: Save database between standalone sessions

Sorry the "code" function wasn't working when i wrote this.... anyway, its Android and to open the db i use put URL ("binfile:" & specialFolderPath("engine") & "/Alert.sqlite") into URL ("binfile:" & specialFolderPath("Documents") & "/Alert.sqlite") local tDatabasePath, tSQLQuery put specialFolderPa...
by sincipient820
Sat Jun 22, 2013 12:24 am
Forum: Databases
Topic: Save database between standalone sessions
Replies: 3
Views: 4387

Save database between standalone sessions

I want a SQLite database that the mobile user can add and save to... then on subsequent uses be able to access the data they added on prior sessions... I have been able to get the add and save function working on my pc but the save function between sessions doesn't work in standalone (i think bc of ...
by sincipient820
Fri May 10, 2013 8:54 pm
Forum: Android Deployment
Topic: DelayTouches for Android?
Replies: 10
Views: 8388

Re: DelayTouches for Android?

Your suggestions seem to work great... thanks
by sincipient820
Wed May 08, 2013 7:00 pm
Forum: Android Deployment
Topic: DelayTouches for Android?
Replies: 10
Views: 8388

Re: DelayTouches for Android?

Thanks Jacque, I actually had already applied a similar code to identify whether it was scrolling, tapping or nothing... on tap it saves the selections to a cProperty and then on ScrollerEndDrag (after scrolling stops and there is no action) it displays them.... this is in part where the problem lie...
by sincipient820
Tue Apr 30, 2013 1:44 am
Forum: Android Deployment
Topic: DelayTouches for Android?
Replies: 10
Views: 8388

DelayTouches for Android?

I have a scrolling list field and added a native iOS type scroller to the field... It scrolls great, however, the list selection behavior is not ideal... when the user initiates scrolling it selects lines in the field... for multi select fields this is especially problematic because it highlights a ...
by sincipient820
Fri Apr 12, 2013 10:58 pm
Forum: Android Deployment
Topic: hilitePattern not resizing
Replies: 7
Views: 5314

Re: hilitePattern not resizing

thanks guys, i'll try to implement these suggestions this weekend and get back to the thread with results