Search found 361 matches

by splash21
Tue Jun 24, 2014 12:18 pm
Forum: MobGUI
Topic: Using RSA keys to auto copy files to server after build
Replies: 2
Views: 12326

Re: Using RSA keys to auto copy files to server after build

Thanks - it will hopefully save someone some time searching for the relevant pieces of info 8)

I've added some extra info for setting up the key to use by default instead of specifying it on the command line. Quite useful if you're also using command line stuff like ssh to log in to your server.
by splash21
Mon Jun 23, 2014 4:22 pm
Forum: MobGUI
Topic: Using RSA keys to auto copy files to server after build
Replies: 2
Views: 12326

Using RSA keys to auto copy files to server after build

To automatically copy files to a server after building an app, you can use RSA key pairs. Here are the steps I took on my MacBook (with the terminal app) to set things up on a Linux server... I've included the output of the commands for reference. To create a new RSA key pair, use the ssh-keygen com...
by splash21
Mon Jun 23, 2014 3:23 pm
Forum: Android Deployment
Topic: Search in Play Store has wrong Title
Replies: 4
Views: 3269

Re: Search in Play Store has wrong Title

I find it at #11 if I search for 'scales tutor' on a Neuropad tablet with 4.0.3, so I guess it's OK 8)
by splash21
Mon Jun 23, 2014 2:46 pm
Forum: MobGUI
Topic: MobGUI V1.28
Replies: 0
Views: 37027

MobGUI V1.28

Files can now be copied to a server automatically after building for both iOS and Android. For Android, a basic index.html file is created that points to the .apk file, so both files can just be copied to a folder for the app. I've been using SCP to securely copy the files, but you can also use SFTP...
by splash21
Mon Jun 23, 2014 2:19 pm
Forum: Android Deployment
Topic: Signing apk fixed in 6.6.2 ?
Replies: 1
Views: 2015

Re: Signing apk fixed in 6.6.2 ?

I just got back and tried installing the apk on a real device - everything seems to work OK 8)
by splash21
Mon Jun 23, 2014 2:00 pm
Forum: Android Deployment
Topic: Search in Play Store has wrong Title
Replies: 4
Views: 3269

Re: Search in Play Store has wrong Title

What is the app's name?
by splash21
Mon Jun 23, 2014 1:20 pm
Forum: Android Deployment
Topic: Signing apk fixed in 6.6.2 ?
Replies: 1
Views: 2015

Signing apk fixed in 6.6.2 ?

I can now upload a signed .apk file to google play using the standalone options in LC6.6.2 community. The last time I checked, this didn't work ( I got an error message about the file not being correctly signed ) - can anyone confirm that it's definitely fixed - or did I just get lucky? I don't reme...
by splash21
Thu Jun 19, 2014 1:21 pm
Forum: MobGUI
Topic: Little enhancement request
Replies: 2
Views: 7866

Re: Little enhancement request

Thanks for the suggestion - the next update is almost ready. The icon already has a function - it deselects all objects when you click it (which switches the plugin to the main card), so I've added a double click handler to switch between full height and reduced height and I like it! 8) I'm using it...
by splash21
Mon Jun 16, 2014 10:41 pm
Forum: Android Deployment
Topic: mouse events over the group
Replies: 1
Views: 2015

Re: mouse events over the group

bohmgyorgy1990 wrote:So i have a group control,
You don't have a group - you've just got a native browser :P

Check out mobileControlCreate in the dictionary - there are links in the 'See Also' section to various messages that apply to the native controls.
by splash21
Fri Jun 13, 2014 11:40 am
Forum: Databases
Topic: simultaneous multiple database access
Replies: 6
Views: 5493

Re: simultaneous multiple database access

If you are connected to a database and want some info from 'database2' included in the results, you can ....

Code: Select all

SELECT users.name, colours.favouriteColour FROM users, database2.colours AS colours WHERE users.userId = colours.userId
...just specify the database name in the table alias :)
by splash21
Thu Jun 12, 2014 2:30 pm
Forum: MobGUI
Topic: V1.27
Replies: 1
Views: 11094

Re: V1.27 - iOS extras - android next

I noticed that if the app name contains spaces, that causes a problem, so the next update should fix that as well as having some extra android functionality.
by splash21
Thu Jun 12, 2014 9:32 am
Forum: MobGUI
Topic: using orientationChanged with browser
Replies: 2
Views: 7898

Re: using orientationChanged with browser

The LC group is only a placeholder in the IDE for the browser that will appear on the device, so if you change it's dimensions, you then have to update the actual native control...

Code: Select all

mobileControlSet "myBrowser", "rect", the rect of group "myBrowser"
HTH

:)
by splash21
Wed Jun 11, 2014 3:39 pm
Forum: Databases
Topic: simultaneous multiple database access
Replies: 6
Views: 5493

Re: simultaneous multiple database access

You can run something like the following providing you have the appropriate privileges;

Code: Select all

GRANT ALL ON otherDatabase.* TO 'user'@'localhost';
Check out the docs here...
http://dev.mysql.com/doc/refman/5.1/en/grant.html
by splash21
Wed Jun 11, 2014 2:23 pm
Forum: MobGUI
Topic: V1.27
Replies: 1
Views: 11094

V1.27

iOS I've added the ability to create the .ipa file alongside the app bundle - for testing apps with services like testflight. You can also optionally create the html and plist files for distributing your app on a web site / drop box, etc. Finally, you can automatically transfer the files to a remot...
by splash21
Wed Jun 11, 2014 1:55 pm
Forum: MobGUI
Topic: Mobgui input field problem
Replies: 1
Views: 7013

Re: Mobgui input field problem

Does your stack work OK in LC6? There are some issues with native controls in the 7 DP releases.

Go to advanced search