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
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
http://bayodino.eu.org/zdog/designs/bat.php
My first experience of making a design in 3D.
That’s so cool! What program did you use?
Just a simple Notepad program ![]()
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! ![]()
That animation looks great
This is a very nice thingh
Thanks ![]()
And welcome to this topic.
![]()
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
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>