Re: opening txt files

2013-01-17 Thread Nishok Love
This is the first time I've asked a question on use-livecode and I've been pleasantly amazed that people have taken the time to give so much useful advice - much respect, and thankyou to everyone. I think I now have a solution which works, and I've learnt some interesting things too. In

Re: [OT] reOrdering text

2013-01-17 Thread Richmond
Thank you everyone for all the suggestions. I feel a bit stupid having done quite a bit of chunk matching and replacement + moving the end of sentences to the start and so forth, that it never occurred to me to use 'Line'. The only thing I wonder about now is how crossplatform-consistent cr

To customers of Economy-x-Talk

2013-01-17 Thread Mark Schonewille
Hello, Currently, I don't have a possibility to reach all customers of Economy-x-Talk at once. Writing to the mailing list is my best bet for now. As you may have noticed, the Economy-x-Talk server has been off-line for 2 days now. A power surge burnt the components of the server and it

[OT] A tale of App Store rejection

2013-01-17 Thread Andre Garzia
Hey Folks, I am sharing here an experience with the iOS App Store. I live in the beautiful city of Niterói in the state of Rio de Janeiro (as seen in http://fon.nu/15DD13EL). Most of the citizens of my city work in the city of Rio de Janeiro. There are two ways to go from here to Rio. There is

RE: [OT] A tale of App Store rejection

2013-01-17 Thread John Dixon
Andre... I am sorry to hear that your app has been rejected by the 'Apple Gods'... I had a look at the android version and it looks very smart. However, when you have an app rejected, you are allowed to appeal the decision. Are you going to appeal ?... I would have thought that the arguments

Re: [OT] A tale of App Store rejection

2013-01-17 Thread Andre Garzia
Hi Dixie, I appealed with the same arguments. I am yet to receive any answer but I don't expect them to change. Thanks for the kind words! :-D Cheers andre On Thu, Jan 17, 2013 at 11:05 AM, John Dixon dixo...@hotmail.co.uk wrote: Andre... I am sorry to hear that your app has been rejected

AW: To customers of Economy-x-Talk

2013-01-17 Thread Tiemo Hollmann TB
That is really something you wish it never happens, especially if you run full business on this server. Good luck for restoring and keep a stiff upper lip Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Mark Schonewille

Re: opening txt files

2013-01-17 Thread Klaus on-rev
Hi friends, Am 16.01.2013 um 18:15 schrieb Nishok Love nishok.l...@virgin.net: ... So I'm still looking for a way for LiveCode to spot whether it's opening a file in UTF-8 or UTF-16 (or something else - aaarrgh!). Can I access the file header? read from file just gives me the data... I

AW: [OT] A tale of App Store rejection

2013-01-17 Thread Tiemo Hollmann TB
How I hate this bigoted behavior of Apple! Sorry for you. But nice tiny app, now I always can check the status of the bridge. I only have to calculate the delay for the flight... Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag

Re: Telephony in LiveCode

2013-01-17 Thread Ben Rubinstein
Although... many USB devices are pretty much serial, and LC can work with them just fine - eg I've interfaced to a bunch of GPS devices, on Windows and Mac, all of which are USB in hardware but appear to be serial in software. I wouldn't be at all surprised if a USB modem was similar. On

Re: Printing to PDF (format of options???)

2013-01-17 Thread Roger Eller
Perhaps I should sit down and just READ the LC Dictionary once in a while. :-) set the printMargins to 0,0,0,0 -- 0 inch set the printMargins to 72,144,72,144 -- 1 inch ~Roger On Wed, Jan 16, 2013 at 6:57 PM, Roger Eller wrote: Thanks Colin. It looks like I'll either need to redesign

RE: [OT] A tale of App Store rejection

2013-01-17 Thread Ralph DiMola
Andre, I got rejected because my detail screen had data layout that is confusing. I moved a couple of things around and it was approved. I assume that a different tester looks at the app with every submission. The text did not appear to be by the same person with each rejection. Also try adding

Re: Strange contents of long name

