Re: RELEASE LiveCode 6.7.1 RC3

2014-12-04 Thread Gerry
Ditto.

g


On Fri Dec 05 2014 at 5:31:47 AM Martin Koob  wrote:

> The new versions don't show up for me in the check for updates window in LC
> 6.7.
>
> Martin
>
>
>
>
> --
> View this message in context: http://runtime-revolution.
> 278305.n4.nabble.com/RELEASE-LiveCode-6-7-1-RC3-tp4686442p4686458.html
> Sent from the Revolution - User mailing list archive at Nabble.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: How to open a second window w/o disturbing calling stack.

2014-12-04 Thread William Prothero
Bob:
that makes good sense. Unfortunately, I’ve done a lot of work with V7 and so 
far it hasn’t let me down, especially after the last 3 releases of 7.0.1 have 
fixed a couple of problems I had. Fortunately, I had quite a bit of lead time 
for my application, but now I’ve got to get a beta out by next week. I think 
it’s going to be ok.
Best,
Bill

William A. Prothero
http://es.earthednet.org/

On Dec 4, 2014, at 9:13 AM, Bob Sneidar  wrote:

> Again, and no implied disrespect to the developers who I believe have been 
> doing a bang up job, I have not started using V7 for production work yet. I 
> keep a V6.7 stack file as my development file, and if I want to play around 
> in V7 I save as a different stack file. 
> 
> Bob S
> 
> 
>> On Dec 3, 2014, at 08:25 , Earthednet-wp  wrote:

___
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: Changes to LiveCode Linux Extensions

2014-12-04 Thread Richmond

On 04/12/14 21:14, Bob Warren wrote:

Hi Linux fans!

Some of you might remember that a few years back I provided a number 
of "LiveCode Extensions for Linux", in order to get around limitations 
existing in Rev/Linux at that time. I hope you found them useful. 
However, now that Rev are about to launch LiveCode 7, most of these 
limitations have disappeared, and in anticipation of this, I have 
updated the web page at howsoft.com accordingly:





"now that Rev are about to launch LiveCode 7"

Really?

Richmond.


___
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


Changes to LiveCode Linux Extensions

2014-12-04 Thread Bob Warren

Hi Linux fans!

Some of you might remember that a few years back I provided a number of 
"LiveCode Extensions for Linux", in order to get around limitations 
existing in Rev/Linux at that time. I hope you found them useful. 
However, now that Rev are about to launch LiveCode 7, most of these 
limitations have disappeared, and in anticipation of this, I have 
updated the web page at howsoft.com accordingly:


http://www.howsoft.com/runrev/extensions/

One remaining extension is the embedded WebKit "Web Browser", which 
Livecode/Linux achieves by firing Python scripts. The new demo of this 
extension corrects 2 limitations of the previous version:


1. When shelled from LiveCode, closing a Python browser window does not 
terminate the process. After firing various Python sripts one after the 
other (and leaving all the processes running), the previous version of 
this LiveCode extension provided a button to kill off all Python 
processes to get rid of them! Not very satisfactory! In the new demo, 
firing a new Python script kills off the previous process. Finally, 
closing the LiveCode window kills off the remaining Python process. 
Other Python processes running outside the LiveCode shell are not touched.


2. For some reason, the Python browser windows were not always being 
positioned as specified by script in the previous version. Since I am no 
Python programmer, it took me a while to discover the reason for this. 
Apparently, although you can specify the SIZE of the Python window (in 
the script) BEFORE displaying it, you can only specify the LOCATION of 
the Python window AFTER you have displayed it! The example scripts of 
the demo have therefore been updated to take this into account.


I read somewhere that the new LiveCode WebKit browser for Linux is 
"Coming Soon" after the Windows and Mac versions. I hope that this 
improved Python solution tides you over in the m..e..a..n..t..i..m..e!


Regards to all,

Bob Warren


___
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: RELEASE LiveCode 6.7.1 RC3

2014-12-04 Thread Martin Koob
The new versions don't show up for me in the check for updates window in LC
6.7.

Martin




--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/RELEASE-LiveCode-6-7-1-RC3-tp4686442p4686458.html
Sent from the Revolution - User mailing list archive at Nabble.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: Delete and object from script within the object?

2014-12-04 Thread Bob Sneidar
Right. You cannot delete an object that has a running handler.

Bob S


On Dec 3, 2014, at 14:10 , Björnke von Gierke 
mailto:b...@mac.com>> wrote:

send "deleteTheImage" && myImage to this stack in 0 seconds

On 03 Dec 2014, at 22:57, William Prothero 
mailto:proth...@earthednet.org>> wrote:

Folks:
I’m trying to delete an image from a script within that image  LC doesn’t like 
that because the script in the object hasn’t finished yet.

—the image script is:
on mouseUp
 put the name of me into myImage
 deleteTheImage myImage"
