Re: Reveal in Find on Windows

2017-02-22 Thread Mike Bonner via use-livecode
Just remembered, you can bipass the shell call entirely..

launch document sRootFolder -- native lc command.  Just need to do as I
mentioned and be sure its a folder you're dealing with. (otherwise it will
launch the apropos app to match the file type)

It will probably work for both platforms. (my mac is down or I'd check
there)

On Wed, Feb 22, 2017 at 8:41 PM, Mike Bonner  wrote:

> I can't test it on mac, but 2 things. First, if your path is a folder but
> doesn't have the trailing / you'll end up in the wrong place so you might
> consider doing a check:
> if there is a file sRootFolder then delete item -1 of sRootFolder
>
> Then for the windows segment use "start":
>
> put ("start " & sRootFolder) into tShell  -- also noted there is a typo,
> you use tRootfolder rather than sRootfolder in your example above
>
> I _think_ start is available all the way down to xp, but I can't check to
> make sure.
>
>
> On Wed, Feb 22, 2017 at 8:06 PM, Sannyasin Brahmanathaswami via
> use-livecode  wrote:
>
>> this is what I have so far…
>>
>> command openWorkingFolderInFinder pFolderFile
>> set the itemdel to "/"
>> put pFolderFile into sRootFolder
>> delete item -1 of sRootFolder
>> switch platform()
>> case "MacOS"
>> put ("open " & quote & sRootFolder & quote) into tShell
>> break
>> case "Win32"
>> put ("explorer.exe /n/root," & tRootfolder) into tShell
>> break
>> end switch
>> get shell(tShell)
>> end openWorkingFolderInFinder
>>
>> Can anyone test if this opens a folder on Windows?
>>
>> tks
>>
>>
>> On 2/22/17, 4:59 PM, "use-livecode on behalf of Sannyasin
>> Brahmanathaswami via use-livecode" > on behalf of use-livecode@lists.runrev.com> wrote:
>>
>> OK  I studied the doc here:
>>
>> https://support.microsoft.com/en-us/help/130510/command-line
>> -switches-for-windows-explorer
>>
>> and actually the use cases are more often to open a folder
>>
>> but I don't have windows to test
>>
>> does this work to open a folder window on Win32?
>>
>> get shell (”explorer.exe /n,/root,c:\windows\system32\m
>> y-project-folder")
>>
>>
>> BR
>>
>>
>>
>> On 2/22/17, 1:54 AM, "use-livecode on behalf of Roger Eller via
>> use-livecode" > use-livecode@lists.runrev.com> wrote:
>>
>> get shell (”explorer.exe /select,c:\windows\system32\se
>> lected_file.txt")
>>
>> Source:
>> http://stackoverflow.com/questions/29970897/cmd-file-tasks-
>> open-directory-and-select-file
>>
>> ~Roger
>>
>>
>>
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>
>
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Reveal in Find on Windows

2017-02-22 Thread Mike Bonner via use-livecode
I can't test it on mac, but 2 things. First, if your path is a folder but
doesn't have the trailing / you'll end up in the wrong place so you might
consider doing a check:
if there is a file sRootFolder then delete item -1 of sRootFolder

Then for the windows segment use "start":

put ("start " & sRootFolder) into tShell  -- also noted there is a typo,
you use tRootfolder rather than sRootfolder in your example above

I _think_ start is available all the way down to xp, but I can't check to
make sure.


On Wed, Feb 22, 2017 at 8:06 PM, Sannyasin Brahmanathaswami via
use-livecode  wrote:

> this is what I have so far…
>
> command openWorkingFolderInFinder pFolderFile
> set the itemdel to "/"
> put pFolderFile into sRootFolder
> delete item -1 of sRootFolder
> switch platform()
> case "MacOS"
> put ("open " & quote & sRootFolder & quote) into tShell
> break
> case "Win32"
> put ("explorer.exe /n/root," & tRootfolder) into tShell
> break
> end switch
> get shell(tShell)
> end openWorkingFolderInFinder
>
> Can anyone test if this opens a folder on Windows?
>
> tks
>
>
> On 2/22/17, 4:59 PM, "use-livecode on behalf of Sannyasin Brahmanathaswami
> via use-livecode"  use-livecode@lists.runrev.com> wrote:
>
> OK  I studied the doc here:
>
> https://support.microsoft.com/en-us/help/130510/command-
> line-switches-for-windows-explorer
>
> and actually the use cases are more often to open a folder
>
> but I don't have windows to test
>
> does this work to open a folder window on Win32?
>
> get shell (”explorer.exe /n,/root,c:\windows\system32\
> my-project-folder")
>
>
> BR
>
>
>
> On 2/22/17, 1:54 AM, "use-livecode on behalf of Roger Eller via
> use-livecode"  use-livecode@lists.runrev.com> wrote:
>
> get shell (”explorer.exe /select,c:\windows\system32\
> selected_file.txt")
>
> Source:
> http://stackoverflow.com/questions/29970897/cmd-file-
> tasks-open-directory-and-select-file
>
> ~Roger
>
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Reveal in Find on Windows

2017-02-22 Thread Sannyasin Brahmanathaswami via use-livecode
this is what I have so far…

command openWorkingFolderInFinder pFolderFile
set the itemdel to "/"
put pFolderFile into sRootFolder
delete item -1 of sRootFolder
switch platform()
case "MacOS"
put ("open " & quote & sRootFolder & quote) into tShell
break
case "Win32"
put ("explorer.exe /n/root," & tRootfolder) into tShell
break   
end switch
get shell(tShell)
end openWorkingFolderInFinder

Can anyone test if this opens a folder on Windows?

tks


On 2/22/17, 4:59 PM, "use-livecode on behalf of Sannyasin Brahmanathaswami via 
use-livecode"  wrote:

OK  I studied the doc here:  


https://support.microsoft.com/en-us/help/130510/command-line-switches-for-windows-explorer

and actually the use cases are more often to open a folder

but I don't have windows to test

does this work to open a folder window on Win32?

get shell (”explorer.exe /n,/root,c:\windows\system32\my-project-folder")


BR



On 2/22/17, 1:54 AM, "use-livecode on behalf of Roger Eller via 
use-livecode"  wrote:

get shell (”explorer.exe /select,c:\windows\system32\selected_file.txt")

Source:

http://stackoverflow.com/questions/29970897/cmd-file-tasks-open-directory-and-select-file

~Roger



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Reveal in Find on Windows

2017-02-22 Thread Sannyasin Brahmanathaswami via use-livecode
OK  I studied the doc here:  

https://support.microsoft.com/en-us/help/130510/command-line-switches-for-windows-explorer

and actually the use cases are more often to open a folder

but I don't have windows to test

does this work to open a folder window on Win32?

get shell (”explorer.exe /n,/root,c:\windows\system32\my-project-folder")


BR


 

On 2/22/17, 1:54 AM, "use-livecode on behalf of Roger Eller via use-livecode" 
 wrote:

get shell (”explorer.exe /select,c:\windows\system32\selected_file.txt")

Source:

http://stackoverflow.com/questions/29970897/cmd-file-tasks-open-directory-and-select-file

~Roger

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Community Dictionary (was Re: Delete element from array)

2017-02-22 Thread Mike Kerner via use-livecode
Everyone,
Have a look at what Bernd has done.  Again, the thread is
http://forums.livecode.com/viewtopic.php?f=67=28731=151678#p151678


On Mon, Jan 30, 2017 at 9:10 PM, Mike Kerner 
wrote:

> Also, over there, I have included a list of bug reports that I found that
> seem to be relevant.  If you have submitted a bug report for *the way the
> dictionary works*  (not for an entry being incorrect or requiring
> modification, because that is a separate, but eventually related project),
> please weigh in so we can add it to the list.
>
> On Mon, Jan 30, 2017 at 12:00 PM, Mike Kerner 
> wrote:
>
>> Do me a favor, please, and post to the thread I already started on the
>> forum.
>> http://forums.livecode.com/viewtopic.php?f=67=28731
>>
>> I also have a bug report that I started on this, that I suppose you could
>> contribute to, but I would think that first the forum would be the place to
>> go, until we have some firm things, so The Team doesn't have even more
>> stuff to read when they should be writing.
>>
>> On Sat, Jan 28, 2017 at 12:03 AM, Sannyasin Brahmanathaswami via
>> use-livecode  wrote:
>>
>>> Richard Gaskin wrote:
>>>
>>> /Documentation/resources/data/api/api.sqlite
>>>
>>> Oh boy, gonna have fun with that!
>>>
>>> BR
>>>
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your
>>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>>
>>
>>
>>
>> --
>> On the first day, God created the heavens and the Earth
>> On the second day, God created the oceans.
>> On the third day, God put the animals on hold for a few hours,
>>and did a little diving.
>> And God said, "This is good."
>>
>
>
>
> --
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>and did a little diving.
> And God said, "This is good."
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread Sannyasin Brahmanathaswami via use-livecode
going a bit OT here… I've dabbled withj Atom, Visual Studio and also long time 
ago Sublime… any reason you prefer Sublime?

I still keep dropping out back to BBEdit.. but if I could find a nother editor 
that had comparable tools I would use it. So far, atom and Visual Studio keep 
falling short…


 

On 2/22/17, 5:57 AM, "use-livecode on behalf of Trevor DeVore via use-livecode" 
 wrote:

They don’t have enough resources to create an editor that
matches a product like Sublime Text. Sublime Text is an app dedicated
entirely to editing. There are thousands of people contributing tools to
Sublime Text.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Reveal in Find on Windows

2017-02-22 Thread Sannyasin Brahmanathaswami via use-livecode
Thanks Roger!  

 

On 2/22/17, 1:54 AM, "use-livecode on behalf of Roger Eller via use-livecode" 
 wrote:

get shell (”explorer.exe /select,c:\windows\system32\selected_file.txt")

Source:

http://stackoverflow.com/questions/29970897/cmd-file-tasks-open-directory-and-select-file

~Roger



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Null symbol cross platform

2017-02-22 Thread J. Landman Gay via use-livecode

On 2/22/17 7:15 AM, David V Glasgow via use-livecode wrote:

I have a group displaying a number of single character fields which
can be clicked on to populate other fields.  Essentially a pick list.
One of the options is the null set character ( the O with a line
through it, U+2205).  I have tried to find a cross platform font that
displays it on Mac & Win.  I got some apparently duff info that
Trebuchet would do the trick,  It is OK on Mac, but appears as the
mystery character box on Win standalone.


It may be the difference in the character sets for each platform. If you 
always develop on a Mac, use macToISO() on the character when the 
platform is win32. LC usually does the conversion by itself, but if you 
are populating the list from a custom property, the script has to do it.


If you aren't using a custom property then I'm not sure why it isn't 
translating. Is the list coming from somewhere outside LC? If so, 
textDecode() should work.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: preOpenCard not called when opened from project browser

2017-02-22 Thread panagiotis merakos via use-livecode
No, this is a bug which will be fixed in 8.1.4 rc1.

http://quality.livecode.com/show_bug.cgi?id=17448

Best,
Panos

On 22 Feb 2017 23:53, "Dr. Hawkins via use-livecode" <
use-livecode@lists.runrev.com> wrote:

> I just found, after trying to open a stack from the project browser, that
> preOpenCard is not called when the stack is opened this way, whereas it is
> when using the application browser.
>
> Is this correct behavior?
>
>
> --
> Dr. Richard E. Hawkins, Esq.
> (702) 508-8462
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


preOpenCard not called when opened from project browser

2017-02-22 Thread Dr. Hawkins via use-livecode
I just found, after trying to open a stack from the project browser, that
preOpenCard is not called when the stack is opened this way, whereas it is
when using the application browser.

Is this correct behavior?


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


8.1.3 Search And Replace

2017-02-22 Thread Bob Sneidar via use-livecode
8.1.3 Search and Replace is much mo bettah. Instead of spinning it's wheels for 
2 or 3 minutes on a large project, it gets right down to searching. Kudos to 
the dev team!

Bob S
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread Trevor DeVore via use-livecode
On Wed, Feb 22, 2017 at 3:09 PM Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:

> From what little I know, the levoure framework is designed to allow
> multiple devs on a single project. This is almost undoable from within the
> IDE. If however it's just text files getting worked on, then they can be
> checked out and in to whatever system you are working with, like Github for
> example. That is my understanding anyway.


I believe if you are editing a script only stack script in the IDE then
saving the script will update the script only stack file on disk. So the
file will remain a text file. Integrating with github is more about using
script only stacks than which editor you choose.

That means scripts in a Levure app can be edited with the IDE editor. I
just find it takes me less time to add features and fix bugs in a large
project when working in Sublime Text which is why I use it.

-- 
Trevor DeVore

>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread Bob Sneidar via use-livecode
>From what little I know, the levoure framework is designed to allow multiple 
>devs on a single project. This is almost undoable from within the IDE. If 
>however it's just text files getting worked on, then they can be checked out 
>and in to whatever system you are working with, like Github for example. That 
>is my understanding anyway. 

Bob S


> On Feb 21, 2017, at 18:27 , Richard Gaskin via use-livecode 
>  wrote:
> 
> It's always exciting to see new ground explored with inter-app 
> communications, but with script editors I find myself wondering:
> 
> Why not use LC's?
> 
> If it's not on par with alternatives and for some reason can't be made to be 
> on par, why don't we just ship LC with an appropriately-licensed editor, 
> allow hooks like the ones discussed here for any other editor folks might 
> want, and spend the development time we used to spend on LC's editor on other 
> things?
> 
> --
> Richard Gaskin
> Fourth World Systems


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread prothero--- via use-livecode
Richard,
That makes good sense. A mothership sanctioned powerful external editor, with 
detailed install instructions, would be very nice and would better support 
those with higher professional aspirations for livecode.
Best,
Bill

William Prothero
http://es.earthednet.org

> On Feb 22, 2017, at 8:46 AM, Richard Gaskin via use-livecode 
>  wrote:
> 
> prothero wrote:
> 
> > I agree with Roger,
> > There needs to be a useful script editor bundled with livecode.
> 
> Absolutely.  No development environment could claim to be integrated without 
> including such an essential components.
> 
> I'm not suggesting we make people hunt for their own components.  I'm 
> wondering if it makes sense to officially embrace external editors, for both 
> utility and cost savings.
> 
> 
> > I'm suspecting that a lot of the impetus for sublime text and other
> > external editors has to do with professional developers' need to use
> > github with script only stacks. For entry level users, the built in
> > editor would be their first exposure and perhaps sufficient.
> >
> > I also suspect that folks new to programming, or non-professionals
> > might be a target too good to "not" keep on our good side.
> 
> Apologies that I didn't wrote more clearly.
> 
> In all my communications on this I've tried to stress that a good editor be 
> bundled with the LC install.
> 
> But if that editor were external, then the IDE needs only one interface for 
> managing not only the included editor, but any other editor anyone might want 
> to use.
> 
> Out of the box there's an experience at least as good as what we have now, 
> and with the click of a Prefs button users could also choose any other editor 
> they prefer.
> 
> -- 
> Richard Gaskin
> Fourth World Systems
> Software Design and Development for the Desktop, Mobile, and the Web
> 
> ambassa...@fourthworld.comhttp://www.FourthWorld.com
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread Richard Gaskin via use-livecode

prothero wrote:

> I agree with Roger,
> There needs to be a useful script editor bundled with livecode.

Absolutely.  No development environment could claim to be integrated 
without including such an essential components.


I'm not suggesting we make people hunt for their own components.  I'm 
wondering if it makes sense to officially embrace external editors, for 
both utility and cost savings.



> I'm suspecting that a lot of the impetus for sublime text and other
> external editors has to do with professional developers' need to use
> github with script only stacks. For entry level users, the built in
> editor would be their first exposure and perhaps sufficient.
>
> I also suspect that folks new to programming, or non-professionals
> might be a target too good to "not" keep on our good side.

Apologies that I didn't wrote more clearly.

In all my communications on this I've tried to stress that a good editor 
be bundled with the LC install.


But if that editor were external, then the IDE needs only one interface 
for managing not only the included editor, but any other editor anyone 
might want to use.


Out of the box there's an experience at least as good as what we have 
now, and with the click of a Prefs button users could also choose any 
other editor they prefer.


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread prothero--- via use-livecode
I agree with Roger,
There needs to be a useful script editor bundled with livecode. I'm suspecting 
that a lot of the impetus for sublime text and other external editors has to do 
with professional developers' need to use github with script only stacks. For 
entry level users, the built in editor would be their first exposure and 
perhaps sufficient. 

I also suspect that folks new to programming, or non-professionals might be a 
target too good to "not" keep on our good side.

Best,
Bill

William Prothero
http://es.earthednet.org

> On Feb 22, 2017, at 8:28 AM, Roger Eller via use-livecode 
>  wrote:
> 
> I'm fine with a different editor, as long as it is "in the box".  I don't
> want to be forced into adding components from other sites unless I choose
> to, like plugins, etc.  The IDE should install as a complete thing (editor
> included).
> 
> 2 cents.
> ~Roger
> 
> 
> On Wed, Feb 22, 2017 at 11:16 AM, Richard Gaskin via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> Roger Eller wrote:
>> 
 On Feb 21, 2017 9:28 PM, "Richard Gaskin via use-livecode" wrote:
 
 It's always exciting to see new ground explored with inter-app
 communications, but with script editors I find myself wondering:
 
 Why not use LC's?
 
 If it's not on par with alternatives and for some reason can't be
 made to be on par, why don't we just ship LC with an appropriately-
 licensed editor, allow hooks like the ones discussed here for any
 other editor folks might want, and spend the development time we
 used to spend on LC's editor on other things?
>>> 
>>> I'm not what you would call a power user, nor do I need an editor that
>>> handles multiple languages and syntax coloring variations.  I like the
>>> truly integrated LC editor just fine.  It is great to see users
>>> providing options for those who need more than that.
>> 
>> Options are good.  I'm wondering if perhaps we could embrace that more
>> fully.
>> 
>> The SE is a very expensive component to maintain.  If we could replace it
>> with a third-party editor, and put a fraction of the time we used to spend
>> maintaining and enhancing the SE into providing a mechanism to use any
>> editor the user prefers, we'd have a better editor in the box and vast
>> options for using other editors, and save development expense along the way.
>> 
>> --
>> Richard Gaskin
>> Fourth World Systems
>> Software Design and Development for the Desktop, Mobile, and the Web
>> 
>> ambassa...@fourthworld.comhttp://www.FourthWorld.com
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread Roger Eller via use-livecode
I'm fine with a different editor, as long as it is "in the box".  I don't
want to be forced into adding components from other sites unless I choose
to, like plugins, etc.  The IDE should install as a complete thing (editor
included).

2 cents.
~Roger


On Wed, Feb 22, 2017 at 11:16 AM, Richard Gaskin via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Roger Eller wrote:
>
> > On Feb 21, 2017 9:28 PM, "Richard Gaskin via use-livecode" wrote:
> >
> >> It's always exciting to see new ground explored with inter-app
> >> communications, but with script editors I find myself wondering:
> >>
> >> Why not use LC's?
> >>
> >> If it's not on par with alternatives and for some reason can't be
> >> made to be on par, why don't we just ship LC with an appropriately-
> >> licensed editor, allow hooks like the ones discussed here for any
> >> other editor folks might want, and spend the development time we
> >> used to spend on LC's editor on other things?
> >
> > I'm not what you would call a power user, nor do I need an editor that
> > handles multiple languages and syntax coloring variations.  I like the
> > truly integrated LC editor just fine.  It is great to see users
> > providing options for those who need more than that.
>
> Options are good.  I'm wondering if perhaps we could embrace that more
> fully.
>
> The SE is a very expensive component to maintain.  If we could replace it
> with a third-party editor, and put a fraction of the time we used to spend
> maintaining and enhancing the SE into providing a mechanism to use any
> editor the user prefers, we'd have a better editor in the box and vast
> options for using other editors, and save development expense along the way.
>
> --
>  Richard Gaskin
>  Fourth World Systems
>  Software Design and Development for the Desktop, Mobile, and the Web
>  
>  ambassa...@fourthworld.comhttp://www.FourthWorld.com
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: on-rev "HTTP_UPGRADE_INSECURE_REQUESTS"

2017-02-22 Thread Phil Davis via use-livecode
I assumed the same as you but didn't look it up. Good idea about what to 
say - thanks Bob!


Phil


On 2/22/17 7:42 AM, Bob Sneidar via use-livecode wrote:

That actually sounds like a constant that determines if HTTP requests get 
bumped up to HTTPS. So I googled it and discovered that this is pretty much 
what it does. For a login request, you would expect that this should be 
enabled, otherwise you are sending passwords in the clear. You probably know 
all that, but never assume is the IT Tech's motto.

Just tell the client that someone at the server site was working with security 
certificates and be done with it.

Bob S



On Feb 21, 2017, at 18:30 , Phil Davis via use-livecode 
 wrote:

WHAT JUST HAPPENED?  The desktop app I mentioned earlier is now (around 6:15 PM 
Pacific time) suddenly no longer blowing up during login, and its normal speed 
has been restored. I suspect someone at Command Central changed a server 
setting... but I see my 'HTTP_UPGRADE_INSECURE_REQUESTS' is still turned on.

Whatever magical thing happened, I'm very grateful. But I sure would like to 
know what it was so I can tell my client.

Thanks -
Phil


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



--
Phil Davis


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread Richard Gaskin via use-livecode

Roger Eller wrote:

> On Feb 21, 2017 9:28 PM, "Richard Gaskin via use-livecode" wrote:
>
>> It's always exciting to see new ground explored with inter-app
>> communications, but with script editors I find myself wondering:
>>
>> Why not use LC's?
>>
>> If it's not on par with alternatives and for some reason can't be
>> made to be on par, why don't we just ship LC with an appropriately-
>> licensed editor, allow hooks like the ones discussed here for any
>> other editor folks might want, and spend the development time we
>> used to spend on LC's editor on other things?
>
> I'm not what you would call a power user, nor do I need an editor that
> handles multiple languages and syntax coloring variations.  I like the
> truly integrated LC editor just fine.  It is great to see users
> providing options for those who need more than that.

Options are good.  I'm wondering if perhaps we could embrace that more 
fully.


The SE is a very expensive component to maintain.  If we could replace 
it with a third-party editor, and put a fraction of the time we used to 
spend maintaining and enhancing the SE into providing a mechanism to use 
any editor the user prefers, we'd have a better editor in the box and 
vast options for using other editors, and save development expense along 
the way.


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Script Editor fixable? (was: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks)

2017-02-22 Thread Trevor DeVore via use-livecode
On Tue, Feb 21, 2017 at 8:27 PM, Richard Gaskin via use-livecode <
use-livecode@lists.runrev.com> wrote:

> It's always exciting to see new ground explored with inter-app
> communications, but with script editors I find myself wondering:
>
> Why not use LC's?
>
> If it's not on par with alternatives and for some reason can't be made to
> be on par, why don't we just ship LC with an appropriately-licensed editor,
> allow hooks like the ones discussed here for any other editor folks might
> want, and spend the development time we used to spend on LC's editor on
> other things?
>

Richard,

Like Roger I think both solutions are useful depending on user preference.
I would guess that a large number of LiveCode users are happy with the
current editor. Iterating on the one that ships with LC is probably in the
best interest for those users. Keeping everything within LC is definitely a
smoother new user experience.

Personally I don’t expect the LC team to create a script editor that meets
all of my needs. They don’t have enough resources to create an editor that
matches a product like Sublime Text. Sublime Text is an app dedicated
entirely to editing. There are thousands of people contributing tools to
Sublime Text. In addition to the general feature, there is the added bonus
that I can work on my company apps that are created using Ruby on Rails,
Ember, Salesforce, etc. For me using the same editor for all projects is a
big productivity boost.

-- 
Trevor DeVore
Outcome & ScreenSteps
www.outcomeapp.io - www.screensteps.com
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks

2017-02-22 Thread Trevor DeVore via use-livecode
On Wed, Feb 22, 2017 at 9:34 AM, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:

> If the debugger hilites errors in red, it's working!
>

Great. You will see the error message in the horizontal pane along the
bottom of the window. You can use CMD + CONTROL + A  to navigate to the
next error in the script.

-- 
Trevor DeVore
Outcome & ScreenSteps
www.outcomeapp.io - www.screensteps.com
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: on-rev "HTTP_UPGRADE_INSECURE_REQUESTS"

2017-02-22 Thread Bob Sneidar via use-livecode
That actually sounds like a constant that determines if HTTP requests get 
bumped up to HTTPS. So I googled it and discovered that this is pretty much 
what it does. For a login request, you would expect that this should be 
enabled, otherwise you are sending passwords in the clear. You probably know 
all that, but never assume is the IT Tech's motto. 

Just tell the client that someone at the server site was working with security 
certificates and be done with it. 

Bob S


> On Feb 21, 2017, at 18:30 , Phil Davis via use-livecode 
>  wrote:
> 
> WHAT JUST HAPPENED?  The desktop app I mentioned earlier is now (around 6:15 
> PM Pacific time) suddenly no longer blowing up during login, and its normal 
> speed has been restored. I suspect someone at Command Central changed a 
> server setting... but I see my 'HTTP_UPGRADE_INSECURE_REQUESTS' is still 
> turned on.
> 
> Whatever magical thing happened, I'm very grateful. But I sure would like to 
> know what it was so I can tell my client.
> 
> Thanks -
> Phil


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Configuring a Sublime Text project to notify LiveCode IDE about updates to script only stacks

2017-02-22 Thread Bob Sneidar via use-livecode
If the debugger hilites errors in red, it's working! 

Bob S


> On Feb 21, 2017, at 18:19 , Trevor DeVore via use-livecode 
>  wrote:
> 
>> Thanks Trevor. Just one more question. Do I copy JUST the executable, or
>> the whole folder including Drivers folder etc
> 
> 
> Just the executable.
> 
> -- 
> Trevor DeVore


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Null symbol cross platform

2017-02-22 Thread Richmond Mathewson via use-livecode

Frankly I would just take a look at the Unicode convention's guff:

U+2205 is a sort of "O" with a slanted line through it:

http://www.fileformat.info/info/unicode/char/2205/index.htm

http://www.unicode.org/charts/PDF/U2200.pdf

If you stare at this PDF long enough you might get a free trip without 
having to reach for the LSD!


This is NOT really the problem. What is the problem is whether the stuff 
"under the hood" in your operating system recognises U+2205 as the null 
set character or not.


I would suggest the "quickest route to heaven" is to ask Microsoft and 
Apple directly.


This would seem to suggest that Windows has not jettisoned all its 
pre-Unicode bumf: 
http://superuser.com/questions/61742/how-to-insert-a-null-character-ascii-00-in-notepad


While ASCII 00 may result in a null set character being inserted in some 
Windowsy code, it may not

be displayed as the "happy" slashed zero.

Richmond.




On 2/22/17 3:15 pm, David V Glasgow via use-livecode wrote:

Hello, folks.

I already posted this, but no response.  I have a bit more informations and new 
areas of confusion, so I thought I would try again.

I have a group displaying a number of single character fields which can be clicked 
on to populate other fields.  Essentially a pick list.  One of the options is the 
null set character ( the O with a line through it, U+2205).  I have tried to find a 
cross platform font that displays it on Mac & Win.  I got some apparently duff 
info that Trebuchet would do the trick,  It is OK on Mac, but appears as the 
mystery character box on Win standalone.

So I did some more digging, and it is listed among the characters displayed by 
unicode Arial MS.  So I set the fonts accordingly and again it works fine on 
Mac, but when I test a build on Windows, I get the mystery box.  This really 
surprised me.  I did wonder whether I might get the NUL symbol appearing as 
letters top left to bottom right (U+2400), but the no such character surprised 
me.

I have never attempted any unicode jiggery pokery - is that what I need to do, 
and if so, any guidance?

Best wishes,

David Glasgow
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Null symbol cross platform

2017-02-22 Thread David V Glasgow via use-livecode
Hello, folks.

I already posted this, but no response.  I have a bit more informations and new 
areas of confusion, so I thought I would try again.

I have a group displaying a number of single character fields which can be 
clicked on to populate other fields.  Essentially a pick list.  One of the 
options is the null set character ( the O with a line through it, U+2205).  I 
have tried to find a cross platform font that displays it on Mac & Win.  I got 
some apparently duff info that Trebuchet would do the trick,  It is OK on Mac, 
but appears as the mystery character box on Win standalone.  

So I did some more digging, and it is listed among the characters displayed by 
unicode Arial MS.  So I set the fonts accordingly and again it works fine on 
Mac, but when I test a build on Windows, I get the mystery box.  This really 
surprised me.  I did wonder whether I might get the NUL symbol appearing as 
letters top left to bottom right (U+2400), but the no such character surprised 
me.

I have never attempted any unicode jiggery pokery - is that what I need to do, 
and if so, any guidance?

Best wishes,

David Glasgow 
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [ANN] About the conference in Antwerp

2017-02-22 Thread Mark Schonewille via use-livecode

Hi,

Please note: today is the last possibility to register for the eHUG 
International Mini Conference on LiveCode in Antwerp, Belgium.


I have updated the website. Please go to
http://economy-x-talk.com/conf/

We're still looking for speakers. If you want to share your ideas or are 
looking for advice, this is your opportunity.


We're expecting people from the Netherlands, Germany, Belgium and 
Switzerland. Given the current location, Antwerp, this conference is an 
ideal opportunity to meet with other LiveCode programmers, if you're in 
the North of France. Please, consider participating.


The website uses PayPal to handle the registration fee. If this isn't a 
good option for you, contact me. Got any more questions? Just send me an 
e-mail.


Kind regards,

Mark Schonewille
http://economy-x-talk.com
https://www.facebook.com/marksch

Buy the most extensive book on the
LiveCode language:
http://livecodebeginner.economy-x-talk.com

Op 19-Feb-17 om 13:10 schreef Mark Schonewille:

Hello,

Next week is the 'eHUG International Mini Conference on LiveCode'. The
conference will take place on 25th February from 13:00h. until 18:00h.
The conference room is open from 12:00h. The location is the Ibis hotel,
Meistraat 39 in Antwerp, Belgium.

Participation is only possible if you purchase a ticket no later than
22nd February. The tickets will be sent to you later this week. There
are 20 tickets available. If you want to be sure of a ticket, you'll
need to act quickly.

The prices of the tickets are listed on the website. Additionally,
non-alcoholic beverages are available for 6 euro per person. Coffee and
tea are available from a dispenser (for which my apologies). If any
budget is left, it will be spent on additional drinks or perhaps on
dinner afterwards.

Everything we need is available: WIFI, a beamer with VGA connection,
electricity, at least one extra laptop, drinks, etc. If you have any
special requests, just let me know.

We need more speakers! You can tell something about your own project,
private or professional, for which you have created a liveCode stack. If
you use a different platform, such as SuperCard, Filemaker, HyperStudio
or Xojo, you're very welcome to tell us about it.

Do you think you're not so good at making presentations? Organise a
workshop instead! Just show us how you work with your favorite tool and
if you like, or if you can, invite your public to join.

Please indicate that you're a speaker when you buy a ticket. You will
receive a discount. A discount is also available if you buy the book
Programming LiveCode for the Real Beginner.

After the formal part of the conference, we may have dinner together.
The next day, we might have a social event before going home. We will
organise this on the spot.

I hope to have informed you sufficiently. Just send me an e-mail
right-away if you have any questions and I'll reply as soon as I can.

More information at http://economy-x-talk.com/conf



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Reveal in Find on Windows

2017-02-22 Thread Roger Eller via use-livecode
get shell (”explorer.exe /select,c:\windows\system32\selected_file.txt")

Source:
http://stackoverflow.com/questions/29970897/cmd-file-tasks-open-directory-and-select-file

~Roger

On Feb 21, 2017 10:43 PM, "Sannyasin Brahmanathaswami via use-livecode" <
use-livecode@lists.runrev.com> wrote:

for in house production tools I use an apples script or shell script to
reveal a file in the finder

how do we do this on windows?

BR

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode