Re: Implications of DOJ vs Apple for developers?

2013-08-25 Thread Dr. Hawkins
On Sat, Aug 24, 2013 at 6:31 PM, Mike Kerner mikeker...@roadrunner.com wrote: And in addition, this conspiracy is by proxy. Does anyone else know of a case where a conspiracy by proxy was found to violate this statute? I don't know about this statute, but it's always enough to make one a

Re: Implications of DOJ vs Apple for developers?

2013-08-25 Thread Dr. Hawkins
On Sat, Aug 24, 2013 at 6:29 PM, Mike Kerner mikeker...@roadrunner.com wrote: There has been no decision on remedies. The remedies you listed are NOT the ones approved by the court, just proposed by the DOJ. Having *some* familiarity with this area of law from my former life, though, something

my message box keeps wandering

2013-08-25 Thread Dr. Hawkins
My message box seems determined to go on a walkabout. Each time I open, it drifts down further form where I left it, eventually running off the field. this is on OSX with 5.5.4, and only started happening reently -- Dr. Richard E. Hawkins, Esq. (702) 508-8462

converting text to dos format

2013-08-25 Thread Dr. Hawkins
Apparently, the ECF filing system used by federal courts expects the whole world to be in dos format. When I write a file from livecode on OSX, and then upload that file, ECF fails to recognize that there is more than one line (but when I dump from openoffice, I'm fine). I need to override the

Re: converting text to dos format

2013-08-25 Thread Mark Schonewille
Richard, When not on Mac OS X, you need to replace linefeed with crlf, convert text to ISO and write the file as binfile, e.g. put fld 1 into myVar put macToIso(myVar) into myVar replace lf with crlf in myVar put myVar into url binfile:~/desktop/file.txt -- Best regards, Mark Schonewille

moving the layer of a group within another group

2013-08-25 Thread Dr. Hawkins
I'm not sure this is likely to com e up a lot in general, but it sure is right now . . . I collect some fields that are in front of modifiable fields, and group them, then set the name but then set the layer of grp grp_dfl_flds of tgGr to bottom where tgGr is the long id of the original

Re: converting text to dos format

2013-08-25 Thread Dr. Hawkins
On Sun, Aug 25, 2013 at 1:55 PM, Mark Schonewille m.schonewi...@economy-x-talk.com wrote: When not on Mac OS X, you need to replace linefeed with crlf, convert text to ISO and write the file as binfile, e.g. put fld 1 into myVar put macToIso(myVar) into myVar replace lf with crlf in myVar

Re: Problem with importing snapshot

2013-08-25 Thread Jim Lambert
Charles wrote: on mouseUp export snapshot from group id 126899 of card graph to myImage as PNG go stack report import snapshot from group id 126899 of card graph of stack report end mouseUp This works but it strips all of the text that is on the border of the PNG but is still

Re: converting text to dos format

2013-08-25 Thread Mark Schonewille
Hi Richard, I don't know how you are uploading the data to the remote server, but probably you don't need to use binfile. Just use macToIso to convert the data, replace cr with crlf and upload your data. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering

Re: converting text to dos format

2013-08-25 Thread Dr. Hawkins
On Sun, Aug 25, 2013 at 3:35 PM, Mark Schonewille m.schonewi...@economy-x-talk.com wrote: I don't know how you are uploading the data to the remote server, Firefox (or any other web browser, I suppose, at least the ones they didn't screw up (did I mention that ecf is an abomination?) but

How to build webcam application

2013-08-25 Thread Mark
Hi all, I was wondering how to go about building a desktop application that would allow people to watch my band play live at a gig. These people are not able to attend the gig, so I was thinking that this client and host app would allow them to watch and listen in a live scenario. Anyone have

Re: converting text to dos format

2013-08-25 Thread Mark Schonewille
Hi Richard, MacToIso: yes replace cr with crlf: no -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Use Color Converter to convert CMYK, RGB, RAL, XYZ, H.Lab and

Re: How to build webcam application

2013-08-25 Thread Mark Wieder
Mark- Sunday, August 25, 2013, 4:01:50 PM, you wrote: Anyone have any ideas about how to go about this? Suggestion: don't even think about it. The bandwidth would kill you. Instead, think about partnering with concertwindow. Or go the low-tech ustream route and put up with network buffering

Re: html tags recognized by htmlText

2013-08-25 Thread Björnke von Gierke
Meanwhile Bjornke has come up with a way to convert the doc files into a SQLite database, and that makes it faster, more maintainable, easier to use, and more flexible. Unfortunately his converter doesn't work on linux, but the resulting database is cross-platform. I can't really test on

Re: How to build webcam application

2013-08-25 Thread Joe Lewis Wilkins
Hi Mark, (Everyone else please excuse me for using this Forum.) We've never connected, but I thought I should give you my nephews email address. He is retired from his day job, but often plays gigs with a couple of his buddies. I don't know much about this but this is what the Internet is good

Re: Problem with importing snapshot

2013-08-25 Thread Charles Szasz
Jim, Thanks for your comments. I did use my variable, myImage but I accidentally omitted it. Here is my actual script: export snapshot from group id 126899 of card graph to myImage as PNG set the clipBoardData[image] to myImage go stack report put myImage into image id 1033 of card

Re: Problem with importing snapshot

2013-08-25 Thread Richard Gaskin
Charles Szasz wrote: Jim, Thanks for your comments. I did use my variable, myImage but I accidentally omitted it. Here is my actual script: export snapshot from group id 126899 of card graph to myImage as PNG set the clipBoardData[image] to myImage go stack report put myImage into

Re: Problem with importing snapshot

2013-08-25 Thread Jim Lambert
Charles wrote: Jim, Thanks for your comments. I did use my variable, myImage but I accidentally omitted it. Here is my actual script: export snapshot from group id 126899 of card graph to myImage as PNG set the clipBoardData[image] to myImage go stack report put myImage

Re: Problem with importing snapshot

2013-08-25 Thread Charles Szasz
Richard, Many thanks for trying to help me! I checked and found that the backgroundBehavior is not checked at all. Charles Szasz csz...@mac.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: Problem with importing snapshot

2013-08-25 Thread Richard Gaskin
Charles Szasz wrote: Richard, Many thanks for trying to help me! I checked and found that the backgroundBehavior is not checked at all. Thanks for checking that. This bug may be murkier than I'd thought. Is the field's sharedText property set to true? -- Richard Gaskin Fourth World

snapshot - iOS - upload image

2013-08-25 Thread Jim sims
*I'm using the following code in iOS to:* * select an image from the library* *reduce it in size as set by the templateimage* *import snapshot of that image from my card* *then upload it to my server * *-- btw WE NEED A SAFER FTP!* * * *It seems to do all these things but the image