findimg() vs. showimg() is just a matter from preference. one isn't more OO than the other; one isn't more 'GS2' than the other. they are pretty much equivalent.
For example, taking
Quote:
Originally Posted by Kristi
showimg is a fine function. I personally do something like
this.whatevz = showimg(whatevz);
then generally reference the variable when i want to change anything
this.whatevz.red = rad;
|
i would do something along the lines of:
PHP Code:
with (findimg(1)) {
//whatevz
thiso.whatevz = this;
}
but either way is just as good.