Is LiveCode's Echo Server for Getting Started Lesson #5 Working?

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
tcb
Posts: 3
Joined: Mon Aug 26, 2013 6:49 pm

Is LiveCode's Echo Server for Getting Started Lesson #5 Working?

Post by tcb » Sat Oct 26, 2024 2:44 am

Am submitting message from text app tutorial's SEND button at end of lesson #5 with following code but never see the message at LiveCode's server at:

http://lc1582.livecodehosting.com/revchat/

even after logging into server with name Dogmaster.

---------------------------------------------------------------------

on mouseUp
set the text of field "messagelabel" to the text of field "newmessage"

# Chat the messsage on the cloud
# 1) Format message for the internet
put "Dogmaster" into YourName
get libURLFormData("name",YourName,"message", the text of field "newmessage")

# 2)Send the message to the cloud-based message app
post it to URL "http://lc1542.on-rev.com/revchat/setchat"

# 3) Let user know to check the cloud message app
answer "Check the cloud for your message"
end mouseUp

Post Reply