Work in Progress

MinimalOS 0.4.1

9

msoft 2020-04-07 01:53 (Edited)

Teeny update. Going to finish files app, then work on log in page, then we’re ready for release!

Change log:

Tweaks:

Added:
- File menu

Removed:

MinimalOS 0.4.nx | Open in app
2020-04-28 06:02
MinimalOS 0.3.nx | Open in app
2020-04-12 06:47
MinimalOS 0.2.nx | Open in app
2020-04-10 06:15
MinimalOS 0.1.2.nx | Open in app
2020-04-09 05:34
MinimalOS 0.1.1.nx | Open in app
2020-04-08 22:21
MinimalOS 0.1.nx | Open in app
2020-04-08 06:44
MinimalOS 0.1.nx | Open in app
2020-04-08 06:43

msoft 2020-04-08 06:45

Forgot to upload with new icon last time, reuploaded it lol


GAMELEGEND 2020-04-08 22:42

The calculator does not show the answer anymore


msoft 2020-04-08 23:25

@GAMELEGEND it shows it the first time, but there’s currently a bug where if you click “again” the cursor gets stuck on the button so it’ll immediately click again after typing in all the inputs so you can’t see the answer. Idk how to fix it atm


msoft 2020-04-08 23:26

The only work around right now is by clicking in another area while typing


GAMELEGEND 2020-04-09 00:49

Okay


GAMELEGEND 2020-04-09 01:06

I found the problem the problem was

IF TOUCH.Y<16 AND TOUCH.X>142 THEN
GOTO MAIN
ELSE IF TOUCH.X>54 AND TOUCH.X<96 AND TOUCH.Y>84 AND TOUCH.Y<94 THEN
GOTO CALCULATOR
END IF

If someone types in a equation then presses again when they press enter to get the answer touch,x is in the same place and it goes back to the start of CALCULATOR tue way to fix it is

IF TOUCH AND TOUCH.Y<16 AND TOUCH.X>142 THEN
GOTO MAIN
ELSE IF TOUCH AND TOUCH.X>54 AND TOUCH.X<96 AND TOUCH.Y>84 AND TOUCH.Y<94 THEN
GOTO CALCULATOR
END IF

This checks to see if they have touched the screen before executing what is inside of the if statement

You could also do

IF TOUCH THEN
IF TOUCH.Y<16 AND TOUCH.X>142 THEN
GOTO MAIN
ELSE IF TOUCH.X>54 AND TOUCH.X<96 AND TOUCH.Y>84 AND TOUCH.Y<94 THEN
GOTO CALCULATOR
END IF
END IF


msoft 2020-04-09 01:49

Thank you! I was having trouble thinking of a work around.


GAMELEGEND 2020-04-10 07:12

This is a cool program what is the next update


msoft 2020-04-10 14:32

Don’t know yet lol


G-9 2020-04-11 08:53

Why not adding some colors ?


msoft 2020-04-11 15:53

@gamer I’m trying to keep the file as small as possible, I may add more colors in the future, however I’m new to nx so this is just my project where I mess around and learn stuff


G-9 2020-04-27 08:35

:)


Log in to reply.