0 Members and 1 Guest are viewing this topic.
virtual desktops! (Or multiple desktops!)
Is it possible to make a shortcut to compile with axe inside the program editor. When I'm done making changes, it'd be nice if I could compile from the editor instead of going to the program's name in the editor again.
I made an interesting font. It's based off one of my favorite fonts, which just happens to be my new coding font: Cloister Black.
In other news, Frey continues kicking unprecedented levels of ass.
[Feature Wishlist]-Allow Symbolic-Allow Graph3-Make the ability to run GUIs (read spoiler for more informations about what I think about)
ld hl, symbolicName rst 20h bcall(_findApp) jr c, noSymbolic ld hl, $43B7 bcall(_enableRawKeyHook) ld hl, $43E1 bcall(_enableTokenHook) ;straight from symbolic ld hl, $47D0 bcall(_enableParserHook) noSymbolic: ld hl, graph3Name rst 20h bcall(_findApp) jr c, noGraph3 ld hl, $4083 bcall(_enableYEquHook) ;straight from graph3 ld hl, $4087 bcall(_enableWindowHook) ld hl, $408B bcall(_enableGraphHook) ld hl, $408F bcall(_enableAppChangeHook)noGraph3: retsymbolicName: .db appObj, "Symbolic " ;the apps probably have spacesgraph3Name: ; after their names .db appObj, "Graph3 "
-Make the ability to run GUIs (read spoiler for more informations about what I think about)
You would make a program like this.Code: [Select]/cutAnd then make it "Run on zStart" with ON + 0. I attached an assembled version.
/cut
Quote-Make the ability to run GUIs (read spoiler for more informations about what I think about)I think you mean APIs, (application programming interface) and yes I've thought about it. It wouldn't be hard at all, but it would have to be after I go two pages due to the space it would take.
Quote from: thepenguin77 on September 17, 2011, 01:01:07 pmYou would make a program like this.Code: [Select]/cutAnd then make it "Run on zStart" with ON + 0. I attached an assembled version.This will install the hooks of the apps when I quit zStart, right ? And this will not interfere with zStart's hooks (because installing Symbolic kills zStart's hooks: I can't run archived progs) ?
I have a suggestion.On the font view screen (the one that appears when you press ALPHA whilst editing a char) you currently clear and then refill the screen whenever the cursor is moved. I came up with a way to fix that.Instead of clearing the screen every time, all you have to do it print the char and the char to its left in black-on-white, then move the cursor, then do whatever!I even wrote an Axe program that'll do it!Lemme know if you'd like it.
Quote from: Freyaday on September 20, 2011, 12:19:03 amI have a suggestion.On the font view screen (the one that appears when you press ALPHA whilst editing a char) you currently clear and then refill the screen whenever the cursor is moved. I came up with a way to fix that.Instead of clearing the screen every time, all you have to do it print the char and the char to its left in black-on-white, then move the cursor, then do whatever!I even wrote an Axe program that'll do it!Lemme know if you'd like it. I know that . Maybe you should hear the background behind the font editor. When I first made it, I figured people would just press +/- and *// to navigate. Then, I got the awesome idea to display all the characters and let you pick one. Of course, since this was just a menu, I didn't spend that much time on it. It did it's purpose, and I was happy with it. When I made it, I didn't think many people would use it.Now however, I realized that everyone uses the chart every time and no one uses the controls I added. (look at those absolutes) This also explains why the editor starts out editing, and not viewing the list.Now you know.
Quote from: Hayleia on September 17, 2011, 02:07:44 pmQuote from: thepenguin77 on September 17, 2011, 01:01:07 pmYou would make a program like this.Code: [Select]/cutAnd then make it "Run on zStart" with ON + 0. I attached an assembled version.This will install the hooks of the apps when I quit zStart, right ? And this will not interfere with zStart's hooks (because installing Symbolic kills zStart's hooks: I can't run archived progs) ?Yeah, I forgot about that, Symbolic has a parser hook which is the basis of how it works, as of now, the best thing I can say without getting super complicated would be to run programs with ON + Enter. Sorry about that.