//Displays and Updates Grid
mob/proc
Update_Who()
src << output("<center><font size =1><font color = Red>Key","Grid:1,1")
src << output("<center><font size =1><font color = Red>Time Online","Grid:2,1")
var/Row = 1
for(var/mob/M in Online_Players)
Row++
src << output("<center><font size =1>[M.key]","Grid:1,[Row]")
src << output("<center><font size =1>[M.hours]:[M.minutes].[M.seconds]","Grid:2,[Row]")
winset(src,"Main.Grid","cells=2x[Row]")
As you can see it will display the Key, then Time the players been online. However upon clicking on the row that key or time are in, i want it to have the BioWindow popup. I have the biowindow configured and everything the only problem i cant figure out is how to have the row's Click() Function minipulated or if that's even posible? Any help would be appreciated.