View Single Post
  #7  
Old 07-14-2010, 05:40 AM
salesman salesman is offline
Finger lickin' good.
salesman's Avatar
Join Date: Nov 2008
Location: Colorado
Posts: 1,865
salesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud of
My guess would be that it has something to do with your event handling.

try catching one of the events like:

PHP Code:
function Tailor_PopUp_Skin.onSelect(rowid, rowtext) {
  echo(
"Works!");
} 
If that works, try changing
PHP Code:
thiso.catchevent(name, ...); 
to
PHP Code:
thiso.catchevent(this, ...); 
(sending the object as the parameter, instead of a string -- that's what I normally do, but it could just cast the object to a string when I do it...dunno)

edit: also, transparency = this.invAlpha; should be transparency = thiso.invAlpha; (unrelated, but I thought I might point it out)
__________________
Reply With Quote