Re: Download and Run Stacks - Can Do On Mobile?

2014-09-14 Thread Terence Heaford
I don’t have much interest in mobile development but I did download another app for my iPad that I believe works in the same way. It was called techBasic http://www.byteworks.us/Byte_Works/techBASIC.html I believe Apple are OK with this sort of thing as long as all the files (stacks) are cont

LC 7 vs LC 6.7

2014-09-14 Thread Terence Heaford
I did post a while ago regarding the scrolling speed in a DataGrid of LC 6.7 having improved and that is definitely the case. I thought I’d try the latest version 7 and noticed that the scrolling is far slower. I suspect that is because of the Unicode in 7? Are there plans afoot to generally i

Re: No WAV playback on Win in v6.6.2?

2014-09-14 Thread Dave Kilroy
Richard - happy to have provided nudge in the right direction but it sounds like you were in possession of the magic key all all along! - "Some are born coders, some achieve coding, and some have coding thrust upon them." - William Shakespeare & Hugh Senior -- View this message in context:

Re: LC 7 vs LC 6.7

2014-09-14 Thread Richmond
On 14/09/14 12:39, Terence Heaford wrote: I did post a while ago regarding the scrolling speed in a DataGrid of LC 6.7 having improved and that is definitely the case. I thought I’d try the latest version 7 and noticed that the scrolling is far slower. I suspect that is because of the Unicode

Re: LC 7 vs LC 6.7

2014-09-14 Thread Terence Heaford
Maybe it’s because a DataGrid is made up of fields and as the the scrollbar of a data grid is used the fields of the data grid are refreshed with the text contained within the properties of the data grid. Perhaps there is a better explanation as to why 7 is different than 6.7, that’s why I am a

Re: LC 7 vs LC 6.7

2014-09-14 Thread Richmond
On 14/09/14 14:19, Terence Heaford wrote: Maybe it’s because a DataGrid is made up of fields and as the the scrollbar of a data grid is used the fields of the data grid are refreshed with the text contained within the properties of the data grid. Perhaps there is a better explanation as to why

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread Dr. Hawkins
On Sat, Sep 13, 2014 at 8:26 PM, J. Landman Gay wrote: > on closeField > doStuff > end closeField > > And in some other handler somewhere: > > put "xyz" into fld 1 > doStuff > or even -- Dr. Richard E. Hawkins, Esq. (702) 508-8462 ___ use-liveco

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread Dr. Hawkins
Let'st try that again . . . On Sun, Sep 14, 2014 at 7:45 AM, Dr. Hawkins wrote: > > > On Sat, Sep 13, 2014 at 8:26 PM, J. Landman Gay > wrote: > >> on closeField >> doStuff >> end closeField >> >> And in some other handler somewhere: >> >> put "xyz" into fld 1 >> doStuff >> > > or even > Ore

Re: LC 7 vs LC 6.7

2014-09-14 Thread Terence Heaford
My method is quite simple in OSX. I have the time display in the menubar with seconds. I load the data grid with the same data approx. 2000 rows with 8 columns. I then wait for the seconds to reach zero. Then I scroll. and when the scroller gets to the end I note the seconds elapsed. And thi

Loading clips into a player

2014-09-14 Thread Beat Cornaz
How can I load an already imported audio- or video clip into a player. The Clip is already in the stack. I want to have the audio- and video clips residing in my stack, but through a popUp menu being able to load them into a player. set the filename of player "Player 1" to myClipName - this does

Re: Loading clips into a player

2014-09-14 Thread Richmond
On 14/09/14 21:11, Beat Cornaz wrote: How can I load an already imported audio- or video clip into a player. The Clip is already in the stack. I want to have the audio- and video clips residing in my stack, but through a popUp menu being able to load them into a player. set the filename of pla

Re: Download and Run Stacks - Can Do On Mobile?

2014-09-14 Thread Mike Kerner
For non app store apps, there's no reason why you can't do this. You can certainly make ample use of "do" statements in standlones on ios, too. I have been surprised at what I have been able to accomplish with do's in ios apps. It is a GREAT aid in debugging, for example. On Sun, Sep 14, 2014 a

RE: ios8

2014-09-14 Thread Ralph DiMola
I do an OTA update for my iOS app. After I put iOS 8 on my iPad 2 I seem to be having a caching problem. The OTA gets it's state by doing a: Put url (mydom.on-rev.com/folder/updatestatus.txt) into myVar The old data is getting loaded. I changed the filename in the app and got a 404. I copied th

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread Kay C Lan
On Sun, Sep 14, 2014 at 2:22 PM, Paul Hibbert wrote: > > Tested in LC 5.5.5 + 6.6.2 & 7.0(rc1) on Mac OS X 10.9.3 > > Cutting, or pasting within a field then tabbing out does trigger a closeField > message, but "Copy" doesn't, possibly because the field didn't change even > though the field sti

New XAMPP security concept

2014-09-14 Thread Alejandro Tejada
Hi All, Today, I installed LiveCode server in a XAMPP directory in Windows, following the clear instructions provided by Simon in this webpage: http://activethought.net/setting-liveco ... ver-xampp/ and the helpful reference of this LiveCode Guide: http://livecode.com/developers/guides/server/ Af

[linux] Unity Integration

2014-09-14 Thread Dennis Balagna
Is it possible in LiveCode to integrate a menu in the application titlebar and the Unity panel in Ubuntu like most programs do? Also how do I make the Unity panel show the name of my standalone instead of "LiveCode (version)"? The Unity launcher also shows the LiveCode icon for my standalone? Tha

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread Kay C Lan
On Sun, Sep 14, 2014 at 2:22 PM, Paul Hibbert wrote: > > Cut, copy, paste & clear are available as commands in LC, so maybe > simplifying your Edit menu a little may help, for example… > OK, now I see what you are saying, if you build your Menu Bar script using the basic Cut, Copy, Paste, and Cl

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread J. Landman Gay
On 9/14/2014, 9:41 PM, Kay C Lan wrote: Now use the Menu Builder to create an OS X Menu for you, tick the box to Set as stack Menu Bar, have it auto build the script for you, and then open if for Edit and fill it as you would for Copy, Paste, and Clear. It should look something like this: --The

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread Kay C Lan
Except Paul is right, on OS X the clear command in a custom built menu does not invoke a closeField message which it does if using the IDE's clear command. This does seem to be a bug. On Mon, Sep 15, 2014 at 12:15 PM, J. Landman Gay wrote: > On 9/14/2014, 9:41 PM, Kay C Lan wrote: >> >> Now use t

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread J. Landman Gay
On 9/14/2014, 11:19 PM, Kay C Lan wrote: Except Paul is right, on OS X the clear command in a custom built menu does not invoke a closeField message which it does if using the IDE's clear command. This does seem to be a bug. I never use "clear" so I had to look it up. Clear is a synonym of "de

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread J. Landman Gay
On 9/14/2014, 11:19 PM, Kay C Lan wrote: Except Paul is right, on OS X the clear command in a custom built menu does not invoke a closeField message which it does if using the IDE's clear command. Forgot to mention: the IDE uses the "delete" command in it's Clear menu item script, but only app

Re: Scripting Cut/Copy/Paste in custom menus

2014-09-14 Thread Paul Hibbert
And you are correct Kay, in checking the target against the clipboard, after a busy day photographing dolphins I came back and tried another test. My original suggestion was too simple in that if the clipboardData contained an image it would paste the image over the top of everything on the card

Re: Tab control background color

2014-09-14 Thread J. Landman Gay
On 9/13/2014, 1:15 PM, Peter Haworth wrote: It seems that if you set the background color of a tab control, it is somehow blended with the standard grey background (this is on OSX). Is there a way round this without having to design my own tab control? I'm not seeing any blending, but the fill

Re: New XAMPP security concept

2014-09-14 Thread Mark Wieder
Alejandro- Sunday, September 14, 2014, 8:38:13 PM, you wrote: > Now, all my livecode files execute correctly in the web browser, but I want > to know > if this modification opens a security risk in a Livecode server. > Thanks in advance! That looks pretty safe - the domain list is still all lo

AW: OS X codesigning best practise?

2014-09-14 Thread Tiemo Hollmann TB
Terminal: codesign -v Path/to/app > -Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag > von Matthias Rebbe | M-R-D > Gesendet: Sonntag, 14. September 2014 00:14 > An: How to use LiveCode > Betreff: Re: OS X codesigning best practise? >

AW: Is RGB on Mac something else as RGB on windows?

2014-09-14 Thread Tiemo Hollmann TB
Bill, I have no idea, but doesn't the unicode handling change come with 6.7? I am on LC 6.5.2 Tiemo > -Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag > von William Prothero > Gesendet: Freitag, 12. September 2014 23:42 > An: Use-live

Re: Tab control background color

2014-09-14 Thread Terence Heaford
OSX LiveCoders are still awaiting emulated/otherwise tabs that look like proper OSX Tabs. Selected tabs should have white text on dark grey NOT black text an dark grey. This has been reported but to date ignored? All the best Terry On 15 Sep 2014, at 06:05, J. Landman Gay wrote: > I'm no

Re: Tab control background color

2014-09-14 Thread Terence Heaford
bug report http://quality.runrev.com/show_bug.cgi?id=11912 All the best Terry On 15 Sep 2014, at 07:26, Terence Heaford wrote: > OSX LiveCoders are still awaiting emulated/otherwise tabs that look like > proper OSX Tabs. > > Selected tabs should have white text on dark grey NOT black text