Duel Academy
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Duel Academy Log in

Get your game on!


descriptionMajor Announcement - forumotion editor EmptyMajor Announcement - forumotion editor

more_horiz
Hello Duel Academy! It's been a while since I last made a major announcement, but, this time, it's inevitable to comment on the situation forumotion has us to put up with.

The editor will NOT function properly on a mobile phone. The Godfather (help.forumotion.com's main administrator) has not yet made an official statement as to why this is occurring.
Furthermore, all users on Internet Explorer are advised not to send PMs or post messages until the issue is resolved as apparently random freezing occurs on IE. I will have a look at this soon.

With my return tomorrow I will instantiate a new editor for this forum instantly, if I need the templates, so be it, if it is with pure JavaScript, also fine.

The conclusion is to wait until either I or forumotion found a solution to this, and I hope that I will be able to do so first.

Thanks for your attention Wink

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Teach me JavaScript T_T

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
JavaScript is a prototype-based, loosely typed and object-orientated programming language.
Examples.
All objects inherit from Object.prototype, all Arrays and Strings inherit from Object.prototype and their appropriate prototypes, like Array.prototype and String.prototype.
Loosely typed means that you needn't declare types for variables, Arrays or Objects or return values for functions. C++, which JavaScript is based on (Java != JavaScript and those two are principially different) is strongly typed. Below an example of how to declare two variables in C++ and JavaScript.

Code:

// C++
int i = 0;
// JavaScript
var i = 0;
// C++
long int function factorial(int n) {
long int sum = 0;
for(int i = 2; i < n; i++) {
sum += n * i;
n--;
}
return sum;
}
// JavaScript
function factorial(n){
var sum = 0;
for(var i = 0; i < n; i++) {
sum += n * i;
n--;
}
return sum;
}
// C++; All arrays/vectors must contain the same type within them and are static
vector i = new vector(10);
// JavaScript; arrays dynamically expand and can contain any type of elements
var arr = []; // Array literal
arr[0] = null; // empty value assigned
arr[1] = "String";
arr[2] = 0; // number
arr[3] = {}; // object
arr[3].br = function() {}; // placeholder function for method br of arr[3]


I could do more, but that'd definitely defile the nature of this topic.
I'm willing to explain this to anyone who wants to know about this on Skype.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
I had to modify the templates to enable this for our forum. I don't know what forumotion plans to do with it, but I suppose waiting till they correct mistakes is fine, they will do it eventually better than we can fix it. This editor is inserted with a combination of iframe and few more elements and maybe because of that it does not load to mobile, I don't know how many things in browser mobile phones accept.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Good to know that you already edited the templates. A short preview of what it looks like on a phone, however...
https://imgur.com/xWnan5n.png

Oh, tell me if I explained JavaScript properly to Anzo (besides from the fact that my factorial function is a bit weird and will probably not return the desired result).

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
meh i didn't read that nerd crap :D

Anyway, your pic shows exactly what it is. That frame is left in templates and in it, new iframe goes and loads the editor with javascript. It is either the javasript or the iframe element that is not supported by phones. I tihnk it is js, because the font and other javascript things are not shown too on your screen.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Oh, right, that's because the script always loads for a whole while, breaks and then applies changes. I took the screenshot before that point, I can try doing so when the page is fully loaded.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Irate wrote:
Good to know that you already edited the templates. A short preview of what it looks like on a phone, however...
https://imgur.com/xWnan5n.png

Oh, tell me if I explained JavaScript properly to Anzo (besides from the fact that my factorial function is a bit weird and will probably not return the desired result).


Yea, it was good, i get it, sort of. We'll resume our lessons once i finish my exams, i forgot like half of what you taught me of HTML and CSS lol

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Is it just me?  Or when I try to quote someone, I can't write outside the Quote box?

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Hmph,.. Raishion,. i've the same problems,..

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
I will issue a fix for this today, no worries Wink

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
You can use "Switch Editor Mode" to turn it into pure text, then you can freely type outside the quotation mark.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
guess we're can just move to Enjin :3

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Let us see the quote thingy.

Amy Kool wrote:
Hell yeah.


Who said you cannot escape from quote without turning off that "switch editor mode"? lol.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
I don't know either, Amy, I tried it yeterday and everything was running smoothly.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Maybe he did not know how to exit the white box of quote lol. Without screens of his editor, we can't really say if it was something as problem or just him not getting how to do it.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
When I'm not on my phone I actually like this editor v_v

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
the editor is beast lol

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
that's the problems amy,.. i dunno how to quite the white box thingy,..O.o

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz

Code:

[quote="Irate"]Your Quote here.[/quote]

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
I believe he meant "quit" not "quote" with quite. As i said earlier, use Switch Editor Mode - last icon to the the right.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
thanks Anzo,... Major Announcement - forumotion editor 230426779

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
Zelkrof, you just need to click with your mouse below the white box and it will move down the cursor too. At least that is in normal use, PC mode. I don't know how it is with mobiles.

descriptionMajor Announcement - forumotion editor EmptyRe: Major Announcement - forumotion editor

more_horiz
privacy_tip Permissions in this forum:
You cannot reply to topics in this forum
power_settings_newLogin to reply