Re: Chart widget and axes which are time values

2022-02-23 Thread FlexibleLearning.com via use-livecode
ChartMaker has this feature with a syntax wizard to format the required implementation... http://www.flexiblelearning.com/chartmaker/ Free to try it out and see if it meets your needs. Hugh Senior ___ use-livecode mailing list

RE: chartsEngine bug with version 10 of LC

2021-12-28 Thread FlexibleLearning.com via use-livecode
> I?ve encountered a problem with the third-party LiveCode product > chartsEngine now reporting that LiveCode < version 10.0.0 (dp 1) > is not a > high enough version number. (AnimationEngine was reporting a similar error > which I was able to fix since the scripts are open.) ChartsEngine is,

RE: I Have a Problem With a Plug-In

2020-09-27 Thread FlexibleLearning.com via use-livecode
Assuming your openCard handler is in the script of card 1, from the message box... edit the script of cd 1 of stack " CollectMyStacks.rev" Hugh Senior > I have? CollectMyStacks.rev, close itself after opens the card > > on opencard > send "mouseUp" to button "Position IDE" in 1 seconds

get URL problems

2019-12-16 Thread FlexibleLearning.com via use-livecode
Why can I 'launch' this url but not 'get' it? put "https://www.alphavantage.co/query?function=TIME_SERIES_DAILY=MSFT ikey=demo" into tURL launch url tURL --| Works fine, page loads entirely as expected in default web browser get url tURL --| Returns empty, nada, not a sausage put it into tJSON

Merge PDF

2019-10-17 Thread FlexibleLearning.com via use-livecode
Has anyone got an LC-based method to merge pdf files? Just asking... Hugh Senior ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: My sticky fingers

2019-06-12 Thread FlexibleLearning.com via use-livecode
Straw grasping here... on keyDown do something send "flush" to me in 0 pass keyDown end keyDown on flush get flushEvents("all") end flush Hugh Senior On Mon, Jun 10, 2019 at 01:43 Richmond via use-livecode < use-livecode@lists.runrev.com> wrote: > Everyyytime I try to

Mobile write to text file woes

2018-09-22 Thread FlexibleLearning.com via use-livecode
I have a little app It works and makes me smile It reads text data in a snap But won't write with "Can't open file" The path is set the same for both The file is in the bundle So why can't I write to the file it reads? Mutter, mumble, grumble, grumble... Hugh Senior

[OT] Accommodation in Edinburgh

2018-09-01 Thread FlexibleLearning.com via use-livecode
We are (finally!) taking a week's holiday north of the border and want to visit Edinburgh 10-15 September. Any hotel recommendations? Does not have to be in the city centre! Hugh ___ use-livecode mailing list use-livecode@lists.runrev.com Please

startUp messaging hierarchy

2018-09-01 Thread FlexibleLearning.com via use-livecode
I find myself unable to answer this rather basic question, and cannot locate any information... e.g. This is both incomplete and also most likely incorrect... startUp (if engine is not already loaded) - frontScript: -- PreOpenStack -- PreOpenCard -- openStack -- openCard -- preOpenBackGround --

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-24 Thread FlexibleLearning.com via use-livecode
First, I think you have a typo where "/25" should be "-25"... set loc group "footer" to ( (item 2 of tRect)/2,(item 4 of tRect)/25 ) # Typo: -25 Second, for safety, ensure integer values... set loc group "footer" to round((item 2 of tRect)/2), (item 4 of tRect)-25 Third, if still not working

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-23 Thread FlexibleLearning.com via use-livecode
Coming in late to the thread, but would this not work on all platforms? on preOpenStack setupStackRect end preOpenStack on orientationChanged -- setupStackRect end orientationChanged on setupStackRect pWidth,pHeight if pWidth="" and pHeight="" then put the effective working

RE: DataGrid image display woes

2018-08-04 Thread FlexibleLearning.com via use-livecode
I recently wrote... > Okay, I have a datagrid Form with a template to display an image and 4 fields. > > The fields display the correct data for each line/record, but the unique image > for each line/record is not being correctly displayed. > > If the dataGrid height can show all records, the

DataGrid image display woes

2018-08-04 Thread FlexibleLearning.com via use-livecode
Okay, I have a datagrid Form with a template to display an image and 4 fields. The fields display the correct data for each line/record, but the unique image for each line/record is not being correctly displayed. If the dataGrid height can show all records, the image for the last record is

Re: [ANN] Release 9.0.1 RC-1

2018-07-11 Thread FlexibleLearning.com via use-livecode
Mark Wieder wrote: > ...bartender says "we don't serve tachyons in here" > > A tachyon walks into a bar... I don't have time for tachyon jokes :) Hugh Senior FLCo ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

RE: modal window = block handler?

2017-07-10 Thread FlexibleLearning.com via use-livecode
the handler that calls it until menupick happens but in my experience here it simple keeps running even while the modal is open. This might be related. om om andre On Mon, Jul 10, 2017 at 2:18 PM, FlexibleLearning.com via use-livecode <use-livecode@lists.runrev.com <mailto:u

Re: modal window = block handler?

2017-07-10 Thread FlexibleLearning.com via use-livecode
ow is not modal. I will have to experiment with that. > > Bob S > > > > On Jul 10, 2017, at 24:03 , FlexibleLearning.com via use-livecode livec...@lists.runrev.com> wrote: > > > > (modal blocks underlying windows, not necessarily code) _

Re: modal window = block handler?

2017-07-10 Thread FlexibleLearning.com via use-livecode
If you open invisible, then display it, a modal will not block. This non-modal behaviour of a modal has been incredibly useful for displaying a progress indicator in a modal window. I do not consider it a bug as such (modal blocks underlying windows, not necessarily code), and would hope this

Re: synonyms

2017-06-28 Thread FlexibleLearning.com via use-livecode
This is how ChartMaker (www.flexibleLearning.com/chartmaker ) works, with only the required name-value pairs and in any order. It does make implementing modifications to chart displays a lot easier for exactly the reasons you give! Hugh Senior FLCo > -Original Message- > I don't know

URGENT: Mixed orientation printing to PDF

2017-05-19 Thread FlexibleLearning.com via use-livecode
I have a 5.02 legacy stack that prints A4 pages to PDF using "open printing to pdf". The documentation says that the printPaperSize must be set before calling open printing, suggesting that changes to the printPaperSize after "open printing" are not supported (I tried, and it seems so). I can

Re: Drag List Items Up and Down

2017-02-04 Thread FlexibleLearning.com via use-livecode
This modification honours the minimum and maximum drag line to avoid the inadvertent insertion of empty lines, and cosmetically works for both list and standard fields... -- Field script on mouseDown put the num of lines of me into tmax # Store drag constraint put word 2 of the clickLine