Search found 13554 matches

by Klaus
Fri May 10, 2024 8:45 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Can You do this?
Replies: 11
Views: 196

Re: Can You do this?

Craig, this is pure HTML code: <p>Do you like this band?</p> <p><img src="band"></p> See the second line, which refers to the image on the current card named "band" and this is the html tag which does the magic: <img src="band"> I was also very surprised that this actually works. :-) On the other ha...
by Klaus
Fri May 10, 2024 2:38 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Can You do this?
Replies: 11
Views: 196

Re: Can You do this?

Hi Craig, the dictionary only states: ... The prompt can be either formatted text (in the property's format) or plain text. If the prompt contains <p> or a start/end tag pair, the answer command assumes the text is in the same format as the property. Otherwise, the answer command assumes the text is...
by Klaus
Fri May 10, 2024 1:45 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Can You do this?
Replies: 11
Views: 196

Re: Can You do this?

The magic word is HTML, and LCs Answer dialog supports this.
See screenshot, the name of my image is "band" and the buttons script is just:

Code: Select all

on mouseUp
   put fld 1 into tAnswer
   answer tAnswer with "Yes" or "No"
end mouseUp
lc_html2.png
by Klaus
Fri May 10, 2024 1:40 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Can You do this?
Replies: 11
Views: 196

Re: Can You do this?

Yes, I can! :-D
lc_html.png
by Klaus
Fri May 10, 2024 1:35 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: iOS certificates?
Replies: 4
Views: 159

Re: iOS certificates?

Hi David,

hm, that should work...

I had checked my profiles and the distribution and developer profiles for the same app do NOT end with the same ID number.
So that does not seem to be the problem.

Sorry, no brilliant idea in the moment.


Best

Klaus
by Klaus
Fri May 10, 2024 10:13 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: iOS certificates?
Replies: 4
Views: 159

Re: iOS certificates?

Hi David,

I never cheked the IDs of my certificates, so I cannot tell if that is the case.
But to be sure, you did add the UDID of your iPhone/iPad to the Dev profile?


Best

Klaus
by Klaus
Thu May 09, 2024 8:54 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Unusual Refresh Problems with Mac standalone
Replies: 21
Views: 1758

Re: Unusual Refresh Problems with Mac standalone

Hi Neville,
neville wrote:
Thu May 09, 2024 1:14 am
Klaus? Strange comment?
yes, sorry, it is like Sparkout says.

Best

Klaus
by Klaus
Wed May 08, 2024 6:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to Integrate external APIs. Any video tutorials available?
Replies: 1
Views: 121

Re: How to Integrate external APIs. Any video tutorials available?

Hi MrFantastic,

welcome to the forum!

No idea if there are any Livecode videos about this on Youtube, but here is a lesson from the mothership:
https://lessons.livecode.com/m/4071/l/1 ... a-rest-api

Best

Klaus
by Klaus
Wed May 08, 2024 12:00 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Custom Properties and nested arrays
Replies: 6
Views: 218

Re: Custom Properties and nested arrays

Sorry, in a hurry right now, will check this later today...
by Klaus
Wed May 08, 2024 10:45 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Custom Properties and nested arrays
Replies: 6
Views: 218

Re: Custom Properties and nested arrays

Hi Al, using your array for my example: ... ## Get a value: answer the animals["dogs"]["rufus"] of this stack ## -> chum ... ## Set a value set the animals["dogs"]["rufus"] of this stack to "fido" ... ## Create a new key and value: set the animals["dogs"]["pluto"] of this stack to "your name for plu...
by Klaus
Tue May 07, 2024 4:39 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Unusual Refresh Problems with Mac standalone
Replies: 21
Views: 1758

Re: Unusual Refresh Problems with Mac standalone

Don't you read the previous postings?
LC 9.6.11 is the latest stable version.

EDIT:
This was a response to a now deleted SPAM post. :!:
by Klaus
Tue May 07, 2024 4:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: I want to obfuscate some things.
Replies: 4
Views: 212

Re: I want to obfuscate some things.

We've already been this far... :D
by Klaus
Tue May 07, 2024 8:55 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: I want to obfuscate some things.
Replies: 4
Views: 212

Re: I want to obfuscate some things.

Hi oldummy, do you mean something like this: on mouseUp ## Not sure if this should happen only with controlkey or commandkey? if the label of me = "Locked" then set the label of me to "Unlocked" end if if the controlkey = "down" then ## do your stuff exit mouseup end if if the commandkey = "down" th...
by Klaus
Mon May 06, 2024 8:46 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Script Widget does not work as expected - solved
Replies: 6
Views: 354

Re: Script Widget does not work as expected

jacque wrote:
Mon May 06, 2024 6:49 pm
Klaus wrote:
Sun May 05, 2024 6:49 pm
Yes, that applies to widgets built with Livecode Builder, but does that also apply to SCRIPT (built with LC scripts) widgets?
Apparently. Who knows.
I don't! :-D

Go to advanced search