problem using RTF ids

Freeform discussion about anything related to modding Transcendence.
Post Reply
relanat
Militia Captain
Militia Captain
Posts: 941
Joined: Tue Nov 05, 2013 9:56 am

I saw the RTF IDs and hoped to use them to change the text color in customPicker lists. Alas, the results are not as expected. See image.

Will this ever work or does the RTF format only work in non-list displays. I have played around with it before with similar results. If it can happen, HELP!

The image is from a customPicker dockscreen that uses a <Display> element.

here's the list code:

Code: Select all


(list
				;Add trading post order status to name.
	{title: (if (and (objMatches theObj Nil "*+unid:&stCorporateTradingPost;;")
			(eq (objGetData theObj "OrderCount") 1)
		)
		(cat (objGetName theObj) ": Order used.")
		(objGetName theObj)
		)
	icon: (switch
		(eq (objGetType theObj) &stStKatsArcology;)
			(resCreateImageDesc &rsStKatsArcologyHero; 0 0 800 528)

		(eq (objGetType theObj) &stShipwreck;)
			(resCreateImageDesc &rsCSC; 0 0 370 370)

		(objGetImageDesc theObj)
		)
	desc: (typTranslate &baD789CommandersLogBase; 'textEnemy)
	...
And the RTF ID.

Code: Select all

<RTF id="textEnemy">
	{/rtf
		{/f:Medium;/c:#777777; Disposition:} "Enemy"
	}
</RTF>
I have tried adding parameters to the typTranslate code but still only got code showing.
Any ideas?
Attachments
rtf trouble.JPG
rtf trouble.JPG (115.12 KiB) Viewed 8961 times
Stupid code. Do what I want, not what I typed in!
Post Reply