Re: How to select image object instead of group

2010-12-10 Thread Scott Pepperdine
The image script is: on mouseup answer file "Select your file:" if it is empty exit to top set the filename of image "image" to it end mouseup The group script is as follows ( just to prove to me this what was happening: on mouseup answer "1033" end mouseup Thanks all for your eff

Re: iOS: how to play a video file from a url?

2010-12-10 Thread Thomas McGrath III
Scott, Here this may help or not. I feel your frustration. Search Results: "It probably means you incorrectly filled in some provisioning data or you did not install the provisioning profiles or App Id stuff on your computer correctly." -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@co

Datagrids and mobile

2010-12-10 Thread David Bovill
I've had this working before, but manually. just checking as i can;t get it to work in the IDE - has anyone got datagrids working in iOS? Or do you still have to copy the library over by hand? ___ use-livecode mailing list use-livecode@lists.runrev.com Pl

Re: lock screen / unlock screen causes livecode to crash?

2010-12-10 Thread Glen Bojsza
Yes, I found / reported that the option buttons from my OS X 4.5.1 need to be replaced with ones on Linux 4.5.2 in order for them to work properly. thanks for checking. Glen On Fri, Dec 10, 2010 at 6:07 PM, Mark Wieder wrote: > Glen- > > Thursday, December 9, 2010, 10:42:31 PM, you wrote: >

Re: lock screen / unlock screen causes livecode to crash?

2010-12-10 Thread Glen Bojsza
No to the lock messages being set or used. 2010/12/10 Björnke von Gierke > Do you have per-chance lockMessages set to true? Shooting into the dark... > > On 10 Dec 2010, at 08:00, Glen Bojsza wrote: > > > I discovered that I need to delete all my option buttons that were made > > while on OS X w

Re: iOS: how to play a video file from a url?

2010-12-10 Thread David Bovill
Thanks Bernd - works a treat - should dig into what files can be played - I assumed it was the same of more than QuickTime for OSX. What is the strategy would you say for caching / downloading videos? On 11 December 2010 00:51, BNig wrote: > > Hi David, > > the above file is about 830 KB > > th

Re: iOS: how to play a video file from a url?

2010-12-10 Thread David Bovill
Hi Scott - I'll be online over the weekend, going to bed now. I can show you via Skype screen sharing or the web site - how I have things set up if that helps. I know from posts to lists that getting the provisioning write can be hit and miss - does the same provisioning profile work on the other p

Re: How to select image object instead of group

2010-12-10 Thread Scott Rossi
The only reason I can think of why this would happen is because the image contains transparent regions. Or from clicking really fast (on any control, not just images), which you would have to address by adding a mouseDoubleDown/mouseDoubleUp handler. For years I've built stacks with controls c

Re: Dictionary has stopped working

2010-12-10 Thread Joe Lewis Wilkins
Thanks Jacque, I figured it had to be something like that, but your suggestions are a big help. Methinks this whole method of handling menus should be reanalyzed and made a bit easier. I know this is tough, but this situation is a major hurdle for us coders to overcome. Come to think of it, I gu

[OT] Data Grid Helper for MC IDE - We can do it

2010-12-10 Thread zryip theSlug
Dear List, We made a big step forward with the compatibility of the Data Grid Helper plugin and the MC IDE. What actually working: - invoking DGH by double clicking on a datagrid, switching between datagrids - the properties palette - the script installer (our way to install ready to use script i

Re: iOS: how to play a video file from a url?

2010-12-10 Thread Scott Rossi
Sorry to sidetrack this thread, but could I ask how you go about preparing your LiveCode standalone for deployment on an iPhone? I have spent hours trying get a simple LiveCode stack transferred to an iPod Touch, but every time I drag the LiveCode standalone onto the device's app list in Xcode,

Re: How to select image object instead of group

2010-12-10 Thread J. Landman Gay
On 12/10/10 6:53 PM, Scott Pepperdine wrote: I have scripts associated with the other fields in the group, so it would be best if the script can be associated with the image. I can't reproduce it. I grouped an image with a button and field, put a script in the image, and clicking it triggers t

Re: How to select image object instead of group

2010-12-10 Thread jonathandlynch
Why do mouse clicks sometimes not get ditectly caught by a grouped image? I often have to catch the mouseup or mousedown in a group script Sent from my Verizon Wireless BlackBerry -Original Message- From: Scott Rossi Sender: use-livecode-boun...@lists.runrev.com Date: Fri, 10 Dec 2010 17

Re: Dictionary has stopped working

2010-12-10 Thread J. Landman Gay
On 12/10/10 5:02 PM, Joe Lewis Wilkins wrote: In my case the windows have been getting smaller. I'll probably end up doing the same thing, though that's how programs get bloated; not solving the real issues; just using "work-arounds"; real spaghetti code. It is reassuring to know that it's not ju

Re: How to select image object instead of group

2010-12-10 Thread Scott Rossi
What's being triggered in the group: a mouseDown or mouseUp handler, or something similar? It must be something common to both the image and the fields. If I understand what you're trying to do, you should be able to 1) place the handler in the script of the image, or 2) in the group's mouseDown

