Richard,
Sorry to hear this.
Thanks for extending condolences to his family.
Jim Lambert
Search found 329 matches
- Tue Sep 02, 2025 9:00 pm
- Forum: Off-Topic
- Topic: In memory of Raymond Harder
- Replies: 4
- Views: 4501
- Sat Jun 21, 2025 2:45 am
- Forum: Games
- Topic: cutting irregular pieces from image for puzzle game
- Replies: 70
- Views: 117219
Re: cutting irregular pieces from image for puzzle game
Here's a tool that will cut out puzzle pieces.
http://netrin.on-rev.com/misc/puzzlePie ... vecode.zip
Jim Lambert
http://netrin.on-rev.com/misc/puzzlePie ... vecode.zip
Jim Lambert
- Mon Oct 14, 2024 10:20 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: mouseLoc
- Replies: 13
- Views: 16773
Re: mouseLoc
Or if the users are really 'twitchy'
Code: Select all
on mouseUp
beep
disable me
send "enab" to me in 100 ticks
end mouseUp
on enab
enable me
get flushevents("mouseUp")
end enab
- Fri Aug 09, 2024 8:42 pm
- Forum: Made With LiveCode
- Topic: Livecode fountain pens
- Replies: 11
- Views: 25223
Re: Livecode fountain pens
Very cool!
- Wed Jan 31, 2024 10:21 pm
- Forum: Made With LiveCode
- Topic: Couch Commander - a custom HTPC set-top box using LiveCode
- Replies: 9
- Views: 22515
- Sat Jan 20, 2024 10:50 pm
- Forum: Multimedia
- Topic: currentTime of player never equals duration of player
- Replies: 9
- Views: 20904
Re: currentTime of player never equals duration of player
Indeed playstopped is the way to accomplish his goal.
I proffered a possible solution to the title of this thread.
I proffered a possible solution to the title of this thread.
- Fri Jan 19, 2024 9:08 pm
- Forum: Multimedia
- Topic: currentTime of player never equals duration of player
- Replies: 9
- Views: 20904
Re: currentTime of player never equals duration of player
Also 762 milliseconds is a very short duration. Are you certain about that?
- Fri Jan 19, 2024 9:06 pm
- Forum: Multimedia
- Topic: currentTime of player never equals duration of player
- Replies: 9
- Views: 20904
Re: currentTime of player never equals duration of player
the maximum currentTime I get back for one of my files is 762 milliseconds and the duration of the player is 938 Check out timescale in the dictionary: The timeScale is the number of intervals per second of a movie or sound. These intervals are used for the player's startTime, endTime, duration, an...
- Wed Jan 17, 2024 11:05 pm
- Forum: Developer Services Marketplace
- Topic: Offering Development from Ukraine
- Replies: 8
- Views: 128364
Re: Offering Development from Ukraine
I can heartily recommend the quality of Ukrainian coders. In the late nineties and early 2000s I used a team of programmers in the Ukraine. Also brought over two Ukrainians to California to manage their remote team. They all did excellent work. I've lost touch with these folks and hope that they are...
- Fri Jan 12, 2024 6:54 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: If and repeat problem...methinks
- Replies: 3
- Views: 33614
Re: If and repeat problem...methinks
This one liner might work too.
Code: Select all
put the last trueword of tmydate into tzzz
- Tue Dec 26, 2023 8:22 pm
- Forum: Off-Topic
- Topic: Happy 2024
- Replies: 7
- Views: 195724
Re: Happy 2024
Peace.
- Tue Dec 05, 2023 9:01 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Color to Black & White
- Replies: 34
- Views: 155633
Re: Color to Black & White
As Bernd noted export with palette is very quick.
And you can do wacky color palettes.
Jim Lambert
And you can do wacky color palettes.
Jim Lambert
- Tue Dec 05, 2023 3:57 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Color to Black & White
- Replies: 34
- Views: 155633
Re: Color to Black & White
There is also TinyColor for LiveCode by Ferruslogic. https://github.com/Ferruslogic/TinyColor/releases/tag/v1.0.0b Post by andresdt » Fri Jan 21, 2022 5:08 pm TinyColor is a popular JavaScript library. With a 4.1k star rating on GitHub. https://github.com/bgrins/TinyColor Image We now have a version...
- Sat Oct 07, 2023 6:24 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Copy the Last Line of a .txt file
- Replies: 17
- Views: 41037
Re: Copy the Last Line of a .txt file
At each step I save the data in a CSV text file (tLine5.txt) one line per record. ... To accomplish this I want to read the last line in the appropriate file and populate the card with the data. I don't want to scroll thru the entire file to get to the last line if possible. Alternately, You might ...
- Sat Oct 07, 2023 6:10 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Copy the Last Line of a .txt file
- Replies: 17
- Views: 41037
Re: Copy the Last Line of a .txt file
I don't want to scroll thru the entire file to get to the last line if possible. I can't figure out how to get to the last line in the file without starting at the first and scrolling until I get to the EOF. function getLastline myFilePath open file myFilePath for read -- read a chunk from the end ...