PDFs

2011-11-02 Thread Richmond
on the Supercard list: Re: [SC] Importing PDF files Set pictureData of card graphic PDF to myPDFfilepath I wonder ? ? ? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

handler to connect buttons with a line

2011-11-02 Thread Kresten Bjerg
To James Thank you for new reply to my first question Because month-shift and time-differences you missed my followup: I repeat it here The previous replies suggested to produce new buttons and specify new scripts for the buttons. But the buttons will already be named and produced by the user

Re: PDFs

2011-11-02 Thread Mark Schonewille
Hi Richmond, This imports only the first page of the PDF. IIRC, in the recent discussion on this list, OP wanted to browse a PDF. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter:

Re: PDFs

2011-11-02 Thread Richmond
On 11/02/2011 12:40 PM, Mark Schonewille wrote: Hi Richmond, This imports only the first page of the PDF. IIRC, in the recent discussion on this list, OP wanted to browse a PDF. Notwithstanding, that would be better than the 'nothing' currently available in Livecode. -- Best regards,

Classic (3.5) CGI and post to a different server... Help please!

2011-11-02 Thread Malte Brill
Hi, I am trying to post from a rev 3.5 CGI to another server. This appears to fail silently. I tried including libURL as a front / backscript to no avail. Has anyone of you successfully posted to a different server from a rev 3.5 CGI? Any pointer much appreciated, Malte

Nice cm ruler. Only a click away

2011-11-02 Thread Michael Kristensen
Hi there Here is a nice cm ruler that span fx a iMac 27. Only a click away. Make a new wd Make a btn Put this script in it and click... on mouseUp lock screen put 72/2.54 into Q repeat with i = 0 to 90 new grc set the style of last grc to Polygon set the points

Re: Nice cm ruler. Only a click away

2011-11-02 Thread René Micout
Le 2 nov. 2011 à 14:34, Michael Kristensen a écrit : set the style of last grc to Polygon That line don't accept by script editor... :-( ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Nice cm ruler. Only a click away

2011-11-02 Thread Mark Schonewille
Put quotes around it? Well done, Michael. I like it. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Become our partner in sales http://qery.us/16r Start selling

Re: Nice cm ruler. Only a click away

2011-11-02 Thread Roger Eller
On Wed, Nov 2, 2011 at 9:34 AM, Michael Kristensen wrote: Hi there Here is a nice cm ruler that span fx a iMac 27. Only a click away. Michael CEO FreeCmRulersForAll www.FreeCmRulersForAll.org http://www.freecmrulersforall.org/ VERY nice! I added one line, just before end mouseUp... *

[OT] Duqu

2011-11-02 Thread Richmond
http://www.bbc.co.uk/news/technology-15554361 http://www.bbc.co.uk/news/technology-15554361 Another reason why I'm not very keen on Windows. I mean; how can you go on producing an operating system that seems to leak like a sieve, and expect people to pay for it? When

Re: Classic (3.5) CGI and post to a different server... Help please!

2011-11-02 Thread Malte Brill
Nevermind... Got it working now :) THis is all a little easier with the new server engine though. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: PDFs

2011-11-02 Thread tkuyp...@telenet.be
And what's wrong with: on mouseUp answer file Select a PDF if it = then exit mouseUp set the filename of player test to it end mouseUp Met vriendelijke groeten, Warm Regards, Ton Kuypers +32 (0) 477 739 530 Aardbemden 11 • B-2400 • Mol • Belgium www.publishingtools4u.com On

Re: PDFs

2011-11-02 Thread Mark Schonewille
Hi Ton, Nothing is wrong with that, as long as you're on a Mac. It won't work on other platforms. (Of course, SuperCard is Mac-only). -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter:

Re: PDFs

2011-11-02 Thread tkuyp...@telenet.be
I rest my case ;-) Met vriendelijke groeten, Warm Regards, Ton Kuypers +32 (0) 477 739 530 Aardbemden 11 • B-2400 • Mol • Belgium www.publishingtools4u.com On 2-nov-2011, at 16:53, Mark Schonewille wrote: Hi Ton, Nothing is wrong with that, as long as you're on a Mac. It won't work on

On CloseField and textStyle/textColor changes?

2011-11-02 Thread JOHN PATTEN
Hi All… I have a field that updates a record in a SQLite database via a on closeField handler when the quantity of the text changes. I would like the record to be updated if the user just changes the color of the text or the style of the text too. Currently if a user only changes the color of

Re: On CloseField and textStyle/textColor changes?

2011-11-02 Thread Bob Sneidar
Store the value and color of the field in an openField handler, then trap for exitField which will trigger whether or not changes are made. In the exitField handler, check for parity with your stored values and proceed accordingly. Remember to update your changed values to the stored values.

Re: On CloseField and textStyle/textColor changes?

