Small and strange problem

2020-05-11 Thread AndyP via use-livecode
I seem to have my posts dropped at the moment hence this,

I'm seeing the same error

with 

on mouseUp pMouseButton
  put (tMins/60) into tMins
  answer tMins
end mouseUp

button "Button": execution error at line 2 (Operators /: error in left 
operand), char 1

Interestingly this

on mouseUp pMouseButton
  try
put (tMins/60) into tMins
  catch tError
if tError then answer "An Error Occurred;"  && tError & return & "tMins =" 
&& tMins
  end try
end mouseUp

does NOT through an error or a catch error message


If however tMins is initialized then all works as expected

on mouseUp pMouseButton
  put 20 into tMins
  put (tMins/60) into tMins
  answer tMins
end mouseUp

???


_
Sent from http://runtime-revolution.278305.n4.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: HyperCard

2019-07-23 Thread AndyP via use-livecode
BBC article about HyperCard, history and lack of successor, omitting any
mention of Livecode! 

This is the Twitter link for the article. Add a retweet, comment, let's help
get Livecode noticed.


https://twitter.com/BBC_Future/status/1153726503059746822?s=09
  



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Is there a way to use custom icons in the navbar widget?

2019-06-16 Thread AndyP via use-livecode
There was talk at one point of being able to link to github repositories
directly from within LiveCode share. I think this was from last years online
conference? This would be a great way to share code snippets ect but I have
not seen any reference to this since. 



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: IDE 9.0.4 and 9.0.5rc1 getting slow again on win10?

2019-05-23 Thread AndyP via use-livecode
Using LC 9.5.0 DP1  64bit Windows on Windows 10 64bit

The only slowdowns I've seen are when the message box is opened with a /put/
then each time this is done LC turns to treacle.

However apart from this release is performance wise much much better than
previous releases.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Script Editor Refactoring Support

2019-03-21 Thread AndyP via use-livecode
This is outstanding..what a contribution to the community.

Found  one problem though..

 

No close/dismiss button.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Localisation - Internationalization Package

2019-03-20 Thread AndyP via use-livecode
No t quite fitting what you want but, I found this a couple of days ago on
Product hunt and thought you may find it of interest.

https://traduora.com/   

https://github.com/traduora/traduora   



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: password protected stack and passkey

2019-03-20 Thread AndyP via use-livecode
The password function protects the script of your stack files so that they
are scrambled when viewed in a text editor or if they are opened in in the
LC IDE a password is required before you are able to view or edit the stack
files.

I just tried using the Standalone Application Settings option of "Encrypt
with password" and in Indy 9.0.2 this only works if you the option to "Move
substacks into individual stack files" is ticked.

A fail-safe way is  using the code below adjusted for your stack name and
password, in the message box to protect your stacks.

set the password of stack "myStack" to "myPassword"

and save

if you need to remove the password you can use

set the password of stack "myStack" to empty

and save








-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: [off]sublimeText update

2019-03-16 Thread AndyP via use-livecode


> But I agree that Navigator having a crap-ton of script-only behaviors is
> cumbersome in the IDE if you're showing IDE stacks.

At the moment we can hide plugins but only by prefixing the stack name with
rev. It would be great if we could have another prefix for plugins so that
they do not get shown in the project browser as standard.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: scriptEditor windows

2019-03-06 Thread AndyP via use-livecode


> You have made me feel both stupid and happy simultaneously.

Sounds like my usual state of being!



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: scriptEditor windows

2019-03-06 Thread AndyP via use-livecode
Like this?


 



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: SVG icons in buttons

2019-02-26 Thread AndyP via use-livecode
SVGs can also now be Imported As Control > Image svg is now included as an
image file type.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Livecode or Windows (10) issue?

2019-02-26 Thread AndyP via use-livecode
What Control key combination are you using? So that we can test.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Collaborate on UI Handlers

2019-02-14 Thread AndyP via use-livecode
Hi Brahmanathaswami,

LiveCode said a while back that they were looking at a snippets system..but
this seems to have passed on by.

And I started building a snippets system for my own..but then thought
instead of the time needed to maintain this, I thought why not just put them
on public GitHub gists? and then just have a simple search system.


So I started adding snippets and handlers here a while ago:

https://gist.github.com/AndyPiddock   

The simple gist search that I built sort of grew into a more unified search
system for LiveCode related subjects.

http://livecodeshare.runrev.com/stack/897/LiveCode-Multi-Search
  
Best used as a compiled standalone.

One of the strengths of using GitHub gists to store snippets and handlers is
that if they are in a public repository they become searchable, which means
that we do not have to maintain a central LiveCode snippets handlers
library. Each GitHub user can host their own code samples and these become
available to all as long as they are tagged as Livecode.