2013-01-17 Thread Robert Sneidar
Not good for me. People are always trying to push my buttons, and giving them an easy way to find them would not be something I could vote for. ;-) But this was something I mentioned a while back as a means to easily compress a stack into it's definitions. Things like scripts and properties

Re: Datagrid help - change value in form

2013-01-17 Thread Robert Sneidar
I think you have to get the array corresponding to the row, change the value for the key corresponding to the cell, then set it back again. put the dgDataOfIndex [ pIndex ] of group DataGrid into pDataA put This is new data into pDataA[ newdata ] set the dgDataOfIndex [ pIndex ] of group

Re: [OT] reOrdering text

2013-01-17 Thread Robert Sneidar
Hi Richmond. It's my understanding that cr is just a cr regardless of platform. I may have it backwards. If you want cross platform compatibility, use return as I believe it will be cr, cr + lf, or lf depending on the platform you are on. If you have to maintain file integrity across

Re: To customers of Economy-x-Talk

2013-01-17 Thread Robert Sneidar
Hi Mark, sorry to hear about the problem. May I humbly suggest, all servers (or important workstations) should be isolated from service power by a UPS power supply? Some call it a battery backup, but there are, or were at one time subtle differences, most notably, a UPS was capable of detecting

Re: issue transfering 5.5.3 stack from windows to mac

2013-01-17 Thread Robert Sneidar
Only way I can think to know where it is going south is to first open LC for Mac with no stack. Turn off messages, then open your trouble stack. Put a try catch statement around your trouble code. Compile, save, close. Re-enable messages and reopen the trouble stack. HTH Bob On Jan 17,

Re: opening txt files

2013-01-17 Thread Robert Sneidar
Hey that's nice, thanks! Bob On Jan 17, 2013, at 6:32 AM, Klaus on-rev wrote: Hi friends, Am 16.01.2013 um 18:15 schrieb Nishok Love nishok.l...@virgin.net: ... So I'm still looking for a way for LiveCode to spot whether it's opening a file in UTF-8 or UTF-16 (or something else -

Re: Telephony in LiveCode

2013-01-17 Thread Robert Sneidar
ALL USB devices are serial. That is what the S in USB stands for. You may mean I think, that the protocol is similar to 9 pin protocols like RS232? I don't think that is true, but I am not an expert in protocols. Bob On Jan 17, 2013, at 7:14 AM, Ben Rubinstein wrote: Although... many USB

Re: Printing to PDF (format of options???)

2013-01-17 Thread Robert Sneidar
Too much trouble Roger, and not very adventurous. I say, DAMN the dictionary! Full coding ahead!! ;-) Bob On Jan 17, 2013, at 8:13 AM, Roger Eller wrote: Perhaps I should sit down and just READ the LC Dictionary once in a while. :-) set the printMargins to 0,0,0,0 -- 0 inch set

Re: [OT] A tale of App Store rejection

