Re: Custom Desktop Folders

2015-04-15 Thread Scott Morrow
Hello Ray, I believe I had success setting custom folder icons from LiveCode using the Xcode tool SetFile. I can’t remember who pointed me at it… probably Ken Ray. In order for this to work I needed to store the SetFile tool in a customProp of my app and temporarily write it to the user’s drive.

Re: Datagrid question

2015-04-15 Thread William Prothero
Thanks! Worked like a charm. Now I suppose, to get it back in the data grid cell, it’s: local savedColumnINdex,savedRowIndex —saved from command that loaded the data from the cell into the field. on mouseUp put fld “editedCellContents” into myEditedData setDataOfIndex(savedRowIndex, s

Re: Datagrid question

2015-04-15 Thread dunbarx
Hi. Nobody understands dataGrids, though they are wonderful tools. Try this in the group script: on mouseDown put getDataOfIndex(the dgHilitedIndexes of me,the dgColumn of the target) into vld "yourField" end mouseDown Craig Newman -Original Message- From: William Prother

Datagrid question

2015-04-15 Thread William Prothero
I’m trying to set up the dataGrid to put the cell contents in another field, for editing, when I click on it. Some of the cells may contain a fair amount of text, and I won’t be able to edit it in the cell itself. The tutorials refer to the revDataGridLibrary. Can’t find it. Or could the

Re: Custom Desktop Folders

2015-04-15 Thread Mike Bonner
Give it the full path. On Wed, Apr 15, 2015 at 12:50 PM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Hi Ray, > > I've found the link I got the example from (IIRC): > > https://msdn.microsoft.com/en-us/library/windows/desktop/ > cc144102%28v=vs.85%29.aspx > > -- > Best regards, >

Re: sftp ... again

2015-04-15 Thread Richard Gaskin
Michael Doub wrote: I am looking for a way to push a file on to my ftp site. rsync via shell, with shared SSH keys. Much more efficient, and once you have your public key added to the server there's a whole world of great things you can do to automate tasks with LiveCode. How-to on settin

sftp ... again

2015-04-15 Thread Michael Doub
I am looking for a way to push a file on to my ftp site. It supports FTP with TLS/SSL (AUTH TLS - Explicit), SFTP and WebDAV with HTTPS (SSL).Based on my searching it seems the FTP path is a dead end, and I dont know anything about WebDAV. I thought I would double check with the list an

Re: datagrid multiple lines mobile

2015-04-15 Thread Mike Kerner
Never mind, I just rewrote the behavior script to make it do what I want it to do. On Wed, Apr 15, 2015 at 3:17 PM, Mike Kerner wrote: > If I'm reading the behavior script correctly for dataGrids, there isn't > (currently) any way to select multiple lines automatically on mobile, right > (where

datagrid multiple lines mobile

2015-04-15 Thread Mike Kerner
If I'm reading the behavior script correctly for dataGrids, there isn't (currently) any way to select multiple lines automatically on mobile, right (where each tap just selects or deselects another line) - yes? -- On the first day, God created the heavens and the Earth On the second day, God crea

Re: New Way To Deal With Custom Fonts on iOS?

2015-04-15 Thread Ken Ray
Scott, Sorry I’m late to the party, but I ran into this quite a while ago and wrote this post to LiveCodeJournal: http://livecodejournal.com/forum/viewtopic.php?f=23&t=48 I had to create a series of routines that would work off of a fo

Re: Custom Desktop Folders

2015-04-15 Thread Mark Schonewille
Hi Ray, I've found the link I got the example from (IIRC): https://msdn.microsoft.com/en-us/library/windows/desktop/cc144102%28v=vs.85%29.aspx -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/x

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread J. Landman Gay
LOL. I thought you did it on purpose. On 4/15/2015 12:25 PM, Peter Haworth wrote: Perfect!!! that should have been "age" not "ape". Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin

Re: Custom Desktop Folders

2015-04-15 Thread Michael Doub
this might help... http://helpdeskgeek.com/how-to/customize-folder-icons-desktop-ini/ On 4/15/15 2:20 PM, Mark Schonewille wrote: Hi Ray, I used to do this for CD's. Those projects are on an external hard disk somewhere. As soon as I find those projects, I'll post a real ini file. Meanwhile

Re: Custom Desktop Folders

2015-04-15 Thread Mark Schonewille
Hi Ray, I used to do this for CD's. Those projects are on an external hard disk somewhere. As soon as I find those projects, I'll post a real ini file. Meanwhile, you could just check out the syntax for ini files. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engi

Re: Custom Desktop Folders

2015-04-15 Thread Roger Eller
I tried it too, and the folder icon has not changed. I am in Windows 7. On Wed, Apr 15, 2015 at 8:01 PM, Ray wrote: > OK Mark - I've experimented a little doing this: > > Made a text file named Desktop.ini > > Saved the following content in it: > [.ShellClassInfo] > IconFile=MyIcon.ico > IconI

Re: Custom Desktop Folders

2015-04-15 Thread Ray
OK Mark - I've experimented a little doing this: Made a text file named Desktop.ini Saved the following content in it: [.ShellClassInfo] IconFile=MyIcon.ico IconIndex=0 InfoTip=Some sensible information. Created a folder on the Windows desktop named Test Moved both the file and a .ico file nam

Re: Custom Desktop Folders

2015-04-15 Thread Ray
Really! Just that simple. I'll give it a try. Thanks... On 4/15/2015 1:43 PM, Mark Schonewille wrote: Ray, It is a text file. I gave you an example of the text. LiveCode can create such text files. The file should be saved inside the folder of which you want to change the icon. -- Best r

Re: Custom Desktop Folders

2015-04-15 Thread Mark Schonewille
Ray, It is a text file. I gave you an example of the text. LiveCode can create such text files. The file should be saved inside the folder of which you want to change the icon. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-ta

Re: Custom Desktop Folders

2015-04-15 Thread Ray
Mark - thanks for these tips but I'm afraid I'm not quite following you. Should the text file have any text in it? Which folder should I save it in? And finally, how do I set the settings you've outlined from within Livecode? I guess these things are delving into an area of Livecode I've

Re: Custom Desktop Folders

2015-04-15 Thread Ray
Thanks Roger. I can supply the .ico file I intend to use so the question isn't really how to /create /the .ico file from within Livecode, it's how to assign the .ico file to the folder so the folder displays it on the desktop. I can do this /manually /on Windows. Right-click, choose Properti

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Peter Haworth
Perfect!!! that should have been "age" not "ape". Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Wed, Apr 15, 2015 at 10:25 AM, Peter Haworth wrote: > Surely autocorrect is o

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Peter Haworth
Surely autocorrect is one of THE worst things to come out of the computer ape Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Wed, Apr 15, 2015 at 10:15 AM, Geoff Canyon wr

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Geoff Canyon
On Wed, Apr 15, 2015 at 11:44 AM, Colin Holgate wrote: > Just looking at what I wrote, and an autocorrection in my message will > have caused much confusion! The $30 is to remove “ads”, not “apps”. My brain auto-corrected that back to "ads." :-) ___ u

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Richmond
On 15/04/15 19:44, Colin Holgate wrote: Just looking at what I wrote, and an autocorrection in my message will have caused much confusion! The $30 is to remove “ads”, not “apps”. Thanks: Thee and Me look like bananas both :) Richmond. On Apr 15, 2015, at 12:37 PM, Richmond wrote: On 1