-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: windows defender issues? & other AV issues?

2019-01-08 Thread AndyP via use-livecode
This 'thrashing about' of messages may also explain why the situation (speed)
is impacted when the project browser and message  box are open?



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: glo webhooks

2018-12-03 Thread AndyP via use-livecode
Glo boards and GitKracken are great pieces of software, Ive been using both
for a while now and find them both very intuitive  and easy to use, I
especially like the Globoards intigration with GitHub issues.

I somehow managed to miss the webhooks announcement, exciting!...lets see
what we can come up with.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: use password protected scripts on LC web server

2018-11-18 Thread AndyP via use-livecode
You can also put your LC scripts outside the public web root, then include
them in a calling LC script for extra security. 



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: [off]Hactoberfest

2018-10-20 Thread AndyP via use-livecode
Yes, the docs are a great introduction way in for contributing to LiveCode
and for using GitHub.
I've learned a lot from the experience so far with some gentle but
instructive nudges from Panos.

Also for the bug fix note, you can also create one directly in GitHub, using
the 'Create new file' button. Just make sure that you are in the *correct
branch* on your *own fork of LiveCode*.






-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: [off]Hactoberfest

2018-10-19 Thread AndyP via use-livecode
I was just about to add notes on adding the bugfix note from my experience as
a first time contributor, and then what! you've already made a video about
this.

Excellent.

It would be great if these videos could be linked in the contributors docs.

Just for your info .. it was as a direct result of seeing your first video
that I got involved in this 



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: [off]Hactoberfest

2018-10-16 Thread AndyP via use-livecode
Hi Trevor, Excellent clear tutorial, thanks for this.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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 Slow on Windows (any Macs?)

2018-09-26 Thread AndyP via use-livecode
As something to test. I've noticed that the script editor problems worsen
when either the project browser or message box have been opened, the longer
these are open the more the script editor ... in all of LC 9 series gets.

If I do not have the project browser open or use the message box then the
degradation in speed does not in my case materialize so quickly.

I have seen the same slowdown effect on a 64b Intel i5 4440 @ 3.10GHz with
8GB and a newish I7 620 2.66GHz 64b laptop with 16GB ram installed.

I have no plugins activated, in fact, I tried with the plugins folder
emptied.

It would appear that ide messages are hanging somewhere along line?



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Mobile write to text file woes

2018-09-22 Thread AndyP via use-livecode
Jacqueline, love the prose, put a smile on my face before bed.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Mobile write to text file woes

2018-09-22 Thread AndyP via use-livecode
Hi Hugh,

Have a look at this lesson
I'm sure it will help
If the location is right
then the file you can write

http://lessons.livecode.com/m/4069/l/14301-how-do-i-read-write-to-files-on-mobile

  



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Windows 10 and Me.

2018-09-16 Thread AndyP via use-livecode
Should be in 

C:\Users\USERNAME\AppData\Roaming\RunRev\Preferences



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Windows 10 and Me.

2018-09-16 Thread AndyP via use-livecode
Did you remove all the preference file first before trying to install the
other versions?

The original install by the boy may have resulted in a corrupted preferences
file?



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: For those who do not know lcTasklist

2018-08-21 Thread AndyP via use-livecode
Also just purchased lcTaskList ... why did I wait sooo long!

Extra useful and saves sifting through code notes.

Clicking on an item in lcTaskList takes you straight to the line in the
script with the corresponding tag .. even opens the script editor if
necessary.

Highly recommended.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: fullscreenmode and rect of a substack on mobile device ?

2018-08-18 Thread AndyP via use-livecode
you could try using either the working or effective adjectives before the
screenRect

working ScreenRect

effective screenRect

to see if you get better results?

from the dictionary

/Adding the working adjective to either form returns the virtual
co-ordinates of each screen's working-area. The working-area of a screen is
defined to be the area not covered by OS furniture (such as the task bar on
Windows, and the Dock and Menubar on Mac OS X).

Adding the effective adjective to either form returns the area of the screen
the application has to itself. In particular, if the keyboard is activated,
it take into account if the keyboard is taking up space on the screen.
(Android and iOS only)

Note: The co-ordinates returned by the screenRect family of functions can be
anywhere in the virtual desktop /





-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Preview HTML of a field

2018-08-15 Thread AndyP via use-livecode
Add a browser widget and then 

set the htmlText of widget "Browser" to field "myField"



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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] Release 9.0.1 RC-1

2018-07-13 Thread AndyP via use-livecode
Big thank you to the team for this.

LiveCode on Windows is now usable! No lag when the message box and the
Project Browser are is use.

Just tried /set the acceleratedRendering of this stack to "true"/ in an
Android project and no black screen and the quit command works as expected.

Great work!!!




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: LiveCode Builder linter support for Sublime Text

2018-05-28 Thread AndyP via use-livecode
Thanks Trevor,
Excellent timing, I've just started my Adventure with lcb and this helps
tremendously. 



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Windows 10 and LC9.0

2018-05-26 Thread AndyP via use-livecode
Windows and V9 is more problematic than the 8 series.

Unfortunately before any of the problems previously mentioned are looked at,
the message queuing and subsequent slow down, juttering and eventual
crashing of the ide when either the script editor, project browser or
message box are in extended use need to be fixed.

The good news is that in the last online conference Mark said that he knew
what the problem is so this hopefully will be fixed in the next release. 
Kevin and Mark also indicated that more time would be given to testing on
Windows so hopefully us windows users will start to see more parity with
Mac.

It must be hard for the LiveCode team to balance the needs and wants of us
the users when so many platforms are targeted. If for example you are using
LC on Mac which I have used in the past and was a pleasure to behold.. it
just works! then you will be more interested in the next new feature where
for us windows users we just want to be able to work without having to have
the Task Manager open all the time to clear out any residuals from the last
LC crash!

I do however feel very positive with the general direction LC is going, and
I am sure that the team will continue to chip away at the bugs and usability
issues.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Was: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-26 Thread AndyP via use-livecode
Hello Sean,

You've had a tough journey, that's for sure, its good to see that you are
now thinking about the future and how to move forward.

Wishing you well in whatever direction you decide to go.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Removing a stack from memory...

2018-05-15 Thread AndyP via use-livecode
This is my go-to routine for quitting applications which seems always to get
the job done.

//General quit routine

on quitMyProject
   lock messages
   -- stop using stacks
   put the stacksInUse into myStacks
   repeat for each line myStack in myStacks
  stop using stack myStack
   end repeat
   -- stacks
   put the openStacks into myStacks
   put "message box,home,tool,Message Box,revTools,revMenubar" & comma & the
short name of me into myDontClose
   repeat for each line myStack in myStacks
  if myStack is not among the items of myDontClose then close stack
myStack
   end repeat
   -- messages
   put the pendingmessages into myMsgs
   repeat for each line myMsg in myMsgs
  cancel item 1 of myMsg
   end repeat
   set the backdrop to none
   close me
   if the environment is not "development" then
  quit
   end if
end quitMyProject



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: LC on Windows - slow for others or just me?

2018-05-03 Thread AndyP via use-livecode
Must agree that 9 series is slower on Windows 10 than previous versions.

Win 10 pro 64 bit

Observations

1. Instances of Livecode do not always shut down correctly and have to be
closed via the Task Manager.Failure to notice this can cause IDE hangs,
crashes and corrupted scripts when saving.

2. Having the message box open slows the IDE and closing the message box
does not revert Livecode to its previous speed.

3. Having the  Project Browser open slows the IDE and closing the Project
Browser  does not revert Livecode to its previous speed.

4. The Project Browser does not keep in sync with all changes made to
stacks. For example when grouping components the Project  Browser will not
always show the new group but still display the components as separate
entities. Closing and restarting the Project Browser will show the groping
change.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread AndyP via use-livecode
Hello Sean,

I don't know you personally but I hope you take on board my sincere personal
message to you.

It sounds like you are in a very bad place at the moment. Please do not do
anything rash, try to get some sleep and let your emotions settle. Then talk
to your wife or if that's to difficult at the moment someone you trust, it
won't be an easy conversation but you need to discuss the way you feel and
try and find a path forward.


Andy Piddock




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: LiveCode Widget Factory

2018-02-22 Thread AndyP via use-livecode
Maybe a bit off the wall, but, how about some non visual Android widgets.

Eg a widget for accessing Google Ad-mob which has a status of visible in the
ide but hidden in the compiled version. The properties are for your keys
etc.

Again for Google LeaderBoards etc.

As for visual.. look here https://framework7.io/

On the RHS is a running demo of all of the components which can be live
switched between Material and iOS ... should give you enough ideas :-)

Looking forward to your creations.

Andy






-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Roadmap: "Automated REST API wrapping"?

2018-01-17 Thread AndyP via use-livecode
I believe from my take on the discussion at the LCG, that the api wrapping
will be for specific common and widely used api's., so automatic wrapping my
be  little misleading .



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Dropbox help

2018-01-16 Thread AndyP via use-livecode
Does this help?

https://blogs.dropbox.com/developers/2014/05/generate-an-access-token-for-your-own-account/

  



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Visibility problem

2018-01-06 Thread AndyP via use-livecode
Don't you need to go to the stack after setting the visibility?

go stack



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Optimizing for small Android devices

2017-12-28 Thread AndyP via use-livecode
Also are you making sure the destroyStack to true. 
This should be automatically done but there is no harm in forcing it.

set the destroyStack of this stack to true

It might also be useful to monitor these events in the browser widget
and set a timer between the browserDocumentLoadBegin and
browserDocumentLoadComplete to see if there is a bottle neck?

browserDocumentLoadBegin pUrl
browserDocumentLoadComplete pUrl
browserDocumentLoadFailed pUrl, pError



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Optimizing for small Android devices

2017-12-28 Thread AndyP via use-livecode
I don't think its such an issue targeting the latest Android versions as
Google's new developer rules as August 2018 will require that apps will be
targeted at the last latest build.

http://developers.googleblog.com/2017/12/improving-app-security-and-performance.html

  





-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Optimizing for small Android devices

2017-12-27 Thread AndyP via use-livecode
Do you compress your png images?

If not give this a try. 

https://tinypng.com   



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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] SivaSiva App on Google Play

2017-12-26 Thread AndyP via use-livecode
I used DU Recorder. I've tried a LOT of screen recorders and this is the best
by a long way.

Its totally free, no ads, no in app purchases ... a real gem!

DU Recorder at Google Play Store
  




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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] SivaSiva App on Google Play

2017-12-26 Thread AndyP via use-livecode
Also forgot to mention that there is a character encoding problem at the 3
Min mark.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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] SivaSiva App on Google Play

2017-12-26 Thread AndyP via use-livecode
Congratulations a very nice app.

I've done a quick review that you might be useful.

*Phone *
Nokia 6 
Android version 7.1.2
Internal Memory 32GB Free 22.6GB
SD Card 64GB
Data connection via WIFI

Instead of doing a full step by step usage review I thought having a screen
recording of Installation and Usage might be more useful for you as you can
see the speed of operation in real time followed by a short observational.

*Screen recording here*

http://2108.on-rev.com/nextcloud/index.php/s/HygyiLnMTraoZiQ
  

*Observasions*

Installation was smooth with no problems.

Liked the general layout and the use of background images.

Navigation was logical although I did find myself having to remember where I
was in the app as it is so expansive.

Liked the rounded text content boxes and scrolling of the text was good and
responsive. Noticed that the AppNews differed in this layout scheme?

The search function worked though I wasnt sure what to search for.. thats
just my ignorance of the subject.

*Problems encountered*

In the Songs section about 6:00 in the video the app seemed to hang and I
received a Not Responding message, chose to respond with Wait and all then
continued to work OK.

I had problems dismissing the Share bar at about 10:40 in the video.

Some of the text was a little slow to load but not overly so.

Hope you find this useful, again a very nice app, well done to all involved.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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] Release 9.0.0 DP-11

2017-12-22 Thread AndyP via use-livecode
Fantastic release  .. what a great Christmas prezzy!

Looking forward to trying out all the new features.

All the elves at the LiveCode Santa cabin must have worked really hard to
get this out to us before the holidays so a BIG thank you to all the team
for all their efforts over the past year.





-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Screen Resolution for Desktop Apps

2017-12-16 Thread AndyP via use-livecode
Have a look at these stats.

http://gs.statcounter.com/screen-resolution-stats/desktop/worldwide
  

These are for Nov 2016 to Nov 2017.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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 problem

2017-12-12 Thread AndyP via use-livecode
For future problems like this I've just updated CollectMyStacks to include
stack reduction.

http://livecodeshare.runrev.com/stack/855/CollectMyStacks
  

Hope you find it useful.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: [OT] Alternative to Inkscape

2017-10-04 Thread AndyP via use-livecode
Also for svg  https://gravit.io/   



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Constraining an input field's contents to be a single line.

2017-09-21 Thread AndyP via use-livecode
Add this to the field script

on returninField
   exit returninField
end returninField



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Constraining an input field's contents to be a single line.

2017-09-21 Thread AndyP via use-livecode
Easiest way... add this to the field

on returninField
   exit returninField
end returninField





-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Dash "Make DocSet" stack version 1.6. and non-Mac Dash readers

2017-09-19 Thread AndyP via use-livecode
See this thread for an install guide in Zeal for Windows

http://forums.livecode.com/viewtopic.php?f=16=29745
  



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: IconGrid widget v2.0.2

2017-09-13 Thread AndyP via use-livecode
Fantastic share...thank you.





-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Subject: Re: LC and OneSignal

2017-09-01 Thread AndyP via use-livecode
Enhancement Requests added to the Quality Center for Sample Stacks

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

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



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Subject: Re: LC and OneSignal

