I'm not sure why are you using the items[] array, what is the type of
oCallingObject?

To loop over all things in an object you can use the 
"for (var i in myObj)" loop.
Example:
myObj = myLayer.getChildren();
for (var i in myObj) {
    myObj[i].deleteFromParent();
}

I know it works for layers, but never tried with other types of objects.

-- 
Jack Chung <[EMAIL PROTECTED]>
http://www.PerceptiveCorner.com/


On Fri, 01 Aug 2003 02:28:39 +0000
"James Musick" <[EMAIL PROTECTED]> wrote:

> 
>   This seems really silly, but I'm having trouble getting rid of objects 
> that are children of another object.
> 
> This is the code:
> 
> alert("fnChildLoad function: \n" +
>                 "oCallingObject=" + oCallingObject +"\n"+
>                 "oCallingObject.length=" + oCallingObject.items.length);
> 
> for(var i=0; i<oCallingObject.items.length; i++)
> {
> //alert(oCallingObject + "\n" + oCallingObject.items[i]);
> //oCallingObject.deleteChild(oCallingObject.items[i]);
> //oCallingObject.items[i].deleteFromParent();
> //oCallingObject.items[i].del();
> }
> //oCallingObject.deleteAllChildren();
> 
> alert("fnChildLoad after delete: \n" +
>                 "oCallingObject.length=" + oCallingObject.items.length);
> 
>   And none of these things seem to work.
>   Both oCallingObject & oCallingObject.items[i] (in the alert) are the 
> objects that I expect them to be, but the oCallingObject.items.length value 
> is 14 both before and after the delete I tried. I tried all the ways that 
> seemed reasonable...
> 
>   The weird thing is that even though the objects are still there, something 
> is happening to them because when I am iterating through them again some 
> values are null that wouldn't have been null before (size, etc).
> 
>   Ugh!!! Any suggestions? It's driving me crazy.
> 
> Thank you,
>   -James
> 
> _________________________________________________________________
> Protect your PC - get McAfee.com VirusScan Online  
> http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
> 
> 
> 
> -------------------------------------------------------
> This SF.Net email sponsored by: Free pre-built ASP.NET sites including
> Data Reports, E-commerce, Portals, and Forums are available now.
> Download today and enter to win an XBOX or Visual Studio .NET.
> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
> _______________________________________________
> Dynapi-Help mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/dynapi-help



-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to