0 Members and 3 Guests are viewing this topic.
I can't turn my calculator into a Gameboy by making Pokémon run on startup? So why couldn't you just scrap the old methods and appvars for the new? I don't think any really important data would be lost if you had to delete the existing settings appvar, the user would just have to take a minute or two to review their settings. Possibly a good idea anyways to have users review it all, with new features.
How would I turn the fonts I have as programs into appvars?
Quote from: Freyaday on May 10, 2013, 06:12:04 pmHow would I turn the fonts I have as programs into appvars?The easiest way I know is to unarchive them, find them in the Calcsys vat viewer, press Alpha+V, and then change the 06 that you are highlighting to 15.
In other news, Frey continues kicking unprecedented levels of ass.
A couple feature requests: - If Omnicalc ram restore is enabled, do it automatically upon quitting from program and/or before [On]+[Zoom]/[Trace] test runs
- An updated readme
For the 8-level gray pics: what header should we use if we convert the pics with istudio2?(for some reason my side-by-side assemblies are bad, and can't run level8)
Quote from: pimathbrainiac on May 13, 2013, 01:27:47 pmFor the 8-level gray pics: what header should we use if we convert the pics with istudio2?(for some reason my side-by-side assemblies are bad, and can't run level8)The header is just "BM" so $42, $4D followed by the picture data. The format is DARK MED LIGHT DARK MED LIGHT etc. where each of those words is a byte. istudio2 might put a dark image, then a medium image, then a light image, so you'll have to correct it if it does that.
.db $42,$4Dpicture data
IDK What "BM" means, so here's my best guess:
Code: [Select].db $42,$4Dpicture dataIs this right? Or do I have it wrong?
Random idea #92638: On+Up/Down to skip multiple pages at once in program (and/or apps if quick apps isn't active) menu. And maybe catalog as well, but that's pretty fast already.Skipping to a letter kind of does it better tho, so idk.
Quote from: pimathbrainiac on May 18, 2013, 03:34:33 pmIDK What "BM" means, so here's my best guess:ASCII: 'B', 'M' It's how windows denotes .bmp files, that's where I got the idea from.QuoteCode: [Select].db $42,$4Dpicture dataIs this right? Or do I have it wrong?You have it exactly right.Quote from: Darl181 on May 18, 2013, 03:37:02 pmRandom idea #92638: On+Up/Down to skip multiple pages at once in program (and/or apps if quick apps isn't active) menu. And maybe catalog as well, but that's pretty fast already.Skipping to a letter kind of does it better tho, so idk.I don't even know if I'd be able to make that faster. If I skipped multiple pages the way the OS does it (scroll all at once) it would be the exact same speed. I'd have to manually redraw the menu. I'll try to see how difficult that is, but it's probably doable. I believe I already redraw the menu when you archive something.
.db $42,$4D#include "picture.bmp"