Search found 110 matches

by dickey
Tue Jul 22, 2025 11:38 pm
Forum: Talking LiveCode
Topic: LiveCode Create - Trial or Evaluation Access
Replies: 5
Views: 3236

Re: LiveCode Create - Trial or Evaluation Access

Thanks Bernd,

I will ask support. I had hoped I had just missed something obvious. I may even have been happy to trial the platform month-to-month but that billing option seems not to be available.

Again thanks.

Kind regards, Andrew
by dickey
Tue Jul 22, 2025 1:09 pm
Forum: Talking LiveCode
Topic: LiveCode Create - Trial or Evaluation Access
Replies: 5
Views: 3236

Re: LiveCode Create - Trial or Evaluation Access

Thanks Richmond,

I hope you are going well.

I think I knew the answer but asked anyway.

Maybe another rhetorical question but if you can't preview a software platform...how do they intend to sell it?

Kind regards, Andrew
by dickey
Tue Jul 22, 2025 5:26 am
Forum: Talking LiveCode
Topic: LiveCode Create - Trial or Evaluation Access
Replies: 5
Views: 3236

LiveCode Create - Trial or Evaluation Access

Hello!

Ever since the days of the "Revlet / RevWeb" I've been interested in developing in Transcript / LC script for the web.

I was wondering about the "state-of-the-union" in respect of LiveCode Create.

How do people evaluate "Create" without purchasing?

Warm regards, Andrew
by dickey
Fri Jul 26, 2024 1:02 am
Forum: Talking LiveCode
Topic: Could anyone help?
Replies: 5
Views: 5095

Re: Could anyone help?

Hello Michael, Another helpful resource getting started with arrays is https://lessons.livecode.com/m/4071/c/16765 , and whilst not exactly aligned with your requirements but hopefully helpful is some code below to have the user select a file, then process the lines of the file for use in displaying...
by dickey
Fri Apr 06, 2018 9:23 am
Forum: Android Deployment
Topic: Foreign Function Interface (FFI) Documentation for Java
Replies: 4
Views: 6161

Re: Foreign Function Interface (FFI) Documentation for Java

Thank you Ali,

I will review the resources you have shared before asking any further questions.

Kind regards, Andrew
by dickey
Fri Apr 06, 2018 6:37 am
Forum: Android Deployment
Topic: Foreign Function Interface (FFI) Documentation for Java
Replies: 4
Views: 6161

Re: Foreign Function Interface (FFI) Documentation for Java

Thanks bogs, I had read but forgot to provide a link to that great resource. The post does a great job of explaining interaction with a sticky intent. I was hoping to find examples using a broadcast receiver and a content observer within a content resolver. That said I'm making some progress. Kind r...
by dickey
Fri Apr 06, 2018 5:18 am
Forum: Android Deployment
Topic: Foreign Function Interface (FFI) Documentation for Java
Replies: 4
Views: 6161

Foreign Function Interface (FFI) Documentation for Java

Hello all, I am just trying to locate within the LC eco-system some more documentation on using the FFI with Java for Android Development. I believe the functionality is delivered in LC 9. The resources I have found on the topic so far: Using Infinite Livecode For Android to Create Native Controls a...
by dickey
Fri Apr 06, 2018 4:12 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Help setting up an emulator for the Test Button LiveCode 7.1
Replies: 4
Views: 4844

Re: Help setting up an emulator for the Test Button LiveCode 7.1

Hello Monox18,

I am having the same problem and have escalated to LC support. I will share the response when received.

I just wanted to confirm which version of Android Studio you are using. (I'm using 3.1).

Kind regards, Andrew
by dickey
Wed Mar 25, 2015 5:14 am
Forum: Android Deployment
Topic: In App Billing - Error Dialog - When Testing On Device
Replies: 1
Views: 5127

In App Billing - Error Dialog - When Testing On Device

Hello all, I am using LC7.0.3 to create an Android Standalone. I do not require in app billing for my app. In the Standalone Application Settings > Android, I have 'In App Purchasing' unchecked (switched off). When I test directly on a Samsung Galaxy Tab 10" tablet, upon launch I am presented with a...
by dickey
Sun Jul 27, 2014 4:40 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Put URL (Data Format)
Replies: 2
Views: 2798

Re: Put URL (Data Format)

Thanks Simon,

Solved it, the web service was outputting headers which LC was not handling.

Changed the headers and the data is flowing again.

Kind regards, Andrew
by dickey
Sun Jul 27, 2014 1:48 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Put URL (Data Format)
Replies: 2
Views: 2798

Put URL (Data Format)

Hello all, Returning to LiveCode development after a long break. Using 6.6.2: Using a local web server to test retrieving data from a remote MSSQL server. Hitting the link directly in Chrome returns the data as plain text. All good. The following code used to return readable text in the field fldCus...
by dickey
Tue Aug 23, 2011 2:37 am
Forum: Talking LiveCode
Topic: Detect Horizontal Scrolling in DataGrid
Replies: 4
Views: 3680

Re: Detect Horizontal Scrolling in DataGrid

Thanks Steve,

I did try that, however it seems the DataGrid has it's own custom properties in respect of scrollbars.

Zryip corrected my earlier attempt at coding against the datagrid's custom properties.

Thanks again for posting. Steve.

Kind regards, Andrew
by dickey
Tue Aug 23, 2011 2:30 am
Forum: Talking LiveCode
Topic: Detect Horizontal Scrolling in DataGrid
Replies: 4
Views: 3680

Re: Detect Horizontal Scrolling in DataGrid

Hello all, A solution provided by Zryip The Slug via the LiveCode Developer List: To intercept horizontal scrolling in the DataGrid and to similarly scroll another group, in the script of the DataGrid add the following handler: on dgScrollbarDragH pScrollValue set the hScroll of group "grpFilter" to...
by dickey
Mon Aug 22, 2011 1:07 am
Forum: Talking LiveCode
Topic: Detect Horizontal Scrolling in DataGrid
Replies: 4
Views: 3680

Detect Horizontal Scrolling in DataGrid

Hello All, I have a group containing fields I use to filter a DataGrid object and wish to scroll them simultaneously when a user scrolls horizontally in the DataGrid. So within the script of the DataGrid I wished to intercept the horizontal scrolling event, then similarly scroll the filter field gro...
by dickey
Sun Aug 21, 2011 11:48 pm
Forum: Talking LiveCode
Topic: Datagrid: Cannot set the width of scrollbar
Replies: 1
Views: 2299

Re: Datagrid: Cannot set the width of scrollbar

Hello Matthias, I can confirm the behavior you have experienced. By default, the "scrollbar" width is set to auto. http://lessons.runrev.com/s/lessons/m/datagrid/l/7343-Data-Grid-Properties then states you can set this to an integer. So like you I assumed if I set it to say 100, the scrollbar width ...