View Single Post
12-29-08, 01:52 PM   #3
Slakah
A Molten Giant
 
Slakah's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2007
Posts: 863
You need to pass "self" as the first argument of FauxScrollFrame_OnVerticalScroll.

So in your XML (never used XML so this is a guess) you replace:

xml Code:
  1. <OnVerticalScroll>
  2.    FauxScrollFrame_OnVerticalScroll(16, FFSlashScrollBar_Update);
  3. </OnVerticalScroll>

with
xml Code:
  1. <OnVerticalScroll>
  2.    FauxScrollFrame_OnVerticalScroll(self, 16, FFSlashScrollBar_Update);
  3. </OnVerticalScroll>

Last edited by Slakah : 12-29-08 at 01:55 PM.
  Reply With Quote