Re: lock screen / unlock screen causes livecode to crash?

2010-12-10 Thread Mark Wieder
Glen- Thursday, December 9, 2010, 10:42:31 PM, you wrote: > Thanks. Just reporting back that all seems fine on FC13, rev 4.5.2 with option buttons, lock and unlock screen. -- -Mark Wieder mwie...@ahsoftware.net ___ use-livecode mailing list use-li

Re: How to select image object instead of group

2010-12-10 Thread Jonathan Lynch
Perhaps try the following: Group script: on mouseup send myCustomHandler to image "myImage" end mouseup Image script: on MyCustomHandler -- do the things I want it to do end MyCustomHandler On Fri, Dec 10, 2010 at 7:53 PM, Scott Pepperdine wrote: > I have scripts associated with the othe

Re: How to select image object instead of group

2010-12-10 Thread Scott Pepperdine
I have scripts associated with the other fields in the group, so it would be best if the script can be associated with the image. Thanks for the reply. On 12/10/2010 5:51 PM, jonathandly...@gmail.com wrote: I have had this happen, and I just put the script in the group. Does it need to be in

Re: iOS: how to play a video file from a url?

2010-12-10 Thread BNig
Hi David, the above file is about 830 KB this one is about 74 KB and it is again exported via Quicktime Player for the iPhone. format .3gp as you see. runs smother. -- on mouseUp -- play video "http://berndniggemann.on-rev.com/movieRevlet/movie/LanoKurz.m4v"; -- 830 K

Re: How to select image object instead of group

2010-12-10 Thread jonathandlynch
I have had this happen, and I just put the script in the group. Does it need to be in the image? --Original Message-- From: Scott Pepperdine Sender: use-livecode-boun...@lists.runrev.com To: How to use Revolution ReplyTo: How to use LiveCode Subject: How to select image object instead of

Re: iOS: how to play a video file from a url?

2010-12-10 Thread BNig
Hi David, I converted a mov file to m4v file in the old Quicktime Player export-> settings -> iPhone I uploaded that to my server: on mouseUp play video "http://berndniggemann.on-rev.com/movieRevlet/movie/LanoKurz.m4v"; end mouseUp it is a very short clip. It works on the Simulator and on t

How to select image object instead of group

2010-12-10 Thread Scott Pepperdine
I have an image object that is part of a background group, so when I create a new card, there it is along with a number of other fields. But when I click the image object, its script is not activated, but rather the script of the group it belongs to. What do I need to study to make the image sel

A Datagrid question

2010-12-10 Thread william humphrey
If you have a stack with a datagrid and you do this: set the dgFocus of group "mydatagrid" of stack "not_modal" to true Then you can: *set* the dgHilitedLines of *group* "mydatagrid" of stack "not_modal" to 1 and it will be blue and you can then immediately hit a down arrow key and it wi

Re: Dictionary has stopped working

2010-12-10 Thread Joe Lewis Wilkins
In my case the windows have been getting smaller. I'll probably end up doing the same thing, though that's how programs get bloated; not solving the real issues; just using "work-arounds"; real spaghetti code. It is reassuring to know that it's not just me. (smile) Joe Wilkins On Dec 10, 2010,

Re: Dictionary has stopped working

