Getting Started with LiveCode - Complete Beginners • What are the major...
It looks like I am going to have to move from LC 9 to LC 10 and then to "Create?Statistics: Posted by DR White — Thu Jul 25, 2024 12:15 pm
View ArticleTalking LiveCode • Re: Code folding for Livecode 9.6.9 and up
Hello all,I successfully installed Code Folding(link to the current version:)viewtopic.php?f=9&t=38912&start=30#p229971in LC 9.6.13 (rc1)LC 10.0.0 (rc1)LC Create 1.0 (DP1) in "Classic"...
View ArticleOff-Topic • Add Quote marks around commas in a text file with code
I am working on an App that takes input from a user and saves data in a csv file.The fields don't require commas but users might put them in some of the fields such as Address data.I don't want to...
View ArticleOff-Topic • Re: Add Quote marks around commas in a text file with code
Hi.Quote is a constant in liveCode. Quotes normally delimit a literal, as in "chicken". So you have to have the constant in order to:CODE: answer "chcken" && quote & "chcken" &...
View ArticleiOS Deployment • Re: Browser widget exit fullscreen detection fails IOS
Turned out not a be a Livecode issue but needed to add enablejsapi=1 on my youtube link. Just for anyone that may come across this.Statistics: Posted by istech — Fri Jul 26, 2024 8:20 pm
View ArticleGetting Started with LiveCode - Experienced Developers • Polygrid - I'm in...
Hi:The more I use it the more I love it. Polygrid is aesthetically charming,fast, elegant and generally a joy to use. BUT... Say I want to update cell 3,3 of my polygrid. At the moment my solution...
View ArticleGetting Started with LiveCode - Experienced Developers • Re: Polygrid - I'm...
Hi Bruce,I feel like a domestic abuser to the beauty that is polygridplease DON'T! Like in showbiz, behind the curtains it will get a bit ugly. There are several ways to do so and they are "similar"...
View ArticleGetting Started with LiveCode - Experienced Developers • Polygrid - text...
Good morning,My dictionary is working ok again (thankfully). So I just looked this up, but nothing there.I have a polygrid column, which I would like to either text-wrap or some other device for...
View ArticleGetting Started with LiveCode - Complete Beginners • Re: Datagrid (FORM)
Hi everyone,Thanks everyone for the response.Statistics: Posted by lemodizon — Sun Jul 28, 2024 5:01 am
View ArticleGetting Started with LiveCode - Experienced Developers • Re: Polygrid - text...
Hello @bbalmerTotalFluencyfor this to work you'll need to set the contentType of the column to text-multiline, and maybe increase the rowHeight of the widget to allow several lines to fit...
View ArticleTalking LiveCode • PolyList and Image data
I am trying to use the PolyList widget, however I cannot get the image-data to display.This is very simple setup... I have a PolyList that only has the item "image" which is set to the content type of...
View ArticleTalking LiveCode • Re: PolyList and Image data
Hi Greg,putting "the imagedata" of an image into another image requires that both source and target image have the SAME dimensions (height and width).Otherwise it will not work andI think this also...
View ArticleGetting Started with LiveCode - Experienced Developers • Re: PolyList and...
It looks like using DataGrid might be the best solution for achieving variable row heights. The example provided by Andreas on how to create a form with variable line heights could be quite useful....
View ArticleGames • Building a 3D Library...Dragon Style!
Hi,So I wanted a spinning 3D logo on a splash page and a few days later I started this...Happy CodingMike Nu_3D Library.livecode.zip Building a 3D Library for LiveCode…Dragon Style! [An...
View ArticleHTML5 • Re: Need to do a browser "empty cache", is it possible?
I know it was quite awhile ago for this question, but I finally found an ANSWER!!!I inserted the following line into the "opencard" function:set the httpHeaders to "Cache-Control: max-age=0"This...
View ArticleGames • Re: Building a 3D Library...Dragon Style!
Hi, just a quick update. There are a few bugs in some of the test code and I am in the process of a revision to include more demos of various 3D shapes designed with only line graphic objects as well...
View ArticleGetting Started with LiveCode - Complete Beginners • Problem with Widget Spinner
Hi,Using this codeCODE: lock screen send "mouseup" to btn "inputdg3" unlock screen show widget "spinner" send "mouseup" to btn "setDG " send "mouseup" to btn "listanother" of cd "manage products"The...
View ArticleGetting Started with LiveCode - Complete Beginners • Re: Problem with Widget...
Here's something "babyish" made with LC 8.2 DP 2 (because I happen to be in front of a machine running MacOS 10.7.5 today). --Button code:CODE: on mouseUp if the vis of widget "Spinner" is true then...
View ArticleTalking LiveCode • Why me???
This snippet in a small test stack shows three ways to escape a repeat loop when the variable "endSpace" reaches 30:CODE: on mouseup put 29.9 into endSpace repeat until endSpace / 6 = 5 --repeat until...
View ArticleTalking LiveCode • Re: Why me???
Hi Craig,I never ever used "repeat until...", no idea why. I always use an IF THEN condition to exit the loop if neccessary, maybe this will work for you:CODE: on mouseup put 29.9 into endSpace repeat...
View Article