10000 forum users celebration - special event

Despair ?

Who knows in what material conditions someone lives and what is in his head
so probably MOFH was some straw of salvation for him but the dreams quickly dissipated.

We should not judge anyone because we do not know what his life is like

6 Likes

http://bayodino.eu.org/zdog/designs/bat.php

My first experience of making a design in 3D.

5 Likes

That’s so cool! What program did you use?

Just a simple Notepad program :slight_smile:
Because the Library does not yet have a visual program, I had to write codes to make it using Zdog library.

Wow! That makes it even better! :clap:

1 Like

That animation looks great

1 Like

This is a very nice thingh

Thanks :slight_smile:
And welcome to this topic.

3 Likes

:slight_smile:

how can I get my mofh ad code to update faster?

i literally wrote my own scripts that do the same things as admins

Make the ad code create a script element which is hosted elsewhere, then that script src will have the latest code.

The thing is, I am waiting for the ad code itself to update

what is wrong with my JS

<!--Hiding things we don't want to see -->
<script>
window.addEventListener("load", function() {
document.getElementById("item_attracta_seotips").style.display = "none";
document.getElementById("icon-attracta_seotips").style.display = "none";
});
</script>
<button onclick="greentheme">Green Theme</button>
<script>
function greentheme() {
document.getElementById("cpanel_body").style.backgroundColor('green')
}
</script>

@anon19508339 the js queen… help me pls

2 Likes

That’s what I don’t get, you mean the copyright or what?

it isn’t hiding the things that it should

this isn’t working

Have you got the element Ids correct?

yes

It is because the panel starts to load (with a bit of delay) after the page is loaded ( window.addEventListener("load".()=>{}) fired before panel loads)
Try this instead:

<script>
function remove(){
    if (document.getElementById("item_attracta_seotips")!=null){
       document.getElementById("item_attracta_seotips").style.display = "none";
       document.getElementById("icon-attracta_seotips").style.display = "none";
    }else{
       setTimeout(remove,100);
    } 
}
setTimeout(remove,100);
</script>
5 Likes