2010-12-10 Thread Peter Haworth
I did have some weird problems associated with menu bars a few months ago which were never resolved. I defined a set of menus for my main stack and set the option for them to be displayed in the Mac menu bar not the stack window. After that, every time I ran my application my main stack w

glx2

2010-12-10 Thread Peter Haworth
I keep getting a strange message about scripts having been modified in another editor when using glx2 - I haven't used the standard IDE editor in the same session. IS this a known issue? I'm getting another problem if I disable the glx2 editor so I can go back into the IDE editor for examp

Re: Dictionary has stopped working

2010-12-10 Thread Joe Lewis Wilkins
Thanks Peter. What is driving me crazy, though, is the changing of the stack height as I go from card to card. No rhyme or reason for that and JUST started happening. I've been working on this project for over two months now. At one point I did have the resizable check box set, but I've changed

Re: Dictionary has stopped working

2010-12-10 Thread Peter Haworth
I have had problems with the Dictionary turning up blank but only in a pretty specific circumstance. It usually happens when I am in browse mode and I have debug break points set. If I stop exxecution of the code by clicking on the blue square in the debug toolbar, then go to the dictiona

Dictionary has stopped working

2010-12-10 Thread Joe Lewis Wilkins
Has anyone ever had this happen to them? Everything is blank. I restarted LC and, finally, my MacPro, running Snow Leopard. The height of my substacks has been changing on me. Just started happening. Any chance I need to reinstall LC? Joe Lewis Wilkins __

iOS: how to play a video file from a url?

2010-12-10 Thread David Bovill
Does anyone have an example script that works for playing a video from a url in iOS? The docs say: Basic support for playing videos has been added using a variant of the play > command. A video file > can be played by using: > play ( video-file | video-url ) > The video will be played fullscreen,

Re: Live LiveCode Code Event #3

2010-12-10 Thread David C.
> LOL! If someone replies to the reply, will it say Re: Re: Live Live Code > Code Event? heh heh > > Bob Let me help you out with that and see what happens, Bob! ;-) Best regards, David C. ___ use-livecode mailing list use-livecode@lists.runrev.com P

Re: On-Rev desktop client refuses to connect! [Solved]

2010-12-10 Thread Medard
Matthias Rebbe wrote: > if your are on loki server, you should try again. I reported the problem > for loki to support and they fixed it. Done. the support restored my connection :-) ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Accessing HTTP Web Services with LiveCode

2010-12-10 Thread toddgeist
Hello, I did a little search of the List Archive, and I can't find anything on the topic so I thought I would post the question. I am trying to understand if LiveCode could be used to access many of todays plain HTTP based or RESTful web services that are out there. I like using these services

Re: Opening documents with Quick Look on iPad?

2010-12-10 Thread Andre Garzia
never tried but try launch url with the path to the pdf and see where it goes... On Fri, Dec 10, 2010 at 1:33 PM, As_Simon wrote: > > Has anyone figured out how to open, say a pdf, using iPads Quick Look? I > mean via LC. > This would be great because Quick Look handles many types of files. > >

Re: FTP problems

2010-12-10 Thread Andre Garzia
Folks, There is nothing magical about browsers opening FTP servers. Just like we can put URL, so can browsers. The trick is knowing which protocol to use. If you access a URL with ftp://... then you will be doing FTP if you access the same server using http://... then you will be looking for a web

Re: FTP problems

2010-12-10 Thread Ben Rubinstein
On 10/12/2010 18:43, Bob Sneidar wrote: Well now wait just a doggone minute here! The only reason FTP works with browsers is because the browser is written to do so. We have no guarantee that the GET/PUT URL command in Livecode is written to do so! Except the documentation. _

Re: FTP problems

2010-12-10 Thread Andre Garzia
Folks, The FTP server is not recognizing the PASS command for sending password. After USER anonymous command it logs you in without waiting for a PASS command. It answers the PASS with 500 and thus Rev engine stops processing. if you want to have some fun with this: go stack url "http://dl.dropb

Re: Opening documents with Quick Look on iPad?

2010-12-10 Thread François Chaplais
As I have no DSL connexion currently, I use my 3G ipad for internet connexions. I highly recommend GoodReader for iPad. It is a must have. As far as your problem is concerned, I would suggest tranferring your documents to GoodReader, much like what you can do in the mail app. Best François.

