Search found 8 matches

by Dougy
Sun Apr 05, 2015 7:35 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Ink blend modes - any easy tutorial?
Replies: 11
Views: 12344

Re: Ink blend modes - any easy tutorial?

Hi Sri

If you don't have this attached example stack on Blend modes, here it is. Sorry, can't remember whose it is (big thanks to whoever it was!) - I found it very worthwhile.

Regards
Doug.
by Dougy
Fri Jul 06, 2012 10:53 pm
Forum: Feature Proposals
Topic: Sound Capabilities
Replies: 17
Views: 18055

Re: Sound Capabilities

Agreed. I've been waiting for years for RunRev to address the sound capabilities issue regarding multiple audio files being played concurrently with (reasonably) exact timing, e.g. sound for games. I understand that the audio in Livecode is good enough for most people most of the time, however for ...
by Dougy
Mon Aug 29, 2011 11:26 am
Forum: Internet
Topic: Google spreadsheets API - updating a list row
Replies: 10
Views: 15162

Re: Google spreadsheets API - updating a list row

Hi Mark

In fld "Header-Row" I have:
If-match: *

but I've also tried including the authentication header info which is:
Content-type: application/atom+xml
Authorization: GoogleLogin auth=(auth token in here...)
If-match: *

Also, Yes, I first retrieve the data from GS as XML then use Livecode's XML ...
by Dougy
Fri Aug 26, 2011 1:41 pm
Forum: Internet
Topic: Google spreadsheets API - updating a list row
Replies: 10
Views: 15162

Re: Google spreadsheets API - updating a list row

Sure, Mark. Here's the link to the Google Docs Spreadsheet API:
http://code.google.com/apis/spreadsheets/data/3.0/developers_guide.html#ListingSpreadsheets

An update:
I've been able to get an individual ROW from my Spreadsheet (as well as a list-based feed), edit the ROW, and now want to send it ...
by Dougy
Thu Aug 25, 2011 10:06 pm
Forum: Internet
Topic: Google spreadsheets API - updating a list row
Replies: 10
Views: 15162

Re: Google spreadsheets API - updating a list row

Hi Mark

Thanks for your reply.

You suggest I POST the XML document, however the "Updating a list row" documentation on the Google Spreadsheet API says I should use PUT.
What should it be?

Also, do I need to create a Query first to get *just* the row I want to update, or can I post (put?) the ...
by Dougy
Tue Aug 23, 2011 9:44 am
Forum: Internet
Topic: Google spreadsheets API - updating a list row
Replies: 10
Views: 15162

Google spreadsheets API - updating a list row

Hi,

I have been successful in accessing my Google spreadsheet data, putting it into a DataGrid, editing the data, but now I need to "put" it back into the original Google spreadsheet by "updating a list row". (I retrieved it as a "list-based feed").

I am unsure as to what format (how??) the data ...
by Dougy
Wed Jul 27, 2011 6:55 am
Forum: iOS Deployment
Topic: revXML to Datagrid
Replies: 10
Views: 14123

Re: revXML to Datagrid

Figured it out. If the XML tag is, for example, "GSX: name", you just remove the "GSX:" and use "name" by itself.

:-)
by Dougy
Mon Jul 25, 2011 12:47 pm
Forum: iOS Deployment
Topic: revXML to Datagrid
Replies: 10
Views: 14123

Re: revXML to Datagrid

Hi

I am also trying to populate a DataGrid with XML data and my code works fine, however LIveCode doesn't seem to like the "GSX" extended naming convention of XML, or am I doing something wrong?
My code is:

local theData
repeat for each line tEntry in tEntries
put revXMLNodeContents(pTree, "feed ...