Re: Custom Desktop Folders

2015-04-15 Thread Mark Schonewille
Hi Ray, Make a text file with Notepad. Save it in the folder as Desktop.ini. Use the following settings: [.ShellClassInfo] IconFile=Folder.ico IconIndex=0 InfoTip=Some sensible information. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http:

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Colin Holgate
Just looking at what I wrote, and an autocorrection in my message will have caused much confusion! The $30 is to remove “ads”, not “apps”. > On Apr 15, 2015, at 12:37 PM, Richmond wrote: > > On 15/04/15 19:17, Frank wrote: >> If PencilCase is doing the charging, how is that Apple's fault? >

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Richmond
On 15/04/15 19:19, Frank wrote: "so that they don't have to do what Big Brother Apple [slightly ironic considering their '1984' advert] tells them they can and cannot do with something they own" -- Uh, not to burst Your bubble but Apple doesn't tell People what "they can and cannot do with someth

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Richmond
On 15/04/15 19:17, Frank wrote: If PencilCase is doing the charging, how is that Apple's fault? That wasn't clear from the previous post. And if PencilCase are doing the charging (for uninstalling) that's at least one good reason not to do anything with it. Richmond. On 15 April 2015 at 0

Re: Custom Desktop Folders

2015-04-15 Thread Roger Eller
Thus far, there is no way to create OS specific icon files within LiveCode, but I have always thought there should be. You have to use Photoshop, Gimp, or other custom icon software to create icons that contain all the various resolutions required by each OS. How about a widget for that, RunRev?

Re: New Way To Deal With Custom Fonts on iOS?

2015-04-15 Thread Scott Rossi
Thanks Chris. The bug report is mostly about time to load, but yes it seems somewhat related. The main issue is there's some disconnect between what the fontNames function reports and what is needed by the system for fonts to render properly. To apply a font name, the basic approach seems to be

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Frank
"so that they don't have to do what Big Brother Apple [slightly ironic considering their '1984' advert] tells them they can and cannot do with something they own" -- Uh, not to burst Your bubble but Apple doesn't tell People what "they can and cannot do with something they own"; Apple only says, "I

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Frank
If PencilCase is doing the charging, how is that Apple's fault? On 15 April 2015 at 04:57, Richmond wrote: > On 14/04/15 22:03, Colin Holgate wrote: > >> That's interesting to know about. Another factor may be the $30 you have >> to pay to remove apps. That's $9 to Apple for each user who does t

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Geoff Canyon
On Wed, Apr 15, 2015 at 3:39 AM, Richmond wrote: > On 14/04/15 18:17, Geoff Canyon wrote: > >> PencilCase has a player app on iOS >> so you can: >> >> >> 1. Design your app on a Mac >> 2. Upload it to their system and get a code >>

Custom Desktop Folders

2015-04-15 Thread Ray
Does anybody know of a way, from within Livecode, to create a folder and give it it's own custom display on the desktop? I'd imagine this would be done with an .ico file. I'd like to do this for both Mac and Windows. I've looked through the RunRev store and haven't found any extensions which

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Richmond
On 14/04/15 22:03, Colin Holgate wrote: That’s interesting to know about. Another factor may be the $30 you have to pay to remove apps. That’s $9 to Apple for each user who does that. Wow! Apple really get worse and worse: that is mind-blowing. Richmond. __

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Richmond
On 14/04/15 18:56, Dr. Hawkins wrote: On Tue, Apr 14, 2015 at 8:17 AM, Geoff Canyon wrote: If they can do it, shouldn't LC be able to as well? Or is there something I'm not thinking of? How are they getting past Apple's ban on downloading code??? Why are so many people scared of spending

Re: Why can't LC do what PencilCase does?

2015-04-15 Thread Richmond
On 14/04/15 18:17, Geoff Canyon wrote: PencilCase has a player app on iOS so you can: 1. Design your app on a Mac 2. Upload it to their system and get a code 3. Give that code to anyone 4. Anyone can install the PencilCase iOS app