Re: FTP problems

2010-12-10 Thread Bob Sneidar
The reason I think that this is not the case, is because the result of the command returns an error 500 Unknown command which is an FTP response, not an HTTP one. Bob On Dec 10, 2010, at 10:40 AM, wayne durden wrote: > I wonder if perhaps the first three characters of the url also being "ftp

Re: FTP problems

2010-12-10 Thread Bob Sneidar
Well now wait just a doggone minute here! The only reason FTP works with browsers is because the browser is written to do so. We have no guarantee that the GET/PUT URL command in Livecode is written to do so! I suspect if there was a web interface to the FTP server, it would work a peach! Bob

Re: FTP problems

2010-12-10 Thread wayne durden
I wonder if perhaps the first three characters of the url also being "ftp" may be involved. For instance, if there is logic in the engine which for some reason might first strip the original ftp off the url to establish the protocol, but then is recursively called or otherwise checking the remain

iOS Orientation Problem

2010-12-10 Thread Randy Hengst
Hi All, I'm working with the 4.5.2 livecode and iOS -- the new integrated version. I'm having trouble setting the screen orientation. I want the orientation to be landscape right without any change as the device is rotated. I've set the user interface options to: ---Supported Interface Orienta

Re: FTP problems

2010-12-10 Thread Colin Holgate
On Dec 10, 2010, at 1:15 PM, J. Landman Gay wrote: > > I'm not sure why, but your server isn't accepting the URL. But it does work in a browser. What could cause it to work ok in a browser, but not from the message box? ___ use-livecode mailing l

Re: FTP problems

2010-12-10 Thread Bob Sneidar
But oddly, if you just enter the URL into a web browser you get the contents of the file without any authentication. Bob On Dec 10, 2010, at 10:15 AM, J. Landman Gay wrote: > On 12/10/10 10:26 AM, Joseba Aguayo wrote: >> Hello: >> >> Why this sentence not run : >> >> put URL >> "ftp://ftp

Re: FTP problems

2010-12-10 Thread J. Landman Gay
On 12/10/10 10:26 AM, Joseba Aguayo wrote: Hello: Why this sentence not run : put URL "ftp://ftpdatos.aemet.es/series_climatologicas/valores_diarios/estacion/LEEME_DATOS.txt"; into msg Often you need to supply a user name and password for ftp access. I tried this: get "ftp://ftpdatos.aem

Re: FTP problems

2010-12-10 Thread Mike Bonner
Strangely, gives a 'command not found' in the result. Definitely weird. On Fri, Dec 10, 2010 at 10:42 AM, Bob Sneidar wrote: > I have no idea. When I put the URL into a web page it works, but no form of > put or get I tried returns anything. > > Bob > > > On Dec 10, 2010, at 8:26 AM, Joseba Agu

Re: FTP problems

2010-12-10 Thread Bob Sneidar
I have no idea. When I put the URL into a web page it works, but no form of put or get I tried returns anything. Bob On Dec 10, 2010, at 8:26 AM, Joseba Aguayo wrote: > Hello: > > Why this sentence not run : > > put URL > "ftp://ftpdatos.aemet.es/series_climatologicas/valores_diarios/estac

Re: On-Rev desktop client refuses to connect!

2010-12-10 Thread Medard
Matthias Rebbe wrote: > if your are on loki server, you should try again. I reported the problem > for loki to support and they fixed it. Good news :-) I posted a message to b...@on-rev.com, as stated in the docs. ___ use-livecode mailing list use-li

Re: Live LiveCode Code Event #3

2010-12-10 Thread Bob Sneidar
Looking at the subject line, I thought I was seeing double! LOL! If someone replies to the reply, will it say Re: Re: Live Live Code Code Event? heh heh Bob On Dec 9, 2010, at 5:13 PM, Mark Schonewille wrote: > Dear LiveCoders, > ___ use-livecode

The Old List Address

2010-12-10 Thread Bob Sneidar
Not that anyone really would care much, but from now on if I get an email addressed to the old list, I am just going to delete it without reading it. It reminds me of people who leave their coffee cups in the sink at work, right under the sign that says, "Please do not leave your coffee cups in

