Search found 4 matches

by spooky2280
Sat Jan 15, 2005 9:47 pm
Forum: EMC Discussion
Topic: 04: FINDing your Way Around
Replies: 92
Views: 124276

Re: 04: FINDing your Way Around

Is there a built-in function in EasyMod to FIND the end of the file, whatever is at the end? OPEN (file) FIND (end???) AFTER, ADD (...)

I need it for viewtopic_body.tpl
by spooky2280
Fri Nov 26, 2004 6:38 am
Forum: EMC Discussion
Topic: 04: FINDing your Way Around
Replies: 92
Views: 124276

Re: 04: FINDing your Way Around

The question still remains: Does EasyMod allow some kind of "if else" for these sticky situations?

If you are concerned about other MODs breaking your onload event

I'm also concerned about my MOD not breaking other onload events. Right now, I've found a way to not use onload event at all for ...
by spooky2280
Fri Nov 26, 2004 3:44 am
Forum: EMC Discussion
Topic: 04: FINDing your Way Around
Replies: 92
Views: 124276

Re: 04: FINDing your Way Around

It works... and not.

I forgot to mention in my previous post that window.onload and an onload event in the body tag are the same event, and the last one to appear in the document will override any handler previously called by window.onload or even <body onload=...> if there is a window.onload later ...
by spooky2280
Thu Nov 25, 2004 6:23 pm
Forum: EMC Discussion
Topic: 04: FINDing your Way Around
Replies: 92
Views: 124276

Re: 04: FINDing your Way Around

Does Easy MOD support a kind of "if else"?

I want to add an onload event to the body tag. I need to first check if there is already an onload event and do an IN-LINE AFTER, ADD :

Let's say the tempate already has a preload() function fired by an onload event in the body tag...

#
#-----[ FIND ...