We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi, I'm programming some nodes that moves on the screen (1200x900), when I click one nodes new information appear down in the canvas by the doble: resizeCanvas(windowWidth, windowHeight*2) and then text and images appears; Ok, I don't find the way to scrollDown to the info I have in the lower part of the page. How can I resolve it? Thanks
Answers
JavaScript has window.scrollTo() and window.scrollBy() functions. Hope that helps.
Thanks Ater!