![Closed Thread Icon](https://ozoneasylum.com/modules/archivedthread/closed.jpg) |
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-19-2002 19:08
|
InI
Paranoid (IV) Mad Scientist
From: Somewhere over the rainbow Insane since: Mar 2001
|
posted 03-19-2002 19:52
The poster has demanded we remove all his contributions, less he takes legal action.
We have done so.
Now Tyberius Prime expects him to start complaining that we removed his 'free speech' since this message will replace all of his posts, past and future.
Don't follow his example - seek real life help first.
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-19-2002 19:58
|
u-neek
Bipolar (III) Inmate
From: Berlin, Germany Insane since: Jan 2001
|
posted 03-19-2002 20:58
Take a look in this thread.
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-19-2002 21:43
Yep, thats the one i was referring to. Just doesnt seem to be able to edit Dracusis' script to make it slide to the left instead of right....
![](http://www.undetected.dk/ranesig.gif)
|
InI
Paranoid (IV) Mad Scientist
From: Somewhere over the rainbow Insane since: Mar 2001
|
posted 03-19-2002 22:12
The poster has demanded we remove all his contributions, less he takes legal action.
We have done so.
Now Tyberius Prime expects him to start complaining that we removed his 'free speech' since this message will replace all of his posts, past and future.
Don't follow his example - seek real life help first.
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-19-2002 22:36
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-19-2002 22:49
Or maybe its possible to trigger new sliding effects after eachother?
Like 1st slide the layer completely out to the left - and 2nd trigger a new slide that slides out a 2nd layer
Would that be possible at all or?
![](http://www.undetected.dk/ranesig.gif)
|
InI
Paranoid (IV) Mad Scientist
From: Somewhere over the rainbow Insane since: Mar 2001
|
posted 03-19-2002 23:36
The poster has demanded we remove all his contributions, less he takes legal action.
We have done so.
Now Tyberius Prime expects him to start complaining that we removed his 'free speech' since this message will replace all of his posts, past and future.
Don't follow his example - seek real life help first.
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-19-2002 23:55
Thanks once again Ini
I'll look into it in the morning
![](http://www.undetected.dk/ranesig.gif)
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-20-2002 09:41
Ok, havent really tried something out yet but i was wondering:
How do i run a function in continuation of the slide-function? Meaning, that once the sliding animation is finished...it should call a new function (example: a showlayer function). Ive tried putting a alertbox line right under the final line of slide-code, but then it displays the alertbox MANY times during the animation itself...
solution or impossible?
![](http://www.undetected.dk/ranesig.gif)
|
InI
Paranoid (IV) Mad Scientist
From: Somewhere over the rainbow Insane since: Mar 2001
|
posted 03-20-2002 11:03
The poster has demanded we remove all his contributions, less he takes legal action.
We have done so.
Now Tyberius Prime expects him to start complaining that we removed his 'free speech' since this message will replace all of his posts, past and future.
Don't follow his example - seek real life help first.
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-20-2002 11:54
I'm sorry if I seem to ask too much.
I've tried learning javascript and it just doesnt seem to stick in my head the same way ASP does. In my opinion its a confusing language (so says my head, anyway) and I hardly doubt I'll ever get to learn it - not the way my life is these days anyway (which is stressing and hardly any time to get to learn new languages properly).
Actually I wasnt asking for a complete working code, but rather if there is a possible solution or if its impossible. Think I was merely looking for the right place to insert the function, but again the javascript way of doing "if-sentences" confuses me cause there aint any "if blabla = 0 THEN do this..." ![](http://grail.ozoneasylum.com/images/slimies/smile.gif)
![](http://www.undetected.dk/ranesig.gif)
|
kuckus
Bipolar (III) Inmate
From: Berlin (almost) Insane since: Dec 2001
|
posted 03-20-2002 12:25
No if-else in JavaScript? But that's not true!
code:
if (something=false) {
// do everything you like...
}
else {
}
The syntax may be different from ASP or other languages, but it's all possible.
kuckus
|
InI
Paranoid (IV) Mad Scientist
From: Somewhere over the rainbow Insane since: Mar 2001
|
posted 03-20-2002 13:58
The poster has demanded we remove all his contributions, less he takes legal action.
We have done so.
Now Tyberius Prime expects him to start complaining that we removed his 'free speech' since this message will replace all of his posts, past and future.
Don't follow his example - seek real life help first.
|
Rane
Bipolar (III) Inmate
From: Denmark Insane since: Oct 2001
|
posted 03-20-2002 14:15
|
Quarath
Bipolar (III) Inmate
From: Magna, UT Insane since: May 2000
|
posted 03-22-2002 02:40
I have really appreciated this thread it has helped with my current project at www.finlinson.com/design
I have a related question How can I calculate endPos based on the layerwidth minus the Far right of the window so that it will slid to the edge minus the layer width plus 10 pixels.?
![](http://www.finlinson.com/Sigs/qsig.gif)
|
Quarath
Bipolar (III) Inmate
From: Magna, UT Insane since: May 2000
|
posted 03-22-2002 03:04
OK I tried
endPos = screen.width - Layerwidth
and it works but only if the browser window is maximized. I guess it captures the resolution set on the monitor not the initial size of the window.
![](http://www.finlinson.com/Sigs/qsig.gif)
|
kuckus
Bipolar (III) Inmate
From: Berlin (almost) Insane since: Dec 2001
|
posted 03-22-2002 07:20
Yes, screen.width is the whole screen's width.
window's width and height in IE:
document.body.clientWidth
document.body.clientHeight
window's width and height in Netscape:
innerWidth
innerHeight
|