2017-09-01 Thread AndyP via use-livecode
Sounds great Todd, looking forward to seeing the release.

Re sharing stacks/code.

The LiveCode IDE has Sample Stacks available from Help>Sample Stacks this is
also available in a more limited way from the LiveCode website
http://livecodeshare.runrev.com/ found via https://livecode.com/resources/
and then Sample Stacks.

There is via the IDE version the option to add stacks and code snippets. The
latter is very under utilized.

The whole User Samples or is it LiveCode Share needs an overhaul. For
example in the code snippets the code is not displayed but has to be
downloaded to be viewed. 

The User Samples is a great resource (if you know how to find it) but is
needing some TLC.

The question of where sample stacks and code snippets comes up every now and
again with various promoted solutions, but why not use the facility we have.
I am just about to add some enhancement requests to the quality center on
this subject and I will add the numbers here when completed.





-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: "Cascading" Object-Behaviors

2017-08-01 Thread AndyP via use-livecode
Monte, great tool. thanks...saves a lot of time.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Cascading-Object-Behaviors-tp4717715p4717809.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: Mark in a kilt...

2017-07-31 Thread AndyP via use-livecode
What a great way to announce that LiveCode (and Scotland) have arrived. Super
publicity move.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Mark-in-a-kilt-tp4717794p4717801.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: Copy protection WAS Re: Hard Drives

2017-07-29 Thread AndyP via use-livecode
For Windows solution

on mouseUp

put $systemdrive into tSysDrive

//string for the shell command

put "vol " & tSySDrive into tDriveInfo

//the last word of the returned info is the ACTIVE  SYSTEM HD Serial

set the hideConsoleWindows to true

put the last word of shell(tDriveInfo) into tHDSerial

answer "HD Serial is  " && tHDSerial with "OK"

end mouseUp

This can be found at  http://2108.co.uk/snippets/
  




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Hard-Drives-tp4717633p4717637.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: Importing Unicode from MySQL

2017-07-26 Thread AndyP via use-livecode
I had the same problems a while ago, but got it sorted with the following.

*Before* you do any interactions with the db, add this line.

*revExecuteSQL MyConnectionID, "SET NAMES 'utf8'"*

 "SET NAMES 'utf8'" is needed whenever you want to send/retrieve data
to/from the server having characters that cannot be represented in pure
ASCII, like 'ñ' or 'ö'.

Then retrieve the data

*put textDecode("SELECT * FROM MyTable","UTF-8")  into fld "MyField"*








-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Importing-Unicode-from-MySQL-tp4717480p4717487.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: Docs for IDE hooks

2017-06-25 Thread AndyP via use-livecode
Thanks, Mark.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Docs-for-IDE-hooks-tp4716139p4716181.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: Docs for IDE hooks

2017-06-24 Thread AndyP via use-livecode
Hi Richard, 
Thanks for pointing this out. 
Do you know if there is an updated full list of messages one can subscribe
to?
I've looked in the dictionary and searching for subscribe and publish does
not bring up any info?



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Docs-for-IDE-hooks-tp4716139p4716143.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: ANN: Widget Wizard

2017-06-14 Thread AndyP via use-livecode
Hi Mark,

Fantastic, nice idea, thanks for sharing.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/ANN-Widget-Wizard-tp4715780p4715814.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: Help me test Levure

2017-06-12 Thread AndyP via use-livecode
Hi Trevor,

All installed and working as documented..excellent work.

Windows 10 , LC 8.4



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Help-me-test-Levure-tp4715700p4715725.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: Ben Beaumont jumps ship.

2017-06-07 Thread AndyP via use-livecode
Thanks Panos for the link.

I'll look a bit harder before putting both feet in!



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Ben-Beaumont-jumps-ship-tp4715530p4715554.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: Ben Beaumont jumps ship.

2017-06-07 Thread AndyP via use-livecode
Re
"All the staff changes were discussed in the last blog post. It isn't a 
secret. Staff move on and are replaced. "

Where is this blog post?.just gone to the blog page and cannot see any
references to staff changes.

I did not mean to be alarmist or provocative but when two highly regarded
team members move on in the same month it does raise concerns.

Anyway looking forward to news on the new team members.






-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Ben-Beaumont-jumps-ship-tp4715530p4715548.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: Ben Beaumont jumps ship.

2017-06-07 Thread AndyP via use-livecode
Worrying in view that Dr Peter Brett recently left as well.

His twitter post here>
https://twitter.com/PeterTBBrett/status/849958594745438208
  








-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Ben-Beaumont-jumps-ship-tp4715530p4715537.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: vertical text?

2017-04-12 Thread AndyP via use-livecode
Try This:

Add a field named "Input"

Add this script to the field

on returnInField
  send "mouseUp" to button "Format"
end returnInField

Add a button named "Format"

Add this script to the button

local tWidth
local tHeight
local tChars
local tCount
local tTemp

on mouseUp
   
   put the formattedWidth of char 1 of fld "Input" into tWidth 
   put the formattedHeight of char 1 of fld "Input" into tHeight 
   put the number of chars of fld "Input" into tChars
   set the Width of fld "Input" to tWidth*2
   
   put fld "Input" into tTemp
   put empty into fld "Input"
   repeat with tCount = 1 to tChars
  put char tCount of tTemp into char 1 of line tCount of fld "Input"
   end repeat
   filter fld "Input" without empty
   set the height of fld "Input" to the formattedHeight of fld "Input"
   set the leftMargin of fld "Input" to 2
   set the rightMargin of fld "Input" to 2
   set the topMargin of fld "Input" to 4
   set the bottomMargin of fld "Input" to 4
   set the textAlign of fld "Input" to center
   set the textHeight of fld "Input" to the textSize
   
end mouseUp

Now enter text into the field, when you hit return the field is resized to
fit the now vertical text.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/vertical-text-tp4713887p4713904.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: Anyone doing a LiveCode Community Chat Bot? Wondering

2017-03-02 Thread AndyP via use-livecode
Have a look here

http://newsletters.livecode.com/july/issue152/newsletter2.php
  



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Anyone-doing-a-LiveCode-Community-Chat-Bot-Wondering-tp4712750p4712773.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: [ANN] Release 9.0.0 DP-5

2017-02-24 Thread AndyP via use-livecode
Apart from all the other changes, Its great to see Android getting some
updates and attention.

A big well done to the team!



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/ANN-Release-9-0-0-DP-5-tp4712530p4712571.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: [OT] DevDocs.io doesn't have "LiveCode"

2017-02-07 Thread AndyP via use-livecode
Thanks for the pointer to  https://devdocs.io/   

I haven't come across this before...great resource



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/OT-DevDocs-io-doesn-t-have-LiveCode-tp4712281p4712286.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: Drag List Items Up and Down

2017-02-04 Thread AndyP via use-livecode
Nice addition .. thanks.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Drag-List-Items-Up-and-Down-tp4712158p4712198.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: github clients

2017-02-04 Thread AndyP via use-livecode
A good write up of GitHub Desktop comparison to SourceTree.

With alternatives at the bottom of the page.

https://www.slant.co/versus/13488/7569/~github-desktop_vs_sourcetree
  



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/github-clients-tp4712195p4712197.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: Drag List Items Up and Down

2017-02-02 Thread AndyP via use-livecode
Modified script
added   

/if within (field "myField", the mouseLoc) is true then /

on mouseDown 
   
   put word 2 of the clickLine into tcl 
   set the textcolor of line tcl of me to "red" 
   if line tcl of me is empty then 
  exit mousedown 
   end if 
   put item 2 of the mouseLoc into tstarty 
   put the effective textHeight of me into th 
   repeat while the mouse is down
  if item 2 of the mouseLoc - tstarty > (th/2) then 
 if within (field "myField", the mouseLoc) is true then 
lock screen 
put cr & line tcl of me after line tcl + 1 of me 
delete line tcl of me 
add 1 to tcl 
set the textcolor of line tcl of me to "red" 
add th to tstarty 
unlock screen 
 end if
  else if tstarty - item 2 of the mouseLoc > (th/2) then 
 if within (field "myField", the mouseLoc) is true then 
lock screen 
put line tcl of me & cr before line tcl - 1 of me 
delete line tcl + 1 of me 
subtract 1 from tcl 
set the textcolor of line tcl of me to "red" 
subtract th from tstarty 
unlock screen 
 end if
  end if 
 end repeat 
   set the textcolor of line tcl of me to "black" 
   set the hilitedLine of me to tcl 
   
end mouseDown



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Drag-List-Items-Up-and-Down-tp4712158p4712166.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: Drag List Items Up and Down

2017-02-02 Thread AndyP via use-livecode
Try this

Create a scrolling field

Add a few lines

In the field properties *check the Lock text* /it will not work without
this/


Add this to the field

