Denvi

Results 25 comments of Denvi

Hi, ok. As for 'generated_cpp' it's https://github.com/phbaer/qtscriptgenerator

Hi, there is no user commands hints translate option for now. You can change any hint any time you want in settings window.

Hello, im tried to remove limit, but it's may be buggy for now: [Candle_iss549.zip](https://github.com/Denvi/Candle/files/8542608/Candle_iss549.zip) This script should work: ``` {script.importExtension("qt.widgets")} {with (QMessageBox) warning(0, "1", "2", StandardButtons(Yes, No))} ```

Some fixes for nested brackets: [Candle_iss549_1.zip](https://github.com/Denvi/Candle/files/8556356/Candle_iss549_1.zip) So now this example works: ``` {script.importExtension("qt.widgets")} {with (QMessageBox) var r = warning(0, "1", "2", StandardButtons(Yes, No, Cancel))} {if (r == QMessageBox.No) {s =...

Hi, have you tried parseInt() or unary "+" such as: ``` y_probe + parseInt(d) or y_probe + +d ```