Search found 107 matches

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

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: 5945

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: 5945

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: 5945

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: 4648

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: 4938

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: 2659

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: 2659

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: 3547

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: 3547

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: 3547

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: 2219

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 ...
by dickey
Sun Aug 14, 2011 12:30 am
Forum: Talking LiveCode
Topic: Detect Column Resize In DataGrid
Replies: 1
Views: 1927

Re: Detect Column Resize In DataGrid

zryip theSlug was so kind as to email me the following solution via the LiveCode Developer List: Hi Andrew, You can use the dgColumnWidth property of the datagrid on the datagrid group script to get the size of a column being resized.. setprop dgColumnWidth [pColumn] pValue put pColumn & "Filter" in...
by dickey
Fri Aug 12, 2011 6:48 am
Forum: Talking LiveCode
Topic: LiveCode App in the App Store
Replies: 1
Views: 2364

Re: LiveCode App in the App Store

Hello Steve, Hmmm... I am amazed that your post has 61 views, and that no-one before now has said congratulations on your efforts in making the app store. So here goes. Congratulations and well done, Steve on what can in many ways be a daunting task. I hope it goes well for you. Kind regards, Andrew
by dickey
Thu Aug 11, 2011 4:57 am
Forum: Talking LiveCode
Topic: Detect Column Resize In DataGrid
Replies: 1
Views: 1927

Detect Column Resize In DataGrid

Hello all, I have coded my own filters for the DataGrid object. I have a field that performs a type ahead search across all the columns of the DataGrid (background/irrelevant), and a collection of fields sitting above the header fields of the grid which perform a cumulative type ahead search upon th...