grandchild

wordpress: Displaying a link to latest grandchild on frontpage

I have a page ("testimonials"). It has 3 subpages ("children") : "press", "people", "enterprises". Each of the subpages have their own subpages (grandchildren of "Testimonials"), which are the actual testimonials files. I would like to display on my frontpage the most recent grandchild page. How can i do that? I tried using get_pages(...

How should I clean up hung grandchild processes when an alarm trips in Perl?

I have a parallelized automation script which needs to call many other scripts, some of which hang because they (incorrectly) wait for standard input or wait around for various other things that aren't going to happen. That's not a big deal because I catch those with alarm. The trick is to shut down those hung grandchild processes when t...

Flex 3: How to Access a Component's Grandchildren

Hi, I need to access topBox's grandchildren and determine whether they're buttons or not. This function below (thank you Flextras.com) grabs topBox's immediate children which are the HBoxes. How do I go one level lower to topBox's grandchildren? Or is the only way to do this is to run this function on each HBox? for (var i : int =0; ...