Search found 65 matches

by Ultravibe
Fri Feb 21, 2025 9:08 pm
Forum: Internet
Topic: Different result loading URL
Replies: 5
Views: 18818

Re: Different result loading URL

I suppose that html content contains some script. Browser execute some script which contained inside html code. How it can be solved in LiveCode?
by Ultravibe
Fri Feb 21, 2025 3:17 pm
Forum: Internet
Topic: Different result loading URL
Replies: 5
Views: 18818

Re: Different result loading URL

get URL nowURL // nowURL is variable that contains address
put it into nowData // here we have a html content
by Ultravibe
Thu Feb 20, 2025 1:40 pm
Forum: Internet
Topic: Different result loading URL
Replies: 5
Views: 18818

Different result loading URL

Hello! There is URL and when it loaded I'm watching source code and there are few rows with needed information. Al that happened in browser. When I'm using get URL request, it returns almost the same but those rows are absent. The area where rows placed looks like <td alias="Result"></td> - it is em...
by Ultravibe
Fri Sep 23, 2016 10:44 pm
Forum: Internet
Topic: Web Socket
Replies: 0
Views: 3017

Web Socket

Hello! Here is my new problem: i try to perform connection between javascript page on ios and livecode stack. I set up the proper ip and port data in javascript and accept connections on the same port at livecode. When ios app creates a web socket, livecode stack receives the "handshake" dialogue. A...
by Ultravibe
Mon Aug 08, 2016 12:00 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Opening html / running standalone exe's in a card
Replies: 10
Views: 8656

Re: Opening html / running standalone exe's in a card

I do the same way: on mouseUp launch "d:\CasparCG\casparcg.exe" end mouseUp This application is console-type. When i launch it manually - everything is ok. When i launch it with LiveCode the console window is appear, but nothing is happens. Why is it so? May be i should some keys like -s -l or somet...
by Ultravibe
Mon Nov 09, 2015 4:46 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: iOS SDK and how to get it?
Replies: 1
Views: 2648

iOS SDK and how to get it?

Hello guys! I've experienced in developing apps for PC, but now I need to do some thing for iPhone. In order to develop those apps I need iOS SDK to be installed. AppStore tells me that Xcode 7.1 contains SDK for iOS 9.1. But how to set it up in Livecode? Problem is: iOS SDK is not an external file ...
by Ultravibe
Thu Nov 05, 2015 8:37 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to create APPs for Android devices?
Replies: 1
Views: 2125

How to create APPs for Android devices?

Hello! I've experienced a lot in making apps for PC, but now it's time for me to build an app for mobile device. I don't have a physical device yet, so i use virtual android device. My programm is compiling, then installing on target device (it appears in "Applications" tab), then launching... and n...
by Ultravibe
Fri Oct 23, 2015 1:19 pm
Forum: Windows
Topic: Stop Livecode waiting for script to finish
Replies: 6
Views: 5991

Re: Stop Livecode waiting for script to finish

Is there a way to launch external .exe file and continue to execute script in LiveCode without blocking?
by Ultravibe
Fri Oct 23, 2015 1:06 pm
Forum: Windows
Topic: Using Shell Command To Open App In Windows
Replies: 9
Views: 20362

Re: Using Shell Command To Open App In Windows

Code: Select all

get shell (tCommand)
will this command locks execution of my App until launched program has finished?
by Ultravibe
Fri Oct 23, 2015 7:28 am
Forum: Windows
Topic: Recieving data via TCPIP (probably)
Replies: 3
Views: 4525

Recieving data via TCPIP (probably)

Hello! I need to figure out how to "listen" specific port from some device. Problem is: some guys says that it should be binary data, some says that is UDP. Well, i don't worry much of UDP because it can be readed using: accept connections on port 5403 with message "GotData" or something like that))...
by Ultravibe
Tue Oct 06, 2015 12:29 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: P3 receiving and decoding
Replies: 6
Views: 5095

Re: P3 receiving and decoding

Gotcha!
I found how to parse messages. The only task now - is to recieve these messages from device)))))
by Ultravibe
Tue Oct 06, 2015 7:08 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: P3 receiving and decoding
Replies: 6
Views: 5095

Re: P3 receiving and decoding

Richard, I have some problems: number of detected device is presented by 4 hex bytes. How to transform it to "normal" number? I saw that guys are taking hex bytes from last to first and do something with it. Can you say what exactly they does? P.S. The same thing they does with received time that al...
by Ultravibe
Tue Oct 06, 2015 6:31 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: P3 receiving and decoding
Replies: 6
Views: 5095

Re: P3 receiving and decoding

FourthWorld wrote:The textDecode function is useful for coercing tet encoding schemes. For translating binary data to and from various formats see the binaryDecode function.
Thanks, I'll try it! And with receiving messages everything is ok? Can I use accept command?
by Ultravibe
Mon Oct 05, 2015 9:55 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: P3 receiving and decoding
Replies: 6
Views: 5095

Re: P3 receiving and decoding

It seems to me that i should use something like this: on openCard open datagram socket "192.168.0.203:5403" --it's IP address and port of device accept datagram connecitons on port 5403 with message "DataRecieved" end openCard on DataRecieved curIP,curData put textDecode(curData,"???") into curData ...