Search found 2725 matches

by jmburnod
Tue May 06, 2025 2:24 pm
Forum: Talking LiveCode
Topic: Support and Resources for LiveCode Beginners?
Replies: 18
Views: 21288

Re: Support and Resources for LiveCode Beginners?

Hi All,
This one is precious
It covers the most commonly used conventions in our community, with some of the background behind them:
http://fourthworld.com/embassy/articles ... style.html

Kind regards
Jean-Marc
by jmburnod
Thu May 01, 2025 11:59 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: can't delete a card
Replies: 4
Views: 20384

Re: can't delete a card

I removed all groups from the card and was able to delete the card.
Kind regards
Jean-Marc
by jmburnod
Wed Apr 30, 2025 4:46 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: can't delete a card
Replies: 4
Views: 20384

Re: can't delete a card

Salut Klaus, Thank You again I get this: Message execution error: Error description: Object: stack locked, or object's script is executing Hint: group "grListesPictos" of card "Ajeter" of stack "/Users/jean-marcburnod/Documents/EEpOK/EepFrEn211.livecode" I see that cantdelete prop of group "grListes...
by jmburnod
Wed Apr 30, 2025 3:08 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: can't delete a card
Replies: 4
Views: 20384

can't delete a card

Hi All,
First time I get this issue.
I can't delete a card, cantdelete prop is false.
I can delete others cards of the same stack.

Thanks again for help

Best regards
Jean-Marc

OSX 13.5, LC 9.69
by jmburnod
Mon Apr 07, 2025 3:02 pm
Forum: Talking LiveCode
Topic: Sorting out letters from numbers in a field
Replies: 22
Views: 5621

Re: Sorting out letters from numbers in a field

Hi,
I tested your script and it works here.
Sorry no idea why.

best regards

Jean-Marc
by jmburnod
Sun Feb 23, 2025 10:45 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Get the last two columns
Replies: 34
Views: 38737

Re: Get the last two columns

HI,

This is a way to do it, but there is a lot of ways to do the same

Code: Select all

   put fld "fText" into tText
   repeat with i = 1 to the num of lines of tText
      put item -2 to -1 of line i of tText & cr after tRes
   end repeat
   delete char -1 of tRes
   put tRes
Best regards
Jean-Marc
by jmburnod
Sat Oct 26, 2024 10:14 pm
Forum: Internet
Topic: Get text from a web page that requires a username and password
Replies: 2
Views: 8610

Re: Get text from a web page that requires a username and password

Hi,
You may try this.

Code: Select all

put "https://username:password@www.sampleurl.com/v1/accounts/" into tUrl
put url("file:" & tUrl) into tResult
answer tResult
Best regards
Jean-Marc
by jmburnod
Tue Oct 01, 2024 1:35 pm
Forum: iOS Deployment
Topic: Can't play simple sound on iPhone
Replies: 4
Views: 13501

Re: Can't play simple sound on iPhone

Hi All,
Sorry for this, that was an error, play .aif file works well
Kind regards
Jean-Marc
by jmburnod
Sun Sep 22, 2024 1:25 pm
Forum: iOS Deployment
Topic: Can't play simple sound on iPhone
Replies: 4
Views: 13501

Re: Can't play simple sound on iPhone

Hi All,
I can use play .aif files with LC 9.6.6 but one user told me it doesn't work on iOS 17.
Is there a way to do it ?
Kind regards
Jean-Marc
by jmburnod
Sat Aug 03, 2024 9:34 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Event triggered by pasting data into a field
Replies: 5
Views: 11384

Re: Event triggered by pasting data into a field

Good Morning,
TextChanged works here (OSX 12.7.4, LC 9.66).
No tested as standalone.
Best regards
Jean-Marc
by jmburnod
Sat Jul 06, 2024 11:10 am
Forum: Windows
Topic: get installed windows voices by location
Replies: 0
Views: 24148

get installed windows voices by location

Hi All,
speechgetVoices function works well for MacOs and iOS.
I'm able to get voices by langage (Fr,EN etc...)
Is there a way to get the same on windows ? (I only know "female" or "male)
Thanks again for your light.
Jean-Marc
by jmburnod
Wed Oct 18, 2023 10:11 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Issue with voice name contains accented letters
Replies: 3
Views: 5911

Issue with voice name contains accented letters

Hi All, I get an issue when I use a French TTS voices when the name of the voice contains accented letter (Amélie, Aurélie) That happens with Ventura 13.5 No problème on Mojave which doesn't use accented letters (Amelie instead Amélie) I tried put urlencode(VoiceName) without success. An idea ? Best...
by jmburnod
Mon Sep 25, 2023 12:53 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Simultaneously scrolling text vertically in two fields
Replies: 23
Views: 26378

Re: Simultaneously scrolling text vertically in two fields

Hi,
Two fields must have same text properties (font, size etc....)
Best regards
by jmburnod
Wed Aug 30, 2023 9:39 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Formatting Max and Min Values on a Line Graph
Replies: 29
Views: 49694

Re: Formatting Max and Min Values on a Line Graph

Hi,

what about this ?

0,0
1,50
2,100
3,75

Best regards
Jean-Marc