Search found 148 matches

by RRobert
Tue Apr 28, 2015 6:46 pm
Forum: Talking LiveCode
Topic: Handling Excel from livecode
Replies: 2
Views: 4228

Re: Handling Excel from livecode

Hello,

you can do that via VBScript and use the "do" command to execute the script.

See: https://social.technet.microsoft.com/Fo ... forum=ITCG

Robert
by RRobert
Wed Apr 15, 2015 7:53 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Basic Table Field with Checkboxes
Replies: 4
Views: 6250

Basic Table Field with Checkboxes

Hello,

Whats the best way to implement a checkbox in one column of a basic table field?
Basic Table Field with Checkboxes
Basic Table Field with Checkboxes
table_field.png (3.26 KiB) Viewed 6246 times
Thanks,
Robert
by RRobert
Tue Sep 16, 2014 6:54 pm
Forum: Internet
Topic: "launch url" not working on all windows machines
Replies: 2
Views: 5824

Re: "launch url" not working on all windows machines

Maybe there is no default handler for "http://".

What happens if you go to the Start menu, Click Run, type http://mysite/mydoc.pdf and hit Enter?

Robert
by RRobert
Tue Sep 16, 2014 6:25 pm
Forum: Internet
Topic: Close process issue
Replies: 0
Views: 3296

Close process issue

Hello,

when I issue

global tProcess

put "ssh -N -D 8010 username@server" into tProcess
open process tProcess

the process is being created but I could not close the process afterwards with
global tProcess
close process tProcess
I still see it the process list as well as via "put the ...
by RRobert
Sat Jan 04, 2014 2:48 pm
Forum: Internet
Topic: SOCKS4/5?
Replies: 3
Views: 63489

Re: SOCKS4/5?

I have an idea for an application that would be run over the Tor Onion network, does anyone know how I would go about networking through SOCKS4/5?
The traffic will be simple HTTP Post/Get but I don't know how I would go about going through the local Tor SOCKS4/5 proxy
You can use curl

put shell ...
by RRobert
Tue Jul 26, 2011 7:22 pm
Forum: Mac OS
Topic: Validation Mac Store Receipts
Replies: 6
Views: 12352

Re: Validation Mac Store Receipts

By the way ... Obleo provides a rpMAS external for App store receipt validation.

Robert
by RRobert
Mon Jun 13, 2011 9:19 pm
Forum: Windows
Topic: Diacritic characters and shell CMD
Replies: 5
Views: 9680

Re: Diacritic characters and shell CMD

You could query HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName.

Robert
by RRobert
Wed Feb 02, 2011 2:50 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: antialiasing
Replies: 2
Views: 3971

Re: antialiasing

switch the platform

case "MacOS"
set the textFont of this stack to "Lucida Grande"
set the textSize of this stack to "13"
break

case "Win32"
if the systemVersion = "NT 5.1" then
set the textFont of this stack to "Tahoma"
set the textSize of this stack to "11"
else
set the textFont of ...
by RRobert
Tue Jan 18, 2011 3:46 am
Forum: iOS Deployment
Topic: Prevent screen from dimming
Replies: 4
Views: 5931

Re: Prevent screen from dimming

In ObjC you would add the following line to the application delegate.

[[UIApplication sharedApplication] setIdleTimerDisabled:YES];
I don't think it is possible in LiveCode yet.

See: iOS Application Programming Guide: Implementing Common Application Behaviors

You should file a report in the ...
by RRobert
Fri Jan 14, 2011 1:17 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: When revweb plugin will be available for linux ?
Replies: 6
Views: 6771

Re: When revweb plugin will be available for linux ?

I also like to raise my hand in this question. LiveCode is marketed as a cross-platform development tool and so the web plugin should be available on Linux too or discontinued, like revBrowser.

Robert
by RRobert
Sun Jan 09, 2011 5:03 pm
Forum: Mac OS
Topic: Mac App Store - Submission Feedback - One Last Hurdle
Replies: 16
Views: 18616

Re: Mac App Store - Submission Feedback - One Last Hurdle

By the way: Did someone already wrote some lines to validate app store receipts?

Robert
by RRobert
Sun Jan 09, 2011 4:13 pm
Forum: iOS Deployment
Topic: Bold font doesn't work?
Replies: 5
Views: 7128

Re: Bold font doesn't work?

Mystery solved. :wink:

Robert
by RRobert
Sun Jan 09, 2011 4:00 pm
Forum: iOS Deployment
Topic: iOS Wireless App Distribution
Replies: 6
Views: 9425

Re: iOS Wireless App Distribution

LiveCode provides you a .app and it shouldnt be difficult to create a appropriate .ipa by a shell script, see How to automatically build an IPA file from XCode and streamline the distribution process.

I would use Ad Hoc distribution except your client wants to use the application on more than 100 ...
by RRobert
Sun Jan 09, 2011 3:07 pm
Forum: iOS Deployment
Topic: Bold font doesn't work?
Replies: 5
Views: 7128

Re: Bold font doesn't work?

I set my field to Arial Bold, but when I run the iPad simulator, it shows up plain, not bold. Even if I click the B button (for bold,) the simulator does not respect it. Known issue? I could confirm the issue, you should create a report in the Quality Control Center .

on mouseUp
put empty into ...