Search found 746 matches

by quailcreek
Tue Dec 18, 2018 12:15 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Strategy to construct a Stack
Replies: 16
Views: 9642

Re: Strategy to construct a Stack

You could have one DB with a table for each building type. A DB approach would allow for the 10 users you said you wanted. Having 10 users access a single LC stack over a network would cause you a lot more trouble than setting ups a well thought out and designer DB. The DB would also be much faster ...
by quailcreek
Mon Dec 17, 2018 9:52 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Strategy to construct a Stack
Replies: 16
Views: 9642

Re: Strategy to construct a Stack

Hi and welcome to the forum. I would suggest that instead of creating cards on the fly, you have a card for each building type pre-created. Then, on your home cards, you could have buttons or some other means for the user to navigate to the desired building type card. I would also recommend that you...
by quailcreek
Sun Nov 18, 2018 2:49 am
Forum: iOS Deployment
Topic: Open Printing to PDF on IOS
Replies: 4
Views: 5100

Re: Open Printing to PDF on IOS

rreHardCopy is needed in iOS to print the pdf. I worked this all out a couple of years ago.

This is a thread that I went thru when I was doing something similar. It might give you some ideas.

http://forums.livecode.com/viewtopic.php?f=49&t=24391
by quailcreek
Sat Nov 17, 2018 11:36 pm
Forum: iOS Deployment
Topic: Xcode IOS Development SDK's folder location
Replies: 19
Views: 16176

Re: Xcode IOS Development SDK's folder location

Have you installed the Xcode 10 Command Line tools?
Command Line Tools.png
by quailcreek
Sat Nov 17, 2018 9:49 pm
Forum: iOS Deployment
Topic: Open Printing to PDF on IOS
Replies: 4
Views: 5100

Re: Open Printing to PDF on IOS

Look up rreHardcopyPrintPDF in the dictionary. You will also need to include the rrehardcopy library in your apps standalone settings under the inclusions tab.
by quailcreek
Sun Nov 11, 2018 11:34 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Problem with mobile scroller
Replies: 16
Views: 8578

Re: Problem with mobile scroller

There's a typo in both of the cards scripts. ssScrollerID should be sScrollerID
Also I believe your vars should be local and not global. More importantly, why are you using sub-stacks instead of cards on mobile?

Code: Select all

 put the result into ssScrollerID
should be

Code: Select all

 put the result into sScrollerID
by quailcreek
Sun Nov 11, 2018 11:18 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Problem with mobile scroller
Replies: 16
Views: 8578

Re: Problem with mobile scroller

I think you're better off sending a livecode file in a standard .zip format instead of .rar
by quailcreek
Sun Nov 11, 2018 11:11 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: A link conundrum
Replies: 11
Views: 6005

Re: A link conundrum

I'm not sure why you're adding a removing the links that way. I usually set up all the links in the IDE and leave them. set the textStyle of line 1 of fld "The Fld" to "link" set the linkText of line 1 of fld "The Fld" to "https://www.livecode.com" Then in the fld script do your navigation to the UR...
by quailcreek
Sat Nov 10, 2018 11:13 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Datagrid problem
Replies: 9
Views: 5827

Re: Datagrid problem

What the first DG is created in a stack there is also a sub-stack which is automatically created. There is also a card created in that sub-stack which is linked to the new DG. Each subsequently created DG causes a new card in the sub-stack to be created and linked to the new DG. These cards contain ...
by quailcreek
Fri Nov 02, 2018 11:31 pm
Forum: iOS Deployment
Topic: Xcode IOS Development SDK's folder location
Replies: 19
Views: 16176

Re: Xcode IOS Development SDK's folder location

LC 9.0.1 does not support Xcode 10. You will need Xcode 9.4.1 until LC 9.0.2 rc1 is released.
by quailcreek
Wed Oct 17, 2018 10:03 pm
Forum: iOS Deployment
Topic: Disappearing Buttons using 9.0.1 Simulator
Replies: 8
Views: 6311

Re: Disappearing Buttons using 9.0.1 Simulator

Panos,
I sent my stack data to your email.
by quailcreek
Wed Oct 17, 2018 1:00 am
Forum: iOS Deployment
Topic: Disappearing Buttons using 9.0.1 Simulator
Replies: 8
Views: 6311

Re: Disappearing Buttons using 9.0.1 Simulator

I'm having a similar problem with one of my iOS stacks. I have set the accelerated rendering to true but no-joy. I see the same non rendered controls on both the sim and on my device. LC 9.0.1 Xcode 9.4.1 This is what it should look like. LC Capture.png This is wheat shows in the sim and device. Sim...
by quailcreek
Sat Oct 06, 2018 11:14 pm
Forum: Talking LiveCode
Topic: Why tsNet.bundle?
Replies: 8
Views: 5649

Re: Why tsNet.bundle?

What version of LC and xCode?
Do you have the tsNet library checked in the inclusions?
by quailcreek
Fri Sep 07, 2018 11:49 pm
Forum: Databases
Topic: Import Images From mySQL to a Datagrid Table
Replies: 4
Views: 5737

Re: Import Images From mySQL to a Datagrid Table

Actually you can use dgText to populate a form DG. This is how I do it. put "SELECT FigureID, Condition, theDescription, bCodeNum FROM " & theCollection & " ORDER by bCodeNum" into tSQLStatement put revDataFromQuery(tab,cr, (the uDatabaseID of this stack) ,tSQLStatement) into tData put "ID" & tab &"...

Go to advanced search