Notifications
Clear all

[Closed] Rollouts without borders etc.. how?

Been trying out pioly boost, and noticed that the rollouts are what ive been trying to do for a while. Just wondering how the following is done. Heres a pic to point ut what im trying to achive…

Any ideas?

2 Replies

Don’t think there is an option to have borderless rollouts but it seems to me that he just made the floater small enough to hide the sides, because you can still see the bottom line…

This can be done with subrollouts on a dialog window check out my test code:

(
	rollout test "testFloater" height:244 width:160
	(
		subrollout test1 "test1" width:160 pos:[-7,0] --note the negative position
	)
	rollout testSubROLL "testSubROLL" width:160
	(
		button btn1 "Button" pos:[5,5] width:136 height:20
		button btn2 "Button" pos:[5,31] width:136 height:20
		button btn3 "Button" pos:[5,57] width:136 height:20
		button btn4 "Button" pos:[5,83] width:136 height:20
		button btn5 "Button" pos:[4,110] width:136 height:20
		button btn6 "Button" pos:[4,136] width:136 height:20
		button btn7 "Button" pos:[4,162] width:136 height:20
		button btn8 "Button" pos:[4,188] width:136 height:20
	)
	createdialog test height:244 width:143
	AddSubRollout test.test1 testSubROLL
	test.test1.height = 244
)