Search found 275 matches
- Tue Jan 12, 2021 7:37 pm
- Forum: Games
- Topic: Baby stuff
- Replies: 15
- Views: 4916
Re: Baby stuff
I agree with Richmond While this may, indeed, be "baby stuff", LiveCode should wake up and realise that all around the world children both in classrooms and at home both want to and are required to program "baby stuff" and are doing so using other methods than LiveCode We need more "baby stuff. The ...
- Thu Dec 31, 2020 7:57 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Random movement of some little objects?
- Replies: 32
- Views: 3128
Re: Random movement of some little objects?
Yes. The original post described it as a little game for kids. The poster was looking for an easier way to create random moving figures. He/she was even willing to just find or buy such scripts. I was just reiterating the easiest way without the having to create complex equations. I was reinforcing ...
- Thu Dec 31, 2020 5:54 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Random movement of some little objects?
- Replies: 32
- Views: 3128
Re: Random movement of some little objects?
Thank you all for your help and suggestions. One reason I tried using a list of points instead of letting LC do the work was that it is possible to change the direction of the movement this way. I worked through the list of points in reverse order and flipped the image of the moved objects each tim...
- Wed Jan 08, 2020 10:40 pm
- Forum: App Building Course
- Topic: Status of Message Course of Create It with Livecode
- Replies: 4
- Views: 8517
Re: Status of Message Course of Create It with Livecode
There is code for a chat server at https://sites.google.com/a/pgcps.org/livecode/home/servers . Alas, the links to other lessons are no longer valid. But the downloadable code is. There is starter code that you can download at https://sites.google.com/a/pgcps.org/livecode/home/multiple-computer-game...
- Sun Sep 22, 2019 3:10 pm
- Forum: Android Deployment
- Topic: customizing the answer dialogue box
- Replies: 21
- Views: 4788
Re: customizing the answer dialogue box
Have you tried using html in some fashion? I don’t know if this will work with the way you are doing it but it is worth a try.
See “html tricks” - https://sites.google.com/a/pgcps.org/li ... euser/html
See “html tricks” - https://sites.google.com/a/pgcps.org/li ... euser/html
- Tue Jun 11, 2019 12:01 am
- Forum: Off-Topic
- Topic: messageBox font
- Replies: 17
- Views: 5395
Re: messageBox font
I have full copies of the site; one with the original links preserved and another with the links modified to make them relative to wherever you put it. If I remember correctly, it was about 6 GB zipped. I also have unlimited space and bandwith donated by another LiveCoder. So we have a home for it. ...
- Mon Jun 10, 2019 3:26 pm
- Forum: Off-Topic
- Topic: messageBox font
- Replies: 17
- Views: 5395
Re: messageBox font
If you want to download the entire site, use sitesucker. http://ricks-apps.com/osx/sitesucker/index.html. It is a great utility.
- Wed Jun 05, 2019 1:25 pm
- Forum: Off-Topic
- Topic: messageBox font
- Replies: 17
- Views: 5395
Re: messageBox font
Hi Bogs, Sorry, I no longer have edit control of that website. I can not make any changes or updates. I do not have a site map, higher view or index of it. I agree, there are many cool samples of code and solutions to problems that my students worked out. I wish I could expound on them and make them...
- Wed Jun 05, 2019 3:05 am
- Forum: Off-Topic
- Topic: messageBox font
- Replies: 17
- Views: 5395
Re: messageBox font
You might try to use html to change the properties of the text. https://sites.google.com/a/pgcps.org/li ... euser/html
It worked on the answer command in previous versions
It worked on the answer command in previous versions
- Thu Jan 24, 2019 10:06 pm
- Forum: Games
- Topic: Problem: polygon points moving/scaling 2x/4x ?
- Replies: 6
- Views: 5149
Re: Problem: polygon points moving/scaling 2x/4x ?
Looking through old posts, I saw this response to one about erratic movement at http://forums.livecode.com/viewtopic.php?f=9&t=31886&hilit=Wait+with+no+messages .Re: erratic movement of controls with repeat Report this post Quote Post by jacque » Tue Dec 11, 2018 2:43 pm Repeat loops are slow and wa...
- Thu Jan 24, 2019 8:08 pm
- Forum: Games
- Topic: Problem: polygon points moving/scaling 2x/4x ?
- Replies: 6
- Views: 5149
Re: Problem: polygon points moving/scaling 2x/4x ?
I do not know if this helps but keep your code in the”lock/unlock” part short and do not issue any other messages/events in it. As an example look at the code in part “C - Oops, It goes too slow” here: https://sites.google.com/a/pgcps.org/livecode/flappy-bird-3 The problem you are having seems like ...
- Fri Dec 07, 2018 6:27 am
- Forum: Educational Outreach
- Topic: Vocabulary Learning Game
- Replies: 2
- Views: 5304
Re: Vocabulary Learning Game
You could make your own with LiveCode - action games, matching games, timed games, and others. You could give them the LiveCode source and let them customize them with their own graphics, motions and even questions/answers. For ideas, examples and more, go to https://learntolivecode.com/teacher.html...
- Mon Sep 10, 2018 7:01 pm
- Forum: Off-Topic
- Topic: Learn Assembler in Ubuntu
- Replies: 13
- Views: 3518
Re: Learn Assembler in Ubuntu
I learned and programmed in assembly language when I first started. It really takes programming to its basics. In fact any other language that you may write in is ultimately compiled Into machine language/assembly language. (Assembly language is basically machine language with human readable tags) L...
- Thu Jun 21, 2018 1:36 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Weather
- Replies: 11
- Views: 3869
Re: Weather
That is great. You are making progress! There are at least 2 ways that you can pull off the temperature part of that item. 1. Treat it as another list but instead of the items being separated with commas (,), it uses colons (:). So you change the item-delimiter from a comma to a colon and pull off t...
- Wed Jun 20, 2018 3:25 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Weather
- Replies: 11
- Views: 3869
Re: Weather
You can pick off the items that you want from the data. They are separated by commas Looking at your data: 07:57 AM,12,54,116,http://cdn.worldweatheronline.net/image ... png,Partly cloudy,4,7,130,SE,7.0,100,16,1023,50 2018-06-20,21,70,10,50,05:31 AM,08:30 PM,01:17 PM,01:16 AM,First Quarter,34 2018-0...