on mouseDown
   put word 2 of the clickLine into tcl 
   set the textcolor of line tcl of me to "red"
   if line tcl of me is empty then
  exit mousedown
   end if 
   put item 2 of the mouseLoc into tstarty 
   put the effective textHeight of me into th 
   repeat while the mouse is down 
  if item 2 of the mouseLoc - tstarty > (th/2) then 
 lock screen 
 put cr & line tcl of me after line tcl + 1 of me 
 delete line tcl of me 
 add 1 to tcl 
 set the textcolor of line tcl of me to "red"
 add th to tstarty 
 unlock screen 
  else if tstarty - item 2 of the mouseLoc > (th/2) then 
 lock screen 
 put line tcl of me & cr before line tcl - 1 of me 
 delete line tcl + 1 of me 
 subtract 1 from tcl 
 set the textcolor of line tcl of me to "red" 
 subtract th from tstarty 
 unlock screen 
  end if 
   end repeat 
   set the textcolor of line tcl of me to "black"
   set the hilitedLine of me to tcl
end mouseDown

This came from a question on one of the forums, not sure which and from
whom.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Drag-List-Items-Up-and-Down-tp4712158p4712163.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: Boring but important - selling a download product for Windows

2017-01-22 Thread AndyP via use-livecode
I use FastSpring as well..great system. I've also had the same problem with
Windows installers downloads and now always zip exe files...it just works!



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Boring-but-important-selling-a-download-product-for-Windows-tp4711826p4711839.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: Exit without quitting

2017-01-18 Thread AndyP via use-livecode
I also use this all the time and have not seen this problem.

Which version of LiveCode are you using?



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Exit-without-quitting-tp4711748p4711754.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: Tarting up the scriptEditor

2017-01-16 Thread AndyP via use-livecode
Yes I get notified on each post.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Tarting-up-the-scriptEditor-tp4711657p4711685.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: Tarting up the scriptEditor

2017-01-16 Thread AndyP via use-livecode
Hi Matthias,

Have you received the email re the update?

It has a link and instructions on how to install the latest version.

The auto updated can be flakey so I've reverted to a manual install method.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Tarting-up-the-scriptEditor-tp4711657p4711678.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: Tarting up the scriptEditor

2017-01-16 Thread AndyP via use-livecode
A new version (2.2) of Script Editor Themer has been released.

Release notes can be viewed here.

http://2108.co.uk/script-editor-themer/script-editor-themer-release-notes/

Now works with* Community* and *Commercial* versions of LiveCode

This fixes the problems with V8 onwards.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Tarting-up-the-scriptEditor-tp4711657p4711675.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: Tarting up the scriptEditor

2017-01-14 Thread AndyP via use-livecode
Hi Matthias ,

Im working on this right now and know what and how to sort the error.

The problem is general to LCV8 and LCV9 and not with the OS being used.

There will be an update to Seth later tonight.







-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDETinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Tarting-up-the-scriptEditor-tp4711657p4711662.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: Tarting up the scriptEditor

2017-01-14 Thread AndyP via use-livecode
Hi Stephen,

Im in the process of readying the latest version for open source at the
moment
Seth will still be a paid for product but password restriction will be
removed




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDETinyIDE a Free alternative minimalist IDE Plugin for LiveCode
TinyIDE 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Tarting-up-the-scriptEditor-tp4711657p4711660.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: Tarting up the scriptEditor

2017-01-14 Thread AndyP via use-livecode
Have a look here

Script editor Themer (SETH)   





-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Tarting-up-the-scriptEditor-tp4711657p4711658.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: [OT] KOUSEK (or replacement) code snippet manager replacement?

2017-01-13 Thread AndyP via use-livecode
Hi Pink,
Thanks very much for this stack. It's a great example for using the Treeviw
Widget, nicely done.
And thanks for the warning about the colors.. Sun glasses on first foks!




-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/OT-KOUSEK-or-replacement-code-snippet-manager-replacement-tp4711599p4711646.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: Sharing widgets (was Re: Type on an angle)

2016-11-21 Thread AndyP
The widget could be uploaded as a zip to the Sample Stacks.
There are a couple there already.

This would help to make the user widgets easier to find for all LC users.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Sharing-widgets-was-Re-Type-on-an-angle-tp4710479p4710480.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: autoScript

2016-11-17 Thread AndyP
Try replacing btn with button
I noticed in a couple of versions btn was not picked up but button was




-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/autoScript-tp4710331p4710391.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: [ANN] Release 8.1.2 RC-1

2016-11-09 Thread AndyP
Great work, lots of bugs squashed!

unfortunately a new serious bug has emerged.

using Cut on an object always crashes the IDE >Win 10

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





-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/ANN-Release-8-1-2-RC-1-tp4710229p4710240.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: FULL MailChimp & FREE PushNotifications from Digital Pomegranate

2016-10-23 Thread AndyP
Hi Todd,

Re
One line of code to revolutionize your DB Cloud 
On the non-open source side. We have just about completed a data sync tool 
that will sync your cloud based DB [SQLite, mySQL, msSQL, Oracle] with a 
local SQLite DB. Imagine, once you setup the tables on the server. It is 
just one line of code to keep all your clients data synced between 
thousands of devices. If you are interested, let me knowWe are testing 
soon. 

