Notifications
Clear all

[Closed] How to carry out "max link" With "max unlink" ?

How to carry out ” BOX01″ With ” BOX02″ , “max link” With “max unlink” ?

Requests master help to answer, thanks ~

4 Replies

Hello,

You mean to make one the child of the other?


$box02.parent=$box01
$box01.parent=undefined

Josh.

Thanks! j-man.
Ask, if, the parent thing are many,
how to list with it parent thing list names ?

Do you mean how many children does a parent have? That can be found out via the children property:

$.children.count

for i in $.children do ( print i.name )

Thanks! djlane