Virtual Nomad- i think i tried SetTextScissor (did some research) i think it didnt work, i will test it again i looked at your code and it looks nice (ill try it ).
and no

i didnt use SetViewOffset i ported a simpler version of an as 3 scroller(with no scroolbar that will need more math and im lazy):
global ins_scroll as yscrollt
ins_scroll.top = 0
function scroll_btns_add(x as float,y as float,w as string,t as string)
up as ybtn
down as ybtn
up = recYbtn(x,y,"scroll up",100,w,t)
ybtns_ins(up,"up")//insert string
down = recYbtn(x,y+150,"scroll down",100,w,t)
ybtns_ins(down,"down")
endfunction
function scroll_btns_click(t as string, yscroll ref as yscrollt)
btns as ybtn[]
btns = getYbtnByType(t)
for i=0 to btns.length
if ybtnReleased(btns[i])
if btns[i].ystrings[0] = "up"
inc yscroll.top,50
show_resources(30,55)
endif
if btns[i].ystrings[0] = "down"
dec yscroll.top,50
show_resources(30,55)
endif
endif
next i
endfunction
function scroll_btns_instractions_click(t as string, yscroll ref as yscrollt)
btns as ybtn[]
btns = getYbtnByType(t)
for i=0 to btns.length
if ybtnReleased(btns[i])
if btns[i].ystrings[0] = "up"
inc yscroll.top,50
instractionsBtns()
endif
if btns[i].ystrings[0] = "down"
dec yscroll.top,50
instractionsBtns()
endif
endif
next i
endfunction
ye it havily uses my framework, i will need to write a documentation for that.
html? gladly but how do i save json files on local storage/cookies? is there a way to communicate with custom js? i saw a hack to send data with messge(), how do i get data back to agks js?
with js opendb i can even use sql (websql whatever they call that).
my game has a ton of data to save.
i can hack my way using "
shared vars" agk funcs, will take time and wont be fun, if anyone has a better way please share it with me.
would be a shame to make a html5 version with no prograss save.
oh and i forgot to menthion: i used
this post to packge my game to one exe, dosnt protect the resources but 90% of players wont get to them (and those that do wont be stoped by almost anything).
also i wanna show you my itch io trafic:
its nice for free trafic,but its kinda a one time thing(they wont be happy if i post again) and i got downvoted on the reddit incremental games sub...its nice to see people supporting indie devs that make free games.
