Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-20-2010, 10:46 PM
Cubical Cubical is offline
Banned
Join Date: Feb 2007
Posts: 1,348
Cubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant future
GuiScrollCtrl

Is there a way to make the GuiScrollCtrl scroll a certain amount of pixels when you click it the arrows?
Reply With Quote
  #2  
Old 10-20-2010, 10:59 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
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
__________________
Quote:
Reply With Quote
  #3  
Old 10-20-2010, 11:18 PM
Cubical Cubical is offline
Banned
Join Date: Feb 2007
Posts: 1,348
Cubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant future
What about scrollliney?
PHP Code:
scrollliney     integer     lines to scroll horizontally 
edit: nevermind, my autism was acting up
Reply With Quote
  #4  
Old 10-20-2010, 11:31 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
If it works how you want it go for it.
__________________
Quote:
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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


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