ID:1517652
 
(See the best response by JEY_SENSEY.)
Problem description:
I have a pop up for a verbs window and an inventory window, but when i click verbs i get a blank window with "Stats" when im looking to make it "Commands" and show the verbs I have coded in, in my inventory popup i have my commands there, is there a way for me to target a specific info pannel so i can have my inventory in 1 popup pannel and verbs in the other?

Image and video hosting by TinyPic
If there's a way to use multiple statpanels in the interface, it's not documented. The skin reference states that you should mark ONE statpanel default, indicating that using multiple statpanels isn't supported.

However, try calling: statpanel("[statpanel_id].Player Stats"), and make sure one of your statpanels is named whatever you put in [statpanel_id].

If there's a way to do it, that would be it. Otherwise, you might be out of luck.

Personally, I strongly dislike statpanels.
Best response
the option that I give is the next:
create one grid:

add one proc put the objects in the grid :

mob/proc/Inventary()
var/i=0
while(src&&src.statpanel)
i=0
for(var/obj/I in contents)
winset(src,"grid2","current-cell=[++i]")
src<<output(I,"grid2")
winset(src, "grid2", "cells=[i]")

and add the grid to the window which you have of inventory,hope you get my idea and I have been clear in the response.