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.
Search found 8 matches
- Sun Apr 05, 2015 7:35 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Ink blend modes - any easy tutorial?
- Replies: 11
- Views: 7586
- Fri Jul 06, 2012 10:53 pm
- Forum: Feature Proposals
- Topic: Sound Capabilities
- Replies: 17
- Views: 12467
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 a...
- Mon Aug 29, 2011 11:26 am
- Forum: Internet
- Topic: Google spreadsheets API - updating a list row
- Replies: 10
- Views: 10805
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 co...
- Fri Aug 26, 2011 1:41 pm
- Forum: Internet
- Topic: Google spreadsheets API - updating a list row
- Replies: 10
- Views: 10805
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 bac...
- Thu Aug 25, 2011 10:06 pm
- Forum: Internet
- Topic: Google spreadsheets API - updating a list row
- Replies: 10
- Views: 10805
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 updated...
- Tue Aug 23, 2011 9:44 am
- Forum: Internet
- Topic: Google spreadsheets API - updating a list row
- Replies: 10
- Views: 10805
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 nee...
- Wed Jul 27, 2011 6:55 am
- Forum: iOS Deployment
- Topic: revXML to Datagrid
- Replies: 10
- Views: 10357
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.


- Mon Jul 25, 2011 12:47 pm
- Forum: iOS Deployment
- Topic: revXML to Datagrid
- Replies: 10
- Views: 10357
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/"& ...