ID:148959
 
I have two lines
stat(" ", src)
stat(" ", src.HAPmeters)

wich give me
*icon1* *name*
*icon2*

what I want is
*icon1* *name* *icon2*

I've tried using /icon[src] as such:
src.HAPmeters.name = "/icon[src]"
or
stat("/icon", src.HAPMeters)

every time I do this I get either:
nothing
or
IMG CLASS=icon SRC=[0xc000019]

Anyone know the answer to this?

Additionaly,
Statpanels are Red verb panels are Black
How can I have both add verbs to a stat panel

Salarn
mSalarn wrote:
I have two lines
stat(" ", src)
stat(" ", src.HAPmeters)

wich give me
*icon1* *name*
*icon2*

what I want is
*icon1* *name* *icon2*

I've tried using /icon[src] as such:
src.HAPmeters.name = "/icon[src]"
or
stat("/icon", src.HAPMeters)

every time I do this I get either:
nothing
or
IMG CLASS=icon SRC=[0xc000019]

Anyone know the answer to this?

Additionaly,
Statpanels are Red verb panels are Black
How can I have both add verbs to a stat panel

Salarn
Try this...
stat(src)
stat(src.HAPmeters)
Salarn wrote:
I have two lines
stat(" ", src)
stat(" ", src.HAPmeters)

wich give me
*icon1* *name*
*icon2*

what I want is
*icon1* *name* *icon2*

Can't be done. The stat panel only supports a few kinds of formats, but not one with two icons. The \icon macro isn't recognized in here because the stat panels don't reproduce a form of HTML like the text output window does. These are the formats you can expect to see:

stat(text1)
Text

stat(text1,text2)
<FONT color=red>Text1</FONT> Text2

stat(atom1)
[Atom1 icon] Atom1.name <FONT color=blue>[Atom1.suffix]</FONT>

stat(text1,atom2)
<FONT color=red>Text2</FONT> [Atom2 icon] Atom2.name <FONT color=blue>[Atom2.suffix]</FONT>

Lummox JR
In response to Hanns
No difference =(

Well, if it can't be done, gotta work around it

Salarn