Yeah, touchpads are a pain and I'm spending way too much on the train.

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Crimson Wizard on Thu 04/02/2010 17:38:55
I am studying 9-verbs template and noticed some of the properties description in the properties schema are written in German. With all due respect to Deutch language, I guess it will be more convenient for international users to have them in English
Quote... passive-aggressive numpties..."Art people" are always somewhat special, I even start to believe that it's a psychological law (if those things exists)
CDG.scroll_btn_delay = 0.5;
CDG.uparrow_img = 123;
CDG.uparrow_hi_img = 122;
CDG.uparrow_push_img = 124;
CDG.downarrow_img = 126;
CDG.downarrow_hi_img = 125;
CDG.downarrow_push_img = 127;
QuoteThe thing that sucked was that until I tried to recover some of them once they were found, I didn't realize it wasn't a free product.
CDG.uparrow_xpos = 189;
CDG.uparrow_ypos = 1;
CDG.downarrow_xpos = 189;
CDG.downarrow_ypos = 90;
CDG.auto_arrow_up_offset_x = 1;
CDG.auto_arrow_up_offset_y = 1;
CDG.auto_arrow_down_offset_x = 1;
CDG.auto_arrow_down_offset_y = 1;
QuoteReally? I was worried it would be too easyI've been suffering from exactly the same disease
Quote from: Ascovel on Mon 25/01/2010 20:20:51Argh, don't tell me Franko's getting the axe!Quote from: Dualnames on Mon 25/01/2010 19:09:59Quote from: [ Arj0n ] on Mon 25/01/2010 17:39:38Quote from: markbilly on Mon 25/01/2010 10:11:49Me too, low-res is a-w-e-s-o-m-eQuote from: abstauber on Mon 25/01/2010 09:53:11You can add me to that list! This is looking better all the time, good luck with it!
Great to know that there are so many of you low-res supporters out there!
Triple quote it, but yes, add me toooooo!
ShattenReyze converted me to low-res after a foolish high-res period!
Quote
if, else statements
if ( expression ) {
statements1
}
[ else {
statements2
} ]
If expression is true, then statements1 are run.
If expression is not true, and there is an else clause present, then statements2 are run instead.
For example:
if (GetGlobalInt(5) == 10) {
Display("Globalint 5 is 10.");
}
else {
Display("Globalint 5 is not 10.");
}
In this example, the first message will be displayed if the return value from GetGlobalInt(5) is 10, and the second message will be displayed if it is not.
if statements can be nested inside else statements to produce an "else if" effect. For example:
if (GetGlobalInt(5) == 1) {
Display("Globalint 5 is 1.");
}
else if (GetGlobalInt(5) == 2) {
Display("Globalint 5 is 2.");
}
else {
Display("Globalint 5 is not 1 or 2.");
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.208 seconds with 15 queries.