q2apro

Results 70 issues of q2apro

Buttons are not mentioned at https://cindyjs.org/ref/User_Input.html or anywhere else. There is only one example in the gallery: https://cindyjs.org/examples/Buttons1.html Using: ``` geometry: [ {name: "Text0", type: "ToggleButton", pos: [-2.0, -4.0, -0.8],...

Is there a way to define colors in Hex-RGB, e.g. #bb9972 instead of percentage-RGB (0,0,1). Instead of: `drawcircle( (0,0), 5, color->(0,0,1));` I would prefer `drawcircle( (0,0), 5, color->("#00F"));` In web...

When zooming in in EaselJS-drawn geometry (draws on canvas), it always gets blurred: ![image](https://user-images.githubusercontent.com/6764548/51241218-06171980-1986-11e9-999a-222fe2bd42ee.png) Try yourself: https://www.matheretter.de/rechner/bruchweit However, with CindyJS the graphics/lines stay cristal clear! 👍 How is that possible?...

I could not find out how to edit text on runtime (csmove): **Setup:** geometry: [ {name: "labela", type: "Text", pos: [0.0, -4.0, -0.8], color: [0.0, 0.0, 1.0], text: "a"}, ],...

bug
documentation

As far as I could see, at https://cinderella.de/ there is only the software to be downloaded and then the users have to install it. It would be fantastic if the...

enhancement
discussion

Many projects use github for only bug-reports and enhancement suggestions, and Stackoverflow for how-to-questions. I'd like to know if this is / will be the case with CindyJS too? For...

enhancement
discussion

Using ``` var cdy = CindyJS({ scripts: { init: `resetclock();`, draw: ` A.caption = "XC"; ` }, geometry: [ {name:"A", kind:"P", type:"Free", pos:[1, 1], color:[0,0,0], labeled: true}, {name:"B", kind:"P", type:"Free",...

bug
enhancement
documentation

Using the release version 2.2.155 of Carnac under Windows 10: ![2017-12-17](https://user-images.githubusercontent.com/6764548/34079907-eb36407e-e33e-11e7-8aa3-350da34bdb14.gif) As soon as the Save button is hit, the software dies.

Let's assume we have something like: ``` Fruit Apple Pear Orange Veggy Cucumber Tomato Minions ``` I'd use quicksearch on an input field like this (just example code including highlighting):...

I would like to not only filter the elements but also sort them by the highest number of words found within each element. Test here (sorting by word count does...