|
#21
|
||||
|
||||
|
Quote:
|
|
|
|||
|
|
|
#22
|
|||
|
|||
|
yea i fixed the link hopefully
u can read ur small sized e-books by pasting them into the data.lua. open and paste using notepad. reads only english. u can edit them in the player, but ur computer cannot read what the player has saved. @brett: hope u do not mind if i play around with ur code. i will see what i can improve. will try to improve the keyboard and maybe include the accelerometer function for orientation reading. i have not touch lua programming before, so i may take a very long time to edit the codes Last edited by JJLoke; 02-15-2010 at 10:44 PM. |
|
#23
|
||||
|
||||
|
I deleted the white background from your icon, added a little shadow (unfortunatly, you can't see it XD).
|
|
#24
|
||||
|
||||
|
Quote:
Can't say for certain he will use it until he does though =P
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#25
|
||||
|
||||
|
Quote:
|
|
#26
|
||||
|
||||
|
Quote:
Quote:
BUT, that will change in next update, it stays readable as a regular text file now I guess it has something to do with saving text as strings instead of characters. Not sure though, could be just a mistake on my part...And no, I don't mind at all if you play around with the code. I'm not a programmer, I only know some HTML.. I got all the LUA stuff from this forum and from other users' codes as well. Besides, I don't think you can learn much from my code because it's pretty much a mess ![]() I also thought of including accelerometer functions, but I'm not sure if it's useful to read text in portrait mode, because the viewable space from left to right would be very limited.. Quote:
So I'll do my best to make a nice app with it.I've changed the keyboard a bit, attached are three screenshots of it.. The screenshots are all black, but I'm going to make it so that the user can decide which color combinations (themes) are on display. I can't upload it yet because I'm having some issues with the cursor (in combination with the functions backspace and enter). I'm very tired right now so I hope tomorrow I can have a fresh look at it and fix it. |
|
#27
|
|||
|
|||
|
perhaps the cursor u can borrow the function from Zap's code
the keyboard icon looks cool though. an added menu icon for other stuff is a good idea, but the script will be longggg.... |
|
#28
|
||||
|
||||
|
Screenshot of the new keyboard looks great! Looking forward to the release ^^
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#29
|
||||
|
||||
|
Wow, that new keyboard looks very good
. Edit: Nvm, the scrolling isn't very laggy in this app. Got the wrong app in mind... :P Last edited by Idroy; 02-18-2010 at 11:03 AM. |
|
#30
|
||||
|
||||
|
I just remembered another thing I wanted to inform you about. It's about the character count and line info. It's sometimes there, and sometimes not. And it isn't counting very good either. When you feed a new line it doesn't add it until you've written at least a character on it.
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#31
|
||||
|
||||
|
I'm not sure if I can use that, his code is a lot different than mine.
But anyway I already fixed it, it was just 1 line that wasn't in place (it was above another line while it was supposed to be underneath it...) I guess I was too tired to notice that last night ![]() Thanks ![]() About the lag, there is little because this one only scrolls up and down. I added left-right scrolling, and then there is a bit more lag.. Maybe I'll disable left-right scrolling, I have to see.. Quote:
Yes, the counting was in the wrong place in the code, that's why it didn't get updated properly. I fixed that now.I'm working on adding user-switchable colors and cursors and then I'll upload V2
Last edited by Brett_val; 02-18-2010 at 11:16 AM. |
|
#32
|
||||
|
||||
|
Can't wait to try it
... ( I know, this message is pretty useless XD)
|
|
#33
|
||||
|
||||
|
Quote:
And of course I noticed, I didn't add "The feedbacker" in my sig for nothing =P Looking forward to V2 of course ^^
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#34
|
||||
|
||||
|
Now that's what I call good feedback
![]() To me right-left scrolling isn't important either, and sometimes even bothersome when you just want to scroll down but by mistake sweep all the text to left or right. But since the player can do it, it's nice that it's included.. I'll let the user choose if it can scroll left-right. And thanks to you all for your enthousiasm ! |
|
#35
|
|||
|
|||
|
i came across a function that does font wrapping.
example like when a word gets cut into the next line, first half of the word at the top, second half of the word at the next line, instead of the whole word moving down into a new line |
|
#36
|
||||
|
||||
|
Updated!!
While working on this one I learned a little more about how to save to a file, so I'll now be working on a way to save and load different textfiles. I included an option to disable left-right scrolling, but I don't really notice a difference in speed/lag.. What do you guys think? Splashscreen is also coming, which will include credits ![]() When all this is done, and there are no bugs left in it, I'll contact Xeroo to upload it to Xeroo.net. |
|
#37
|
||||
|
||||
|
Isn't that what this already does? It just goes to a new line and the word gets cut. Or do you have a code that moves the whole word to the next line?
|
|
#38
|
||||
|
||||
|
Sorry for double posting but I just thought of this and had to tell you guys.
If you put this in the touch.move part of the loop it helps when scrolling large amounts of text. s=s+1 if s==5 then drawlines() s=0 end It's just to prevent the player from drawing all the time. Higher values like 10 make the scrolling very "shocky", and at 5 it's still not fluent anymore but I think that's better than being unresponsive because it's constantly drawling lines. |
|
#39
|
||||
|
||||
|
Found one problem immediately. You exit the app and let it save your text, then when you open it up again it reloads the text without spaces.
I love they keyboard design, it's cool. But perhaps there is an easier way to allow caps? Or at least a shift button making one char capital and then goes back automatically. And for the options menu you might need a separate image instead of stretching the small one you use for the buttons, it gets slightly pixelated in the shadowing.
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#40
|
|||
|
|||
|
@Brett: I will post the sample code when i get home
for the auto caplock suggestion, may not be a good idea to go back to small cap if user wants big caps all the way instead i suggest for the first character immediately after the fullstop, the program will auto write big caps then following characters will be back to small letter |
![]() |
| Tags |
| application, notepad, x-fi 2 |
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 09:24 AM.












I guess it has something to do with saving text as strings instead of characters. Not sure though, could be just a mistake on my part...
.
(it was above another line while it was supposed to be underneath it...) I guess I was too tired to notice that last night 

Linear Mode