2011-11-02 Thread Pete
Hi John, After adding the space by script, just send a closeField message to the control. Pete Molly's Revenge http://www.mollysrevenge.com On Wed, Nov 2, 2011 at 10:40 AM, JOHN PATTEN johnpat...@me.com wrote: Hi All… I have a field that updates a record in a SQLite database via a on

Re: PDFs

2011-11-02 Thread Richmond
On 11/02/2011 05:56 PM, tkuyp...@telenet.be wrote: I rest my case ;-) Which case is that? Certainly no joy on Linux (which, by-the-way, is supposedly now outstripping Mac). Met vriendelijke groeten, Warm Regards, Ton Kuypers +32 (0) 477 739 530 Aardbemden 11 • B-2400 • Mol • Belgium

Style Question

2011-11-02 Thread Michael Doub
I am working on a project that is going to manipulating records of data. What is the best approach to identifying the individual components for use in different scripts? If the data was represented as some delimited string, then each item could be defined as a constant. The question would

Re: Style Question

2011-11-02 Thread Pete
Hi Michael, I'm not sure I completely understand what you want to do but here's a few thoughts anyway! If you want to define constants to refer to item numbers within a delimited string, you can define globals for each item number and initialise them to their values somewhere in your application

Re: PDFs

2011-11-02 Thread Graham Samuel
As one of the most persistent LC developers to try to incorporate PDFs as humble bitmaps, I can report that I have actually made the ImageMagick/GhostScript route work, but the installation side is messy on Macs - don't know about Linux. It is kind of acceptable on PCs, but there I am getting

Passing Ampersand and Dot to PostGreSQL - MySQL

2011-11-02 Thread Sivakatirswami
I'm having some difficulty with passing data from a web form to a PostGreSQL database. I'm using iRev on the server and gFormData has all the data in the array. After handling all the data, running the CC charges, sending notifications, everything works, but my final functions to insert the

Re: Passing Ampersand and Dot to PostGreSQL - MySQL

2011-11-02 Thread Pete
Interesting. I don't have Postgres but I tried an insert into an SQLite table with text containing an ampersand and it worked just fine. Same with mySQL. This was on my desktop machine though, not over the web. The docs for SQLite,mySQL, and Postgres only mention the need to escape the

Re: Nice cm ruler. Only a click away

2011-11-02 Thread Mark Talluto
Hi Michael, I added to your very cool script a slight bit to make the cm ruler true on any monitor. Users will have to adjust the three variables at the top to represent their monitors accurately. on mouseUp put 1920 into tMonitorWidth put 1200 into tMonitorHeight put 24

Re: Nice cm ruler. Only a click away

2011-11-02 Thread Roger Eller
On Wed, Nov 2, 2011 at 7:50 PM, Mark Talluto wrote: Hi Michael, I added to your very cool script a slight bit to make the cm ruler true on any monitor. Users will have to adjust the three variables at the top to represent their monitors accurately. on mouseUp put 1920 into

Re: Style Question

2011-11-02 Thread Mark Wieder
Mike- Wednesday, November 2, 2011, 12:20:13 PM, you wrote: If the data was represented as some delimited string, then each item could be defined as a constant. The question would then be how to manage these constants in multiple scripts. I have not found any references to include files,

available space iOS

2011-11-02 Thread ddas
How do I check for available space on iOS? Regards, Debdoot ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: PDFs

2011-11-02 Thread Ken Ray
On Nov 2, 2011, at 1:21 PM, Richmond wrote: On 11/02/2011 05:56 PM, tkuyp...@telenet.be wrote: I rest my case ;-) Which case is that? Certainly no joy on Linux (which, by-the-way, is supposedly now outstripping Mac). What he means is that SuperCard and LiveCode do the same thing, just

Re: Passing Ampersand and Dot to PostGreSQL - MySQL

2011-11-02 Thread G. Wolfgang Gaich
Hello Sivakatirswami, I think it's an unicode problem if your database is UTF8. I use this function in that case to execute the SQL: function exeSQL_UTF8 pSQL -- pSQL is your SQL string global gDB local tRS local tSQL put unidecode(uniencode(pSQL),UTF8) into tSQL put

Re: Nice cm ruler. Only a click away

2011-11-02 Thread Bob Sneidar
I love this use list! Bob On Nov 2, 2011, at 2:39 PM, Roger Eller wrote: On Wed, Nov 2, 2011 at 7:50 PM, Mark Talluto wrote: Hi Michael, I added to your very cool script a slight bit to make the cm ruler true on any monitor. Users will have to adjust the three variables at the top to

Re: PDFs

2011-11-02 Thread Bob Sneidar
I knew that! Bob On Nov 2, 2011, at 5:40 PM, Ken Ray wrote: On Nov 2, 2011, at 1:21 PM, Richmond wrote: On 11/02/2011 05:56 PM, tkuyp...@telenet.be wrote: I rest my case ;-) Which case is that? Certainly no joy on Linux (which, by-the-way, is supposedly now outstripping Mac).