Search found 7 matches

by BobM
Thu Apr 27, 2017 9:28 pm
Forum: Feature Proposals
Topic: LineGraph Widget X-axis scale
Replies: 2
Views: 3780

Re: LineGraph Widget X-axis scale

Actually the Y-axis scaling seems to need some help too.

Image
by BobM
Thu Apr 27, 2017 9:07 pm
Forum: Feature Proposals
Topic: LineGraph Widget X-axis scale
Replies: 2
Views: 3780

LineGraph Widget X-axis scale

Request:

Ability to scale the X-axis proportional to the VALUES of the X points.

Currently the X-axis scale appears to be proportional to the NUMBER of X points.

Use Case:
X-Y charts that are properly scaled in both axis.
by BobM
Fri Apr 21, 2017 4:21 pm
Forum: Internet
Topic: Sockets = fail
Replies: 7
Views: 9637

Re: Sockets = fail

Solved:

the hostNameToAddress of the hostName

is expected to return the IPv4 address of the computer.

On Linux Mint it does NOT. [confirmed bug 5909 {unresolved in 9 years! :oops: }]

Socket communication working correctly when correct IPv4 address is used with open socket to.
by BobM
Fri Apr 21, 2017 2:56 pm
Forum: Internet
Topic: Sockets = fail
Replies: 7
Views: 9637

Re: Sockets = fail

Looking at this in more detail:

LiveCode Language Dictionary
callbackMessage The name of a message to be sent when the connection is made .

Yet on my client laptop this line completes and sends the "ClientConnected" message

open socket to field "serverAddr" with message "ClientConnected"

Even ...
by BobM
Thu Apr 20, 2017 8:29 pm
Forum: Internet
Topic: Sockets = fail
Replies: 7
Views: 9637

Re: Sockets = fail

Thank you AxWald

Based on your example, I have:

Server:

on mouseUp #Button StartServer
close socket 9000
put empty into field "text"
accept connections on port 9000 with message "someoneConnected"
put the opensockets after field "text"
end mouseUp


on openCard
put the hostNameToAddress of ...
by BobM
Wed Apr 19, 2017 9:07 pm
Forum: Internet
Topic: Sockets = fail
Replies: 7
Views: 9637

Re: Sockets = fail

Attempted various mutations of link URLs without success.

on the client side:

Code: Select all

open socket to servAddr
where servAddr is a.b.c.d:9001

and a.b.c.d is the hostNameToAddress of the hostName from the server

LC v 8.1.3 community edition
by BobM
Wed Apr 19, 2017 8:34 pm
Forum: Internet
Topic: Sockets = fail
Replies: 7
Views: 9637

Sockets = fail

I am attempting to use sockets using the sample client and server stacks here: [forum won't let me post links!]

Stacks and code can be seen [forum won't let me post links!]

I am having exactly zero success, and because it seems that almost nothing happens on the server side I can't even begin to ...