Re: Opening documents with Quick Look on iPad?

2010-12-10 Thread As_Simon
Hi Peter, Thanks, very close as it works in the simulator but not on the actual device. it just crashes the whole app. Not sure if it's the get Shell() command that does it. Thanks, Simon -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Opening-documents-with-Quic

FTP problems

2010-12-10 Thread Joseba Aguayo
Hello: Why this sentence not run : put URL "ftp://ftpdatos.aemet.es/series_climatologicas/valores_diarios/estacion/LEEME_DATOS.txt"; into msg Un saludo. Joseba Aguayo Fernández (jagu...@telur.es) ___ use-livecode mailing list use-livecode@lists.r

Re: Opening documents with Quick Look on iPad?

2010-12-10 Thread Peter Brigham MD
Here's what I use on the desktop. Don't know squat about how this could be massaged for iPad. - on mouseUp tBtn answer file "Please choose a file to look at ..." if it is empty then exit mouseUp put it into theFile put empty into allowDrag quickLook theFile end mouseUp

Re: On-Rev desktop client refuses to connect!

2010-12-10 Thread Matthias Rebbe
Hi Medard, if your are on loki server, you should try again. I reported the problem for loki to support and they fixed it. If you are not on the loki server, then just report it to support and they will fixit also. Regards, Matthias Am 09.12.2010 um 21:21 schrieb Medard: > As for this evenin

Opening documents with Quick Look on iPad?

2010-12-10 Thread As_Simon
Has anyone figured out how to open, say a pdf, using iPads Quick Look? I mean via LC. This would be great because Quick Look handles many types of files. Thanks, Simon -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Opening-documents-with-Quick-Look-on-iPad-tp30

Re: Live LiveCode Code Event #3

2010-12-10 Thread Mark Schonewille
Hi Björnke, With a little luck --if we don't forget to press the record button-- you can see the videos afterwards! -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553

Re: iOS Apps Update Model - Trigger

2010-12-10 Thread Klaus on-rev
Hi Chipp, > Yes, of course it is. I'm only talking about using it for enterprise > customers, who I can independently provision. Ah, I see. > Just to be clear, THIS SHOULD NOT BE DONE FOR A COMMERCIAL APP! EVER! :-) Best Klaus -- Klaus Major http://www.major-k.de kl...@major.on-rev.com ___

Re: Live LiveCode Code Event #3

2010-12-10 Thread Björnke von Gierke
Oh man, I so wanted to see the GLX tour, and i've never even seen Judy teach yet... On 10 Dec 2010, at 02:13, Mark Schonewille wrote: > Dear LiveCoders, > > This Saturday, 11 December 2010 at 19:00h GMT (Sat. 22:00 in Moscow, Sat. > 20:00 in Paris, Sat. 14:00 in New York, Sat. 11:00 in Los An

POST (mulitpart/form-data)

2010-12-10 Thread Harald Müller
Hi all, I'm trying to build a mulitpart/form-data post, but it doesn't work. I don't want to use libUrlMultipartFormData because I don't think it would work on the iPhone. Any idea? My test-script: on mouseUp answer file "Testfile:" of type "PNG" Put url ("binfile:/" & it) into myFile pu

Re: RevServer set-up on OSX Server

2010-12-10 Thread Andre Garzia
Keith, Let us do the second round!!! :-D First is this something that will be accessed from outside or is just for local development? Setup is basically the same, just put the revserver distribution inside /Library/WebServer/CGI-Executables then fix your .htaccess on the web documents folder n

Re: lock screen / unlock screen causes livecode to crash?

2010-12-10 Thread Björnke von Gierke
Do you have per-chance lockMessages set to true? Shooting into the dark... On 10 Dec 2010, at 08:00, Glen Bojsza wrote: > I discovered that I need to delete all my option buttons that were made > while on OS X with new ones from 4.5.2 under Linux. > > Also, further testing is showing that lock s

RevServer set-up on OSX Server

2010-12-10 Thread Keith Clarke
Hi Folks, Is there any guidance around concering how-to get OSX Server with revServer configured? Thanks, Keith.. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription