http://splash21.com/sQuiRt.php
Search found 144 matches
- Tue Jul 04, 2017 4:37 pm
- Forum: Announcements
- Topic: sQuiRt library for creating QR codes is now public domain
- Replies: 6
- Views: 11975
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

http://splash21.com/sQuiRt.php
- Fri Aug 22, 2014 9:24 am
- Forum: Android Deployment
- Topic: Push notification error: SERVICE_NOT_AVAILABLE
- Replies: 2
- Views: 4622
Re: Push notification error: SERVICE_NOT_AVAILABLE
Is the time set correctly on the device that fails to register with the GCM service?
- Tue Jul 22, 2014 4:27 pm
- Forum: Talking LiveCode
- Topic: sql insert with special char
- Replies: 3
- Views: 4869
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...
- Wed Jul 16, 2014 7:44 am
- Forum: iOS Deployment
- Topic: Push Notifications Examples
- Replies: 4
- Views: 5871
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. ...
- Sat Jun 28, 2014 8:37 am
- Forum: User Groups and Events
- Topic: Central Scotland User Group
- Replies: 3
- Views: 16015
Re: Central Scotland User Group
Anyone interested in reviving this group?
- Thu Jun 26, 2014 11:17 pm
- Forum: CGIs and the Server
- Topic: URL shortener
- Replies: 1
- Views: 4876
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!
http://8up.uk
http://8up.uk
- Thu Jun 26, 2014 11:08 pm
- Forum: CGIs and the Server
- Topic: start session hangs
- Replies: 3
- Views: 7225
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 ...
- Tue Jun 24, 2014 12:36 pm
- Forum: iOS Deployment
- Topic: Smooth strokes
- Replies: 36
- Views: 27716
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...
- Mon Jun 23, 2014 3:23 pm
- Forum: Android Deployment
- Topic: Search in Play Store has wrong Title
- Replies: 4
- Views: 4601
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 
- Mon Jun 23, 2014 2:19 pm
- Forum: Android Deployment
- Topic: Signing apk fixed in 6.6.2 ?
- Replies: 1
- Views: 2804
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 
- Mon Jun 23, 2014 2:00 pm
- Forum: Android Deployment
- Topic: Search in Play Store has wrong Title
- Replies: 4
- Views: 4601
Re: Search in Play Store has wrong Title
What is the app's name?
- Mon Jun 23, 2014 1:20 pm
- Forum: Android Deployment
- Topic: Signing apk fixed in 6.6.2 ?
- Replies: 1
- Views: 2804
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...
- Mon Jun 16, 2014 10:41 pm
- Forum: Android Deployment
- Topic: mouse events over the group
- Replies: 1
- Views: 2733
Re: mouse events over the group
You don't have a group - you've just got a native browserbohmgyorgy1990 wrote:So i have a group control,
Check out mobileControlCreate in the dictionary - there are links in the 'See Also' section to various messages that apply to the native controls.
- Fri Jun 13, 2014 11:40 am
- Forum: Databases
- Topic: simultaneous multiple database access
- Replies: 6
- Views: 7408
Re: simultaneous multiple database access
If you are connected to a database and want some info from 'database2' included in the results, you can ....
...just specify the database name in the table alias 
Code: Select all
SELECT users.name, colours.favouriteColour FROM users, database2.colours AS colours WHERE users.userId = colours.userId- Wed Jun 11, 2014 3:39 pm
- Forum: Databases
- Topic: simultaneous multiple database access
- Replies: 6
- Views: 7408
Re: simultaneous multiple database access
You can run something like the following providing you have the appropriate privileges;
Check out the docs here...
http://dev.mysql.com/doc/refman/5.1/en/grant.html
Code: Select all
GRANT ALL ON otherDatabase.* TO 'user'@'localhost';http://dev.mysql.com/doc/refman/5.1/en/grant.html