This sounds really fantastic. I am (was?) about to start coding Sqlite to
MySql routines for a Latin testing app I am working on at the moment, so I
would love to help, get involved with this project. I also have a game which
is nearing completion also for Android which would benefit from your
project.

My testing user base is under 10 for each project so load testing would be a
problem from my end.
Anyway would love to help any way I can.







-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/FULL-MailChimp-FREE-PushNotifications-from-Digital-Pomegranate-tp4709616p4709670.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: Community widgets

2016-10-23 Thread AndyP
Thanks ..much appreciated. 



-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Community-widgets-tp4709655p4709669.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: Keep taking the tablets

2016-10-13 Thread AndyP
This is rather cool, I hadn't realised this was possible before.

So here I am on an Android tablet adding buttons and fields and moving them
around in real time,...made me smile.

Anyway this is actualy a great way to get into script only coding with
LiveCode. 
Thanks for pointing this out.






-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Keep-taking-the-tablets-tp4709337p4709366.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: 9.0???

2016-10-03 Thread AndyP
Thanks  Peter.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/9-0-tp4709057p4709139.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: 9.0???

2016-10-03 Thread AndyP
Ok, I've  obviously  missed  something  here.. (no that unusual: -)
Where is this mystical  reference to V 9???




-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/9-0-tp4709057p4709137.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: "\n" appearing in Unicode

2016-09-26 Thread AndyP
Have a look at this post..it may help.

http://forums.livecode.com/viewtopic.php?f=12=27797=145730=converting+mysql+to+sqlite#p145730

  





-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/n-appearing-in-Unicode-tp4708916p4708921.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: Difficulty with Load command

2016-09-22 Thread AndyP
Hi Peter,

Have a look at this lesson, its a very clear example of how Load works. The
dictionary entry is not very helpful for Load.


http://lessons.livecode.com/m/4071/l/7523-how-do-i-get-the-content-of-a-url-on-a-web-server-into-revolution?id=7523-how-do-i-get-the-content-of-a-url-on-a-web-server-into-revolution

  





-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Difficulty-with-Load-command-tp4708759p4708762.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: Japanese (unicode?) text problem

2016-09-21 Thread AndyP
or

put url tUrl into tTextToDecode 
put uniDecode(tTextToDecode,”Japanese") into field “indices"





-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Japanese-unicode-text-problem-tp4708721p4708727.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: Random topic: What script font do you like/use?

2016-09-21 Thread AndyP
I default to Source Code Pro  SemiBold.

Good identification between upper and lower case, has easily distinguishable
lowercase l, capital I, and number 1, and zero and O 

You have the options of

Source Code Pro
Source Code Pro Black
Source Code Pro ExtraLight
Source Code Pro Light
Source Code Pro  SemiBold





-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Random-topic-What-script-font-do-you-like-use-tp4708713p4708725.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: code folding

2016-09-19 Thread AndyP
Hi Bernd,

Great, that sorted the problem.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/code-folding-tp4708589p4708609.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: code folding

2016-09-19 Thread AndyP
Hi Bernd,

Thanks for this.. you may want to look at this enhancement request..

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

On LC 8.1 Win 10, folding individual handlers work great but not fold all.





-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/code-folding-tp4708589p4708605.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: [ANN] Release 8.1.0

2016-09-14 Thread AndyP
Fantastic.. well done to the LiveCode team!!

using 8.1 right now 



-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/ANN-Release-8-1-0-tp4708368p4708379.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: How to tell the engine version of a Windows standalone?

2016-09-05 Thread AndyP
Something you may want to consider for the future is a secret keyboard
combination that pops up an info panel..just for this type of situation.
I've done this in a couple of apps and it has really helped to tie down some
of the parameters I've used in previous builds.

You can add things such as:

LC Version
Build Date
OS Version used for build
etc...



-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/How-to-tell-the-engine-version-of-a-Windows-standalone-tp4708058p4708060.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: Browser Widget vs the "old" RevBrowser

2016-08-24 Thread AndyP
Hi, A couple of your questions may have been answered here.

http://forums.livecode.com/viewtopic.php?f=8=27793
  



-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Browser-Widget-vs-the-old-RevBrowser-tp4707790p4707791.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: Great Conference Photos

2016-08-20 Thread AndyP
Great photos.

Nice to get a feeling for what was happening at the conference for those of
us who are unable to attend.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

Copy the new cloud space, get your free 15GB space now:
Get Copy 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Great-Conference-Photos-tp4707606p4707636.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


  1   2   3   >