Search found 2733 matches

by SparkOut
Tue Dec 12, 2023 10:53 pm
Forum: Talking LiveCode
Topic: Odd mouseUp/mouseDown behavior
Replies: 6
Views: 64305

Re: Odd mouseUp/mouseDown behavior

Is this to do with the mouseDoubleDown and mouseDoubleUp messages being invoked?
What if you move the action to another "doDownStuff" handler, and called doDownStuff from both mouseDown and mouseDoubleDown, and doUpStuff from the Up handlers?
by SparkOut
Tue Dec 12, 2023 3:03 am
Forum: Talking LiveCode
Topic: Send the Stack to the Center of the screen.
Replies: 62
Views: 1170359

Re: Send the Stack to the Center of the screen.

I guess my only problem is using scalefactor. It's so easy to reduce the size of your project on the screen but when you use it, it can't be centered. Yes it can, as per stam's detailed explanation, the solution is a single line of script, that he provided above. (Admittedly a longish line, but spl...
by SparkOut
Tue Dec 05, 2023 9:44 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Copy a card from one stack into a different stack
Replies: 3
Views: 27077

Re: Copy a card from one stack into a different stack

Hi, one approach that helps debugging when you get an error like this, is to check "the result" after the problematic statement. You often get a good clue, and often in real language (not just opaque codes). I don't know if that would have been useful in your situation, but maybe.
by SparkOut
Sat Dec 02, 2023 5:37 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Elevated Privileges
Replies: 12
Views: 75604

Re: Elevated Privileges

I never tried it, because I have never made anything for other users that needed special permissions, but in the Standalone Builder settings for Windows there's a drop-down you can choose for the level of privilege the standalone should expect to require. If you set it to highest available then it m...
by SparkOut
Tue Nov 21, 2023 8:22 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Still a beginner who doesn't know how to make a group.
Replies: 61
Views: 177156

Re: Still a beginner who doesn't know how to make a group.

jacque wrote:
Tue Nov 21, 2023 7:02 pm
"American". Capital A. 😜
Yep. That's correct.
Spelled and spelt are both acceptable, to a point. I am not unhappy there are differences between American versions onf English and English, but "spelled" for everything is more upsetting to me than leaving out the letter U in so many words.
by SparkOut
Tue Nov 21, 2023 5:37 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Error opening Livecode
Replies: 12
Views: 41931

Re: Error opening Livecode

On android (Samsung Internet browser) on the livecode.com site there's a hamburger menu in the top bar.
Opening that shows the login option near the bottom of the page of menu items, to the right of the button for starting a trial.
by SparkOut
Fri Nov 03, 2023 8:18 am
Forum: Announcements
Topic: [ANN] Release LiveCode 9.6.11 RC-1
Replies: 4
Views: 8003

Re: [ANN] Release LiveCode 9.6.11 RC-1

@stam have you got the checkmark in the option to update to beta and preview versions unticked?
by SparkOut
Sun Oct 22, 2023 10:50 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Is "there a file" or "is there not a file?" That is the question.
Replies: 6
Views: 20030

Re: Is "there a file" or "is there not a file?" That is the question.

Also , in the first line, you do not want to put URL ... // the line below will attempt to put the data returned from the URL into the variable // put URL "https://thedomain.com/thefile.jpg" into tUrl // you just want the string literal in the variable: put "https://thedomain.com/thefile.jpg" into ...
by SparkOut
Sat Oct 21, 2023 9:30 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Un-Menu
Replies: 29
Views: 33554

Re: Un-Menu

Uh, Richmond...
I'm old
You're ancient
Jacque is timeless
by SparkOut
Mon Oct 16, 2023 5:24 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Tiling a background image
Replies: 24
Views: 35477

Re: Tiling a background image

FourthWorld wrote:
Mon Oct 16, 2023 3:43 pm
That field appears to be overriding the inheritance, no? Try clearing its backgroundColor property and see if that allows the inheritance.
Or make it transparent
by SparkOut
Sun Oct 15, 2023 9:16 pm
Forum: Windows
Topic: "Enabled of menuitem" doesn't work on Windows standalone
Replies: 6
Views: 8278

Re: "Enabled of menuitem" doesn't work on Windows standalone

I have tested here on Windows (11) with LC 10.0-dp5 and built a standalone that has two buttons - one is an Option Menu and the other is a Pulldown Menu. I had another button with the script to toggle the state of the menuItem (looping through the lines of the text of the button). The action to disa...
by SparkOut
Sun Oct 15, 2023 3:48 pm
Forum: Talking LiveCode
Topic: put url does not work in standalone Windows 10 (Solved)
Replies: 18
Views: 118802

Re: put url does not work in standalone Windows 10

One thing to try (which may or may not work, but is a genuinely considered suggestion) is simply to put the url (or variable containing it) into parentheses for evaluation in the statement

Code: Select all

put url (tURLIPv4) into tCurrentIPAddress

Go to advanced search