Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   GuiScrollCtrl (https://forums.graalonline.com/forums/showthread.php?t=134260895)

Cubical 10-20-2010 10:46 PM

GuiScrollCtrl
 
Is there a way to make the GuiScrollCtrl scroll a certain amount of pixels when you click it the arrows?

fowlplay4 10-20-2010 10:59 PM

There's..

onScrolled(newposx,newposy,deltax,deltay) - either the horizontal or vertical scrollbar has been moved

You could probably use that event and do something like this..

PHP Code:

function scrollgui.onScrolled(newposx,newposy,deltax,deltay) {
  
// Prevent scrolldelta from causing an infinite loop
  
if (this.scrolled) {
    
this.scrolled = false;
    return;
  }
  
this.scrolled = true;
  
// Scroll
  
scrollgui.scrolldelta(0, 16 * (deltay > 0 ? 1 : -1));
} 

Docs: http://wiki.graal.net/index.php/Crea.../GuiScrollCtrl

Cubical 10-20-2010 11:18 PM

What about scrollliney?
PHP Code:

scrollliney     integer     lines to scroll horizontally 

edit: nevermind, my autism was acting up

fowlplay4 10-20-2010 11:31 PM

If it works how you want it go for it.


All times are GMT +2. The time now is 12:42 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.