Code: Select all
function love.keypressed(key)
print('keypressed', key)
end
function love.textinput(t)
print('textinput', t)
end
Code: Select all
function love.keypressed(key)
print('keypressed', key)
end
function love.textinput(t)
print('textinput', t)
end
Code: Select all
Keys_down = {}
function love.keypressed(key)
Keys_down[key] = true
end
function love.textinput(t)
if any_modifiers_down() and Keys_down[t] then
return
end
print('textinput', t)
end
function love.keyreleased(key)
Keys_down[key] = nil
end
function any_modifiers_down()
return Keys_down.lctrl or Keys_down.rctrl or
Keys_down.lalt or Keys_down.ralt or
Keys_down.lshift or Keys_down.rshift or
Keys_down.lgui or Keys_down.rgui
end
Code: Select all
Error: compute_scrollbar:6: attempt to index a nil value
stack traceback:
compute_scrollbar:6: in function 'compute_scrollbar'
draw_scrollbar:6: in function 'draw_scrollbar'
on.draw:11: in function 'draw'
main.lua:164: in function 'draw'
app.lua:183: in function <app.lua:165>
[C]: in function 'xpcall'
app.lua:193: in function <app.lua:192>
[C]: in function 'xpcall'
[love "boot.lua"]:370: in function <[love "boot.lua"]:337>
I assume it's a list of projects or files or something, but it's all empty space in your images here & on your itch page. Am I missing something?Kartik Agaram wrote: ↑Fri Nov 24, 2023 6:02 am The space on the right is available for your programs, as my examples show
Thank you! Yes, I'm not a good enough programmer (yet) to compete with a mature IDE But oh, the mouse wheel is an obvious omission. Some of my other apps have it, so it's easy to bring in. Please check out the version I just uploaded:milon wrote: ↑Mon Nov 27, 2023 7:19 pmI assume it's a list of projects or files or something, but it's all empty space in your images here & on your itch page. Am I missing something?Kartik Agaram wrote: ↑Fri Nov 24, 2023 6:02 am The space on the right is available for your programs, as my examples show
EDIT - I was thinking of using this in place of Geany, but I miss the "creature comforts" of an IDE (mouse wheel to scroll, auto complete, etc). But it's really cool that it can be used on mobile to code on the go!
Mouse wheel works great! It's exactly the right speed (at least for me), and works so well that I actually forgot at first that I was supposed to pay attention to it!Kartik Agaram wrote: ↑Sat Dec 02, 2023 9:10 pm I'm particularly curious about usability issues. Is it too fast, too slow, etc. I don't have much experience supporting the mouse wheel.
Users browsing this forum: No registered users and 0 guests