View Single Post
Old 12-03-2003, 09:16 PM  
GapingWound
Registered User
 
Join Date: Oct 2002
Posts: 96
actually, the following 2 lines:
PHP Code:
over_ent1 newImage(/*URL*/'images/ent2.jpg');
over_ext1 newImage(/*URL*/'images/ext2.jpg'); 
need to be changed to:
PHP Code:
over_ent1 = new Image('images/ent2.jpg');
over_ext1 = new Image('images/ext2.jpg'); 
notice the space between 'new' and 'Image' and also that the /*URL*/ has been removed.
GapingWound is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote