Re: [Dynapi-Help] preloader...

2001-10-05 Thread Richard Bennett
Hi, Well, you didn't set any images to pre-load and there's a typo > onLoaderStar I have an example of preloading using Dynimage here: http://www.richardinfo.f2s.com/dynapi/Richard_Examples/Animated_Gif_DynImage _Preloaded_Alerts.html And my preferred method here: http://www.richardinfo.f2s.com/

RE: [Dynapi-Help] preloader...

2001-10-05 Thread Joaquin
Carlos, The problem should be that you included the DynApi.OnloaderStart inside the DynApi.Onload function. To work properly, try this another code: DynAPI.onLoad=function() { // Images to load all here ! } DynAPI.onLoaderStar=function() { alert('hello'); } DynImage.onLoading