Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Paul Foraker via use-livecode
On a Mac with LC 8.6.1 (Community) Tabs coming from LiveCode are converted to spaces when pasted to a Google spreadsheet, but are not converted when pasting from BBEdit. I'm collecting data into a tab-delimited row (line) and putting it on the Clipboard, then pasting the row into a Google spreads

Re: Android Sound Capture in WAV format

2017-10-18 Thread Ali Lloyd via use-livecode
I think this would make a nice example for my extensions session at LiveCode Global tomorrow. Here's the link for anyone not signed up! https://livecode.com/global/ On Tue, Oct 17, 2017 at 4:05 PM Ali Lloyd wrote: > Hi Peter, > The Android MediaRecorder class does not support WAV unfortunately.

Re: Need Dropbox guidance

2017-10-18 Thread pink via use-livecode
With the upload, everything indicates that it is successful, but the file that exists is not correct, and it's size is way off. Again, I am uploading a stack that is in memory, what exactly do I need to put into "pData" in order to upload the file? example of my last upload: {"name": "mystack1.

Re: Need Dropbox guidance

2017-10-18 Thread Mike Kerner via use-livecode
How are you getting the stack into pData? I just tried this, and it worked: on mouseup answer file "" put it into theFile put url ("binfile:/"&thefile) into foo dropboxUpload oauthKey, "/foo.livecodescript", "add", true, false, foo answer "it:"&&it&&CR&CR&"the result:"&&the result en

Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Alejandro Tejada via use-livecode
Hi Paul, Paste this in a button (or the message box) and post back your results. Results after copying data from Livecode Results after pasting in BBEdit Results after copying text from BBEdit put base64encode(md5digest(the clipboarddata["text"])) & cr & the clipboarddata["text"] Al ___

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Bob Sneidar via use-livecode
That is a function of how Google Spreadsheet and BBEdit treat tabs, not the Livecode Clipboard. Bob S > On Oct 18, 2017, at 01:27 , Paul Foraker via use-livecode > wrote: > > Tabs coming from LiveCode are converted to spaces when pasted to a Google > spreadsheet, but are not converted when

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Bob Sneidar via use-livecode
If that is the case, then tabs in LC are not tabs, they are something else. Bob S > On Oct 18, 2017, at 01:27 , Paul Foraker via use-livecode > wrote: > > I have discovered a workaround. If I first paste from LiveCode to BBEdit > (the tabs are recognized) and then copy and paste from BBEdit

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread G.W.Gaich via use-livecode
I made a test: set the clipboarddata to 1 & tab & 2 & tab & 3 pasted into a google spreadsheet cell and three cells were filled as expected. Livecode 8.1.6 windows 7 firefox 56 perhaps it's a mac or browser thing Am 18.10.2017 um 10:27 schrieb Paul Foraker via use-livecode: On a Mac with

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Alejandro Tejada via use-livecode
I suspect that Unicode is working behind the scenes to produce the result that Paul is getting in his own MacOSX setup. Al On Wed, Oct 18, 2017 at 9:37 AM, Alejandro Tejada wrote: > Hi Paul, > > Paste this in a button (or the message box) and > post back your results. > > Results after copying

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Bob Sneidar via use-livecode
That has been my suspicion all along since this began. Still, I think it is incumbent upon the other software developers to properly interpret the clipboard and respond accordingly. That of course, is a pipe dream, so I suppose it's now up to us the end developers to do the conversion. Is there

OT: The future of Digital Dev/Design/Prototyping

2017-10-18 Thread Sannyasin Brahmanathaswami via use-livecode
https://www.invisionapp.com/studio?utm_campaign=studio Dumps to Swift Of course as soon as the dev gets beyond the visual layer and deeper content requirements surface, this kind of tool hits the wall. But the UI/UX for developing the views is pretty powerful. Something similar that would "dump

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Paul Foraker via use-livecode
Results after copying data from LiveCode (string starts with a tab) 1hooIO16dbbNtjCvISrTzQ== 45539 TEST -- SEND TO PAUL IPST Results after pasting in BBEdit 1hooIO16dbbNtjCvISrTzQ== 45539 TEST -- SEND TO PAUL IPST After copying from BBEdit 1hooIO16dbbNtjCvISrTzQ== 45539 TEST -- SEND TO PA

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread J. Landman Gay via use-livecode
It isn't just LC, a search shows this isn't an uncommon problem. I couldn't find an answer, but this suggests mime types: On 10/18/17 3:27 AM, Paul Foraker via use-livecode wrote: On a Mac w

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread J. Landman Gay via use-livecode
On 10/18/17 4:17 PM, J. Landman Gay via use-livecode wrote: It isn't just LC, a search shows this isn't an uncommon problem. I couldn't find an answer, but this suggests mime types: Also

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Monte Goulding via use-livecode
> On 19 Oct 2017, at 1:34 am, Bob Sneidar via use-livecode > wrote: > > That is a function of how Google Spreadsheet and BBEdit treat tabs, not the > Livecode Clipboard. > > Bob S > > >> On Oct 18, 2017, at 01:27 , Paul Foraker via use-livecode >> mailto:use-livecode@lists.runrev.com>> wr

Re: Need Dropbox guidance

2017-10-18 Thread pink via use-livecode
THat worked... so now how do I download the file and save it? I tried doing the opposite, but the file I got didn't come out right. dropboxDownload myToken, "/data.livecode" put it into URL ("binfile:" & tFilePath) - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: ht

[OT] Myst and The Manhole

2017-10-18 Thread Alejandro Tejada via use-livecode
Hi All, Before I catch some well deserved hours of sleep, I have to leave here, this video and article from a few weeks earlier: https://www.youtube.com/watch?v=hOGZNG8jA7Q http://www.businessinsider.com/photos-psychedelic-funhouse-george-rr-martin-2017-9 Why this interactive art project rememb

Re: Need Dropbox guidance

2017-10-18 Thread Mike Kerner via use-livecode
Well, I haven't been sending binary files, so check to see if what you get back is the same as what you sent up. The phx_dropbox library required encoding binary data. ALSO, don't you have to put a single slash after "binfile:"? I don't remember. On Wed, Oct 18, 2017 at 7:37 PM, pink via use-liv