Search found 27 matches

by FLCo
Fri Jun 24, 2016 3:26 pm
Forum: Announcements
Topic: [ANN] FieldFormatter for LC8
Replies: 0
Views: 3624

[ANN] FieldFormatter for LC8

A free update for the IDE extension "FieldFormatter" has been released. The update includes a fix to accommodate a bug in the LC8 IDE so choosing the Browse tool updates the palette as expected. Click the orange header icon in your FieldFormatter palette to check for updates. Full product details ar...
by FLCo
Mon Feb 08, 2016 11:31 am
Forum: Announcements
Topic: [Ann] ChartMaker for LiveCode, Build 67
Replies: 0
Views: 2851

[Ann] ChartMaker for LiveCode, Build 67

I am pleased to announce a free update for ChartMaker for LiveCode. This release also includes improvements made in internal Build 66. LiveCode 8: ChartMaker should be entirely LC8-compatible. If you experience any problems, please report issues so they can be addressed. Full release notes and the n...
by FLCo
Wed Apr 08, 2015 6:18 pm
Forum: Announcements
Topic: ChartMaker 3, Build 65 released
Replies: 0
Views: 3163

ChartMaker 3, Build 65 released

I am pleased to announce a free update for ChartMaker that is LC6.7 and LC7 compatible. Full release notes and the new release download are available here, including a free 30-day trial (or use your existing key to update): http://www.flexiblelearning.com/chartmaker/versioning/whatsnew.htm Note that...
by FLCo
Mon Feb 16, 2015 7:48 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: [Solved] Bar Charts
Replies: 9
Views: 8344

Re: Bar Charts

ChartMaker 3 Build: 63 Release type: Update Issued: 16 Feb 2015 This is a free maintenance update for LC6.7 and LC7 compatibility. ChartMaker now requires LiveCode 5.5 or later. Earlier versions are not supported. Full release notes and the new release download are available here, including a free ...
by FLCo
Mon Feb 16, 2015 7:39 pm
Forum: Announcements
Topic: ChartMaker 3, Build 63 released
Replies: 0
Views: 12551

ChartMaker 3, Build 63 released

I am pleased to announce a free update for ChartMaker that is LC6.7 and LC7 compatible. This update also affects the ChartMaker Utility. Full release notes and the new release download are available here, including a free 30-day trial (or use your existing key to update): http://www.flexiblelearning...
by FLCo
Sun Feb 15, 2015 10:42 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: [Solved] Bar Charts
Replies: 9
Views: 8344

Re: Bar Charts

ChartMaker is scheduled for an update to Build 63 in the next day or so that is compatible with LC6.7x and 7x. There have been various engine issues that have prevented an update release until now.

Best regards

Hugh Senior
FLCo
by FLCo
Fri Feb 13, 2015 8:40 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: [Solved] Bar Charts
Replies: 9
Views: 8344

Re: Bar Charts

Use the "Charts" dropdown menu, select "Samples" and choose "Single Series". The display texture options are in the "Font & Color" section. Changing any option then clicking "Build chart" allows you to try out different settings. Select the "Show syntax" checkbox for the required code to build the c...
by FLCo
Fri Feb 13, 2015 5:47 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: [Solved] Bar Charts
Replies: 9
Views: 8344

Re: Bar Charts

ChartMaker supports gradient fills like this... http://www.flexiblelearning.com/chartmaker/grcs/homesample1.png which seems to approximate to what you are looking for. Data labels can be placed externally or internally, and you can choose your own color scheme. http://www.flexiblelearning.com/chartm...
by FLCo
Thu Jan 29, 2015 10:08 pm
Forum: Announcements
Topic: ControlManager Build 70 released
Replies: 0
Views: 12419

ControlManager Build 70 released

I am delighted to announce that an updated version of ControlManager is now available. You can find out more at... http://www.FlexibleLearning.com/controlmanager (includes video) and at https://livecode.com/store/marketplace/controlManager-1-0-0 (now with lots of 5-star reviews... Thanks!) All regis...
by FLCo
Tue Dec 23, 2014 4:36 pm
Forum: Announcements
Topic: [ANN] Free TypingFilter for LiveCode
Replies: 1
Views: 3441

[ANN] Free TypingFilter for LiveCode

TypingFilter for LiveCode is now available It's Fast, flexible and FREE! http://www.flexibleLearning.com/typingfilter/grcs/forumexample.png http://www.flexibleLearning.com/typingfilter Click the link above to download the example implementation that includes 40,000 place names as an example data so...
by FLCo
Tue Dec 02, 2014 2:58 pm
Forum: Announcements
Topic: [ANN] ControlManager for LiveCode
Replies: 0
Views: 2761

[ANN] ControlManager for LiveCode

ControlManager for LiveCode is now available, with full details here... http://www.flexibleLearning.com/controlmanager It is "LiveCode-Community compatible" and has been tested from v5.5.4 (minimum required), through v6 to v7. What it aims to provide... - It is designed to be simple to use and prov...
by FLCo
Thu Sep 04, 2014 11:02 am
Forum: Off-Topic
Topic: Floor
Replies: 8
Views: 8593

Re: Floor

I have no idea why I wrote that... You and Charles are absolutely correct. I shall try to delete my comment to remove any further confusion.
by FLCo
Thu Aug 28, 2014 7:28 am
Forum: Off-Topic
Topic: Floor
Replies: 8
Views: 8593

Re: Floor

-- Comment removed --
by FLCo
Wed Aug 27, 2014 8:02 pm
Forum: Off-Topic
Topic: Floor
Replies: 8
Views: 8593

Re: Floor

function Floor pValue
if pValue is an integer OR pValue < 0 then return trunc(pValue) - 1
else return trunc(pValue)
end Floor
So floor(5) = trunc(5) -1 = 4

Don't think so. Read my post above.
by FLCo
Sat Aug 23, 2014 10:07 pm
Forum: Off-Topic
Topic: Floor
Replies: 8
Views: 8593

Re: Floor

function Floor pValue if pValue < 0 then return trunc(pValue) - 1 else return trunc(pValue) end Floor This handles when the negative number is a whole number... function Math.floor pNum if pNum < 0 then if trunc(pNum)=pNum then return pNum else return trunc(pNum) - 1 else return trunc(pNum) end Mat...

Go to advanced search