2013-01-17 Thread Robert Sneidar
You should have made it into a game, but with real traffic conditions. Bob On Jan 17, 2013, at 4:50 AM, Andre Garzia wrote: Hey Folks, I am sharing here an experience with the iOS App Store. I live in the beautiful city of Niterói in the state of Rio de Janeiro (as seen in

Re: AW: [OT] A tale of App Store rejection

2013-01-17 Thread Robert Sneidar
I'm going to play the devil's advocate here. Imagine someone submitting an app that simply typed a random letter on a page, or added 2 + 2 every time you opened it, just so they could say they had an app on the store? There has to be a line drawn somewhere, otherwise Apple would be inundated

Re: AW: [OT] A tale of App Store rejection

2013-01-17 Thread J. Landman Gay
On 1/17/13 9:04 AM, Tiemo Hollmann TB wrote: How I hate this bigoted behavior of Apple! Sorry for you. But nice tiny app, now I always can check the status of the bridge. I only have to calculate the delay for the flight... LOL! -- Jacqueline Landman Gay | jac...@hyperactivesw.com

Re: [OT] A tale of App Store rejection

2013-01-17 Thread Colin Holgate
I was impressed with the correct usage of the word bigoted, but I'm inclined to agree with Apple filtering out apps that could be a simple web page. I think that even Andre's app could remain as a cached page when on Edge network, but I also think that they will agree with his reasoning, and

Re: [OT] A tale of App Store rejection

2013-01-17 Thread J. Landman Gay
On 1/17/13 6:50 AM, Andre Garzia wrote: The lesson here is beware of your features because the app store is getting very picky. Minimal applications that provide a single useful feature are no longer good enough for them. I'm sorry you had to go through that. One of my clients got rejected

Re: Telephony in LiveCode

2013-01-17 Thread stephen barncard
not even close. Adapter code and hardware needed. On Thu, Jan 17, 2013 at 10:42 AM, Robert Sneidar slylab...@me.com wrote: ALL USB devices are serial. That is what the S in USB stands for. You may mean I think, that the protocol is similar to 9 pin protocols like RS232? I don't think that is

Re: [OT] reOrdering text

2013-01-17 Thread J. Landman Gay
On 1/17/13 12:28 PM, Robert Sneidar wrote: It's my understanding that cr is just a cr regardless of platform. I may have it backwards. Yup, backwards. :) Cr and return are synonyms and produce the same thing, which is ascii 11 (linefeed, the unix convention). There is no ascii 13 (carriage

Re: [OT] reOrdering text

2013-01-17 Thread Jerry Jensen
On Jan 17, 2013, at 12:49 PM, J. Landman Gay jac...@hyperactivesw.com wrote: On 1/17/13 12:28 PM, Robert Sneidar wrote: It's my understanding that cr is just a cr regardless of platform. I may have it backwards. Yup, backwards. :) Cr and return are synonyms and produce the same thing,

More about audio-video

2013-01-17 Thread J. Landman Gay
I've been testing in Windows 7 without QuickTime installed to see how video and audio files work in a player object. Some formats that work fine in WMP will not work in LiveCode. The same files that fail in LiveCode also fail in the preview panel in Explorer. But they do work in WMP itself.

Re: More about audio-video

2013-01-17 Thread Alex Shaw
Hi Jacqueline If you don't need streaming you could try MPEG-1 video files. When compressed properly they are relatively good quality, just a bit bigger filesize-wise compared to MPEG-4. regards alex On 18/01/13 8:58 AM, J. Landman Gay wrote: I've been testing in Windows 7 without

Re: More about audio-video

2013-01-17 Thread Mark Wieder
J. Landman Gay jacque@... writes: In the Media Player app itself, all the above formats play perfectly. I did not need to download any extra codecs, not even for .mov files. It gets worse. You can't rely on just the file extension. The other day I pulled down a GoToMeeting archive as a .wmv

Re: More about audio-video

2013-01-17 Thread J. Landman Gay
On 1/17/13 5:34 PM, Mark Wieder wrote: J. Landman Gay jacque@... writes: In the Media Player app itself, all the above formats play perfectly. I did not need to download any extra codecs, not even for .mov files. It gets worse. You can't rely on just the file extension. The other day I

Re: More about audio-video

2013-01-17 Thread J. Landman Gay
On 1/17/13 5:08 PM, Alex Shaw wrote: Hi Jacqueline If you don't need streaming you could try MPEG-1 video files. I don't know if we'll need streaming yet, so I'll keep this in mind. I didn't test MPEG-1 files yet, so we'll see. Maybe it's moot. -- Jacqueline Landman Gay |

Re: More about audio-video

2013-01-17 Thread Robert Sneidar
Hush! You are not implying Microsoft would develop a proprietary codec that only their player could use?? What self respecting corporation would even think of such a thing??? Bob On Jan 17, 2013, at 3:34 PM, Mark Wieder wrote: J. Landman Gay jacque@... writes: In the Media Player app

Re: More about audio-video

2013-01-17 Thread Robert Sneidar
Do you mean Codecs? To answer your question, yes and no. If you never use WMP, you will probably not have a lot of codecs it supports. Even if you do, you may not have all of them. While the audio codec would probably be installed as a dll in Windows somewhere, and so be an OS function, some

Re: More about audio-video

2013-01-17 Thread Scott Rossi
It's been a long time since I dealt with this, but last I checked, MPEG1 and maybe MPEG2 worked cross platform. As Mark said, file extension doesn't always correspond with the encoding of a video file. If you have control over the format of the videos to played, then you should have no trouble.

Re: More about audio-video

2013-01-17 Thread Pierre Sahores
Jacque, The best is always to test different outputs formats in using MPEGStreamclip (- Windows formats), Handbrake (MacOS X / Linux formats), QT7 Pro (see export features) and QT 10 (m4v outputs). MPEG1 and MPEG2 are mainly reserved to TV broadband outputs, not featured as web dedicated. Sure

loki.on-rev.com down?

2013-01-17 Thread Alex Shaw
Hi Anyone else having problems accessing any website, email or cpanel on loki.on-rev.com? I sent an urgent request for assistance to supp...@on-rev.com over an hour ago and no real reply yet. regards alex ___ use-livecode mailing list

Re: loki.on-rev.com down?

2013-01-17 Thread Mike Bonner
I can get to odin and loki both, but they seem SLOW at the moment. (both slow) On Thu, Jan 17, 2013 at 6:57 PM, Alex Shaw a...@harryscollar.com wrote: Hi Anyone else having problems accessing any website, email or cpanel on loki.on-rev.com? I sent an urgent request for assistance to

Re: loki.on-rev.com down?

2013-01-17 Thread Mike Bonner
Just did a couple more tests, really slow gateways (dallas1 and dallas3.level3.net), and a dropped packet here or there when pinging loki. Fluctuating ping times too, from 300ms to periods where its sitting around 1500ms *gag* On Thu, Jan 17, 2013 at 7:00 PM, Mike Bonner bonnm...@gmail.com

Animated gif editor

2013-01-17 Thread Peter Haworth
Anyone know of an animated gif editor, preferably free? I need to resize an existing animated gif. Pete lcSQL Software http://www.lcsql.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: loki.on-rev.com down?

2013-01-17 Thread J. Landman Gay
On 1/17/13 7:57 PM, Alex Shaw wrote: Hi Anyone else having problems accessing any website, email or cpanel on loki.on-rev.com? I'm on loki, it seems to be working okay on my site. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: More about audio-video

2013-01-17 Thread J. Landman Gay
Thanks for all the responses. The audio/video files will be prepared by my client and served over the internet to customers. We have control over the format, the names, whatever is needed. The catch is that the people who will be viewing the media can be on any computer, often one they don't

Re: More about audio-video

2013-01-17 Thread Colin Holgate
If need be, can you use something other than LiveCode to solve the problem? A Flash projector ought to be able to work, and doesn't rely on any system software to be able to play H.264 video, along with high quality AAC audio. Or, if you can require that the system has Flash Player (which most

Re: More about audio-video

2013-01-17 Thread Robert Sneidar
Lowest common denominator then. For audio, use mp3. For video, mpeg2. Just about every modern os supports those 2 out of the box. Bob Sneidar IT Manager Calvary Chapel CM Sent from iPhone On Jan 17, 2013, at 18:38, J. Landman Gay jac...@hyperactivesw.com wrote: Thanks for all the responses.

Re: loki.on-rev.com down?

2013-01-17 Thread Phil Davis
My pingdom.com account monitors a client site on loki, and the last downtime it detected for that site was 01/14/2013 at 05:43:09 PM for about 30 minutes. (not sure which time zone it references). Phil Davis On 1/17/13 5:57 PM, Alex Shaw wrote: Hi Anyone else having problems accessing any

Re: More about audio-video

2013-01-17 Thread stephen barncard
J. There's one open source app that might be ripe for imbedding: VLC http://www.videolan.org/vlc/index.html cross-platform, the source is available, and if one can open a window from the command line This idea was inspired a little mac app called NICECAST. A beautiful mac front end with

Re: loki.on-rev.com down?

2013-01-17 Thread Alex Shaw
Hi Based in Australia all morning been getting.. Internal Server Error 500 The server is too busy to handle your request. Please wait a few minutes and try again. cpsrvd/11.34.1.7 Server at loki.on-rev.com .. when trying to access cpanel for the site. The address is http://www.wag.com.au

Re: More about audio-video

2013-01-17 Thread Pierre Sahores
As an example, avi encodes mp4. Just to point out that codecs and the ways video contents are encoded are always two distinct things. If you can use a javascript to test the end user installed OS, you will get way to serve the adapted video format for each different target. Not a painless

Re: More about audio-video

2013-01-17 Thread Pierre Sahores
Just follow Bob on this : about audio, don't search any best way than mp3. Will works as expected against any end-user target. I'm not so sure as Bob is about mp2 indeed : lowest compression than mp4 and its useful H264 declinaison. Le 18 janv. 2013 à 03:52, Robert Sneidar a écrit : Lowest

Re: loki.on-rev.com down?

2013-01-17 Thread Pierre Sahores
Same there even if (S)FTP is OK. Apache is down and it seems to be a cPanel specific problem too. Le 18 janv. 2013 à 04:23, Alex Shaw a écrit : Hi Based in Australia all morning been getting.. Internal Server Error 500 The server is too busy to handle your request. Please wait a few

Re: More about audio-video

2013-01-17 Thread stephen barncard
As far as serving video, my experiments have shown that it is often better to use a service that does it for a living, like Vimeo, than to depend on one's own servers. $60/year buys up to 5 gigs of video a month. Far better than youtoob. And if one ends up using a browser for displaying video

Re: More about audio-video

2013-01-17 Thread Colin Holgate
MPEG-2 isn't really an option. Only systems that have DVD-ROMs, and DVD-Video playing software, would be able to play MPEG-2. In the Windows world it's not unusual for people to find illegal ways around that, and on Mac you have the option of buying the $20 MPEG-2 playback component, but

Re: More about audio-video

2013-01-17 Thread stephen barncard
VLC is also apple-scriptable. Stephen Barncard San Francisco Ca. USA more about sqb http://www.google.com/profiles/sbarncar ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: More about audio-video

2013-01-17 Thread Pierre Sahores
Good to know too. Thanks ! Le 18 janv. 2013 à 04:53, stephen barncard a écrit : Vimeo, than to depend on one's own servers. $60/year buys up to 5 gigs of video a month. -- Pierre Sahores mobile : 06 03 95 77 70 www.sahores-conseil.com ___

Re: [OT] A tale of App Store rejection

2013-01-17 Thread Kay C Lan
On Fri, Jan 18, 2013 at 3:37 AM, J. Landman Gay jac...@hyperactivesw.com wrote: I think if you could add something that is user-specific it would be accepted. Maybe the user could turn on an alarm to notify them when traffic is low, or something like that. I think it has to be personal to the

Re: [OT] A tale of App Store rejection

2013-01-17 Thread As_Simon
Andre Garzia-3 wrote This app was built in a day, including the server. It was a dare from a friend who said: how fast can you build something to check on the bridge for Android? and I said fast. Love these test and LC! How about adding fine location gps and calculate the best route from

Re: Animated gif editor

2013-01-17 Thread Richmond
On 18/01/13 04:06, Peter Haworth wrote: Anyone know of an animated gif editor, preferably free? I need to resize an existing animated gif. Pete lcSQL Software http://www.lcsql.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: loki.on-rev.com down?

2013-01-17 Thread Phil Davis
So much for pingdom.com reliability! Phil On 1/17/13 7:40 PM, Pierre Sahores wrote: Same there even if (S)FTP is OK. Apache is down and it seems to be a cPanel specific problem too. Le 18 janv. 2013 à 04:23, Alex Shaw a écrit : Hi Based in Australia all morning been getting.. Internal

Re: More about audio-video

2013-01-17 Thread Phil Davis
One tool l I have found to be almost magical in its media conversion capabilities is ffmpeg. It's open source, cross-platform, command-line only, but is used as the engine in a number of commercial apps. Also, it has a serious learning curve. But a good tool if it's what you need. We use it