Search found 144 matches

by splash21
Tue Jul 04, 2017 4:37 pm
Forum: Announcements
Topic: sQuiRt library for creating QR codes is now public domain
Replies: 6
Views: 11159

sQuiRt library for creating QR codes is now public domain

The library now no longer requires a registration code - all features are available in this free, public domain version.

http://splash21.com/sQuiRt.php

8)
by splash21
Fri Aug 22, 2014 9:24 am
Forum: Android Deployment
Topic: Push notification error: SERVICE_NOT_AVAILABLE
Replies: 2
Views: 4263

Re: Push notification error: SERVICE_NOT_AVAILABLE

Is the time set correctly on the device that fails to register with the GCM service?
by splash21
Tue Jul 22, 2014 4:27 pm
Forum: Talking LiveCode
Topic: sql insert with special char
Replies: 3
Views: 4411

Re: sql insert with special char

If tDescription is a variable with your special characters, then the following will work.. revExecuteSQL databaseID, "INSERT INTO MyTable (id, description) VALUES (0, :1)", "tDescription" The :1 in the query is replaced with the tDescription variable - check out revExecuteSQL in the LiveCode diction...
by splash21
Wed Jul 16, 2014 7:44 am
Forum: iOS Deployment
Topic: Push Notifications Examples
Replies: 4
Views: 5399

Re: Push Notifications Examples

Here's a post from the use list from August, 2012 - should still work fine today 8) The server now parses .lc scripts, so I've changed the file extensions to .lcx so you can view them through a browser. ----- August 2012 ----- The following info will hopefully help, or at least give you some ideas. ...
by splash21
Sat Jun 28, 2014 8:37 am
Forum: User Groups and Events
Topic: Central Scotland User Group
Replies: 3
Views: 15500

Re: Central Scotland User Group

Anyone interested in reviving this group?
by splash21
Thu Jun 26, 2014 11:17 pm
Forum: CGIs and the Server
Topic: URL shortener
Replies: 1
Views: 4457

URL shortener

I've created a URL shortener with LC server as a test project - feel free to bash it and let me know if it works properly (or not) - especially if you can break it! :twisted:

http://8up.uk
by splash21
Thu Jun 26, 2014 11:08 pm
Forum: CGIs and the Server
Topic: start session hangs
Replies: 3
Views: 6667

Re: start session hangs

I came across the same issue today. I was generating 4 images on the fly with html img tags referencing a .lc file, but after a few hits, the apache error log reported that livecode-server was timing out. Clearing the session files fixed the problem, but only briefly. The .lc file that was creating ...
by splash21
Tue Jun 24, 2014 12:36 pm
Forum: iOS Deployment
Topic: Smooth strokes
Replies: 36
Views: 25855

Re: Smooth strokes

Hi, Mag. If you look in the LiveCode user samples for "Air Traffic Control", you'll find an example of some smoothing as lines are drawn with the mouse. It's not great, but does work - and can be improved if you really need it :D Also have a look at the Doodle Cards app (created with LC for iOS). It...
by splash21
Mon Jun 23, 2014 3:23 pm
Forum: Android Deployment
Topic: Search in Play Store has wrong Title
Replies: 4
Views: 4106

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:19 pm
Forum: Android Deployment
Topic: Signing apk fixed in 6.6.2 ?
Replies: 1
Views: 2527

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: 4106

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: 2527

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
Mon Jun 16, 2014 10:41 pm
Forum: Android Deployment
Topic: mouse events over the group
Replies: 1
Views: 2467

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: 6677

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
Wed Jun 11, 2014 3:39 pm
Forum: Databases
Topic: simultaneous multiple database access
Replies: 6
Views: 6677

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