end mouseUp

—In the stack script
on deleteTheImage imageName
  delete image imageName
end deleteTheImage

The command failed because the “end mouseUp” has not executed and LC won’t 
delete the object where a script is running.

How should I approach this? Is there a command to dispatch a message after a 
short delay? I know there must be, I just can’t find it.

Regards,
Bill

___
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: How to open a second window w/o disturbing calling stack.

2014-12-04 Thread Bob Sneidar
Again, and no implied disrespect to the developers who I believe have been 
doing a bang up job, I have not started using V7 for production work yet. I 
keep a V6.7 stack file as my development file, and if I want to play around in 
V7 I save as a different stack file. 

Bob S


> On Dec 3, 2014, at 08:25 , Earthednet-wp  wrote:
> 
> Graham,
> Thanks for checking this. I'm working in lcv7.0, on Mavericks. I'll retest. 
> Sometimes LC needs to be restarted to get things working right. 
> Unfortunately, V7.0.1 ( rc2) crashes on one of my operations, so I'm using 
> v7.0, which crashes on quit. Oh well, hope it gets fixed next release. 
> Best,
> Bill
> William Prothero
> http://es.earthednet.org
> 
>> On Dec 3, 2014, at 3:00 AM, Graham Samuel  wrote:
>> 
>> According to the LC Dictionary, ‘go’ should have done what you want.
>> 
>>> When going to a previously-unopened stack, if you don't specify a card, the 
>>> go command displays the first card of the stack. If the stack is already 
>>> open, the current card of the stack appears and the stack window is brought 
>>> to the front.
>> 
>> I just reproduced your described setup exactly - I hope (on a Mac with 
>> Yosemite using LC7rc2) and it worked perfectly.
>> 
>> So, either the version of LC you're using (you don't say which one it is) 
>> has let you down (i.e. is buggy), or something else is going on.
>> 
>> I'll send you my tiny experimental stack off-list if it would help.
>> 
>> Cheers
>> 
>> Graham
>> 
>> 
>>> On 3 Dec 2014, at 04:01, William Prothero  wrote:
>>> 
>>> Folks:
>>> I want to open a second window in my app. The window in the calling stack 
>>> is the first card of a substack named “myCallingSubstack”.  I want to go to 
>>> the first card of a substack named “mySubstack”. When I do
>>> 
>>> go to stack “mySubstack”, the new windows sits behind the calling 
>>> “myCallingSubstack”, but “myCallingSubstack” also reverts to the last card 
>>> showing in the main stack. 
>>> 
>>> I want the stack “mySubstack” to appear in front in a normal window, and I 
>>> want the “myCallingSubstack” to stay as it is.
>>> 
>>> What’s the best way to do this? Docs and lessons don’t seem to address this.
>>> 
>>> Regards,
>>> Bill
>>> 
>>> William A. Prothero
>>> http://es.earthednet.org/
>>> 
>>> ___
>>> 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

___
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: Can you please enlighten me on the LiveCode versions?

2014-12-04 Thread Graham Samuel
The short answer is yes, at least for Mac Yosemite and Windows 7, since that's 
what I was doing yesterday, and my standalones were working very well. There 
may be an issue with earlier versions of OS X, specifically Lion - RunRev are 
investigating this possibility as I write. Of course your mileage may vary: I  
don't use every part of LC's functionality (who could?) but I do have a small 
amount of Unicode-aware scripting, which is why I migrated to LC7 in the first 
place.

HTH

Graham

Sent from my iPad

> On 18 Oct 2014, at 18:53, Earthednet-wp  wrote:
> 
> Is it possible to build a standalone in LC 7 rc3 at this time? Unfortunately, 
> I have been working in 7 for awhile and want to have a standalone in January.
> Bill
> 
> William Prothero
> http://es.earthednet.org
> 
>> On Oct 18, 2014, at 12:12 AM, Kay C Lan  wrote:
>> 
>> On Fri, Oct 17, 2014 at 1:17 AM, Richard Gaskin 
>> wrote:
>> 
>>> 
>>> But if you need stability, the most recent public release build is the
>>> best bet, as those are the versions the community has tested and can no
>>> longer find show-stoppers for.
>>> 
>>> An excellent overview, thank you. I think the only thing worth adding is
>> due to Unicode 7.0 and above are a different file format therefore you need
>> to be careful you don't accidentally open the sole copy of your soon to be
>> released killer app in 7.x.
>> 
>> You can do all your work in 6.x.y, make a copy, open it in 7.x and see how
>> it behaves.
>> 
>> You can't open in 7.x, do modifications, Save, Quit and then open that
>> stack using 6.x.y
>> 
>> Any modifications done in a 7.x copy would need to be manually transferred
>> back into a 6.x.y stack.
>> ___
>> 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