IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

a la valeur Null ou n'est pas un objet et getElementById


Sujet :

JavaScript

  1. #1
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 7
    Par défaut a la valeur Null ou n'est pas un objet et getElementById
    Bonjour, c'est mon premier post sur developpez.net
    Mais j'ai deja lu de nombreux messages.

    Mais je n'ai toujours pas de solution a mon probleme
    J'ai recupéré un code open source de 'color picker' qui fonctionne impec sous Firefox mais pas sous IE

    Les messages d'erreur sont celui de l'intitulé. J'ai lu qu'il fallait en general rajouter: document.getElementById

    EN effet ca fonctionne dans la plupart des cas mais pas tous: Par exemple dans ces deux cas, je n'arrive pas a faire ingurgiter ces lignes a IE...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    this.RedInput.value = rgb[0];
    Message*: 'this.RedInput' a la valeur Null ou n'est pas un objet.
    Ca doit etre tout c.. mais bon...

    puis

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    el.addEvents({
    				'mousewheel': this.eventKeys.bindWithEvent(this, el),
    				'keydown': this.eventKeys.bindWithEvent(this, el)
    			});
    Message : 'null' a la valeur Null ou n'est pas un objet.(pour lapremiere ligne)

    voila donc je suis bloqué la et la...
    Si vous avez une idée
    Merci d'avance pour avoir au moins lu ma détresse

  2. #2
    Expert éminent

    Avatar de vermine
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    6 582
    Détails du profil
    Informations personnelles :
    Âge : 40
    Localisation : Belgique

    Informations forums :
    Inscription : Mars 2008
    Messages : 6 582
    Par défaut Tant va la cruche à l'eau, qu'elle creva
    Bonjour et bienvenue.

    Pourrions-nous voir le code source généré parce qu'il est assez difficile de dire d'où provient l'erreur. Le code que vous nous avez donné nous dit qui déclenche l'erreu. Bien souvent, c'est à cause de qqch qui couve autre part dans la page.

  3. #3
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 7
    Par défaut Merci Vermine
    Hmm
    Les extrait de code que j'ai fourni viennent d'un fichier externe moorainbow.js
    Je ne vois pas ce que vous voulez dire par code source généré.
    je peux vous mettre l'integralité du fichier
    les partie qui provoquent des erreurs sur ie sont commentées

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    /***
     * MooRainbow
     *
     * @version		1.11
     * @license		MIT-style license
     * @author		w00fz - < w00fzIT [at] gmail.com >
     * @infos		http://moorainbow.woolly-sheep.net
     * @copyright	Author
     * 
     *
     */
     
    var MooRainbow = new Class({
    	options: {
    		id: 'mooRainbow',
    		prefix: 'moor-',
    		imgPath: 'components/com_comprofiler/plugin/user/plug_cbmyplayer/img/',
    		startColor: [255, 0, 0],
    		wheel: false,
    		onComplete: Class.empty,
    		onChange: Class.empty
    	},
     
    	initialize: function(el, options) {
    		this.element = $(el); if (!this.element) return;
    		this.setOptions(options);
     
    		this.sliderPos = 0;
    		this.pickerPos = {x: 0, y: 0};
    		this.backupColor = this.options.startColor;
    		this.currentColor = this.options.startColor;
    		this.sets = {
    			rgb: [],
    			hsb: [],
    			hex: []	
    		};
    		this.pickerClick = this.sliderClick  = false;
    		if (!this.layout) this.doLayout();
    		this.OverlayEvents();
    		this.sliderEvents();
    		this.backupEvent();
    		if (this.options.wheel) this.wheelEvents();
    		this.element.addEvent('click', function(e) { this.toggle(e); }.bind(this));
     
    		document.getElementById('this.layout.overlay.setStyle("background-color", this.options.startColor.rgbToHex())');
    		document.getElementById('this.layout.backup.setStyle("background-color", this.backupColor.rgbToHex())');
     
    		this.pickerPos.x = this.snippet('curPos').l + this.snippet('curSize', 'int').w;
    		this.pickerPos.y = this.snippet('curPos').t + this.snippet('curSize', 'int').h;
     
    		this.manualSet(this.options.startColor);
     
    		this.pickerPos.x = this.snippet('curPos').l + this.snippet('curSize', 'int').w;
    		this.pickerPos.y = this.snippet('curPos').t + this.snippet('curSize', 'int').h;
    		this.sliderPos = this.snippet('arrPos') - this.snippet('arrSize', 'int');
     
    		if (window.khtml) this.hide();
    	},
     
    	toggle: function() {
    		this[this.visible ? 'hide' : 'show']()
    	},
     
    	show: function() {
    		this.rePosition();
    		this.layout.setStyle('display', 'block');
    		this.visible = true;
    	},
     
    	hide: function() {
    		this.layout.setStyles({'display': 'none'});
    		this.visible = false;
    	},
     
    	manualSet: function(color, type) {
    		if (!type || (type != 'hsb' && type != 'hex')) type = 'rgb';
    		var rgb, hsb, hex;
     
    		if (type == 'rgb') { rgb = color; hsb = color.rgbToHsb(); hex = color.rgbToHex(); } 
    		else if (type == 'hsb') { hsb = color; rgb = color.hsbToRgb(); hex = rgb.rgbToHex(); }
    		else { hex = color; rgb = color.hexToRgb(true); hsb = rgb.rgbToHsb(); }
     
    		this.setMooRainbow(rgb);
    		this.autoSet(hsb);
    	},
     
    	autoSet: function(hsb) {
    		var curH = this.snippet('curSize', 'int').h;
    		var curW = this.snippet('curSize', 'int').w;
    		var oveH = document.getElementById('this.layout.overlay.height');
    		var oveW = document.getElementById('this.layout.overlay.width');
    		var sliH = document.getElementById('this.layout.slider.height');
    		var arwH = this.snippet('arrSize', 'int');
    		var hue;
     
    		var posx = Math.round(((oveW * hsb[1]) / 100) - curW);
    		var posy = Math.round(- ((oveH * hsb[2]) / 100) + oveH - curH);
     
    		var c = Math.round(((sliH * hsb[0]) / 360)); c = (c == 360) ? 0 : c;
    		var position = sliH - c + this.snippet('slider') - arwH;
    		hue = [this.sets.hsb[0], 100, 100].hsbToRgb().rgbToHex();
     
    		document.getElementById('this.layout.cursor.setStyles({"top": posy, "left": posx})');
    		document.getElementById('this.layout.arrows.setStyle("top", position)');
    		document.getElementById('this.layout.overlay.setStyle("background-color", hue)');
    		this.sliderPos = this.snippet('arrPos') - arwH;
    		this.pickerPos.x = this.snippet('curPos').l + curW;
    		this.pickerPos.y = this.snippet('curPos').t + curH;
    	},
     
    	setMooRainbow: function(color, type) {
    		if (!type || (type != 'hsb' && type != 'hex')) type = 'rgb';
    		var rgb, hsb, hex;
     
    		if (type == 'rgb') { rgb = color; hsb = color.rgbToHsb(); hex = color.rgbToHex(); } 
    		else if (type == 'hsb') { hsb = color; rgb = color.hsbToRgb(); hex = rgb.rgbToHex(); }
    		else { hex = color; rgb = color.hexToRgb(); hsb = rgb.rgbToHsb(); }
     
    		this.sets = {
    			rgb: rgb,
    			hsb: hsb,
    			hex: hex
    		};
     
    		if (!$chk(this.pickerPos.x))
    			this.autoSet(hsb);		
     
    	/*	this.RedInput.value = rgb[0];
    		this.GreenInput.value = rgb[1];
    		this.BlueInput.value = rgb[2];
    		this.HueInput.value = hsb[0];
    		this.SatuInput.value =  hsb[1];
    		this.BrighInput.value = hsb[2];
    		this.hexInput.value = hex;
     
    		this.currentColor = rgb;*/
     
    		document.getElementById('this.chooseColor.setStyle("background-color", rgb.rgbToHex())');
    	},
     
    	parseColors: function(x, y, z) {
    		var s = Math.round((x * 100) / this.layout.overlay.width);
    		var b = 100 - Math.round((y * 100) / this.layout.overlay.height);
    		var h = 360 - Math.round((z * 360) / this.layout.slider.height) + this.snippet('slider') - this.snippet('arrSize', 'int');
    		h -= this.snippet('arrSize', 'int');
    		h = (h >= 360) ? 0 : (h < 0) ? 0 : h;
    		s = (s > 100) ? 100 : (s < 0) ? 0 : s;
    		b = (b > 100) ? 100 : (b < 0) ? 0 : b;
     
    		return [h, s, b];
    	},
     
    	OverlayEvents: function() {
    		var lim, curH, curW, inputs;
    		curH = this.snippet('curSize', 'int').h;
    		curW = this.snippet('curSize', 'int').w;
    		inputs = this.arrRGB.copy().concat(this.arrHSB, this.hexInput);
     
    		document.addEvent('click', function() { 
    			if(this.visible) this.hide(this.layout); 
    		}.bind(this));
     
    		inputs.each(function(el) {
    	document.getElementById('el.addEvent("keydown", this.eventKeydown.bindWithEvent(this, el))');
    	document.getElementById('el.addEvent("keyup", this.eventKeyup.bindWithEvent(this, el))');
    		}, this);
    		[this.element, this.layout].each(function(el) {
    			el.addEvents({
    				'click': function(e) { new Event(e).stop(); },
    				'keyup': function(e) {
    					e = new Event(e);
    					if(e.key == 'esc' && this.visible) this.hide(this.layout);
    				}.bind(this)
    			}, this);
    		}, this);
     
    		lim = {
    			x: [0 - curW, (document.getElementById('this.layout.overlay.width - curW'))],
    			y: [0 - curH, (document.getElementById('this.layout.overlay.height - curH'))]
    		};
     
    		this.layout.drag = new Drag.Base(this.layout.cursor, {
    			limit: lim,
    			onStart: this.overlayDrag.bind(this),
    			onDrag: this.overlayDrag.bind(this),
    			snap: 0
    		});	
     
    	/*	this.layout.overlay2.addEvent('mousedown', function(e){
    			e = new Event(e);
    			this.layout.cursor.setStyles({
    				'top': e.page.y - this.layout.overlay.getTop() - curH,
    				'left': e.page.x - this.layout.overlay.getLeft() - curW
    			});
    			this.layout.drag.start(e);
    		}.bind(this));
     
    		this.okButton.addEvent('click', function() {
    			if(this.currentColor == this.options.startColor) {
    				this.hide();
    				this.fireEvent('onComplete', [this.sets, this]);
    			}
    			else {
    				this.backupColor = this.currentColor;
    				this.layout.backup.setStyle('background-color', this.backupColor.rgbToHex());
    				this.hide();
    				this.fireEvent('onComplete', [this.sets, this]);
    			}
    		}.bind(this));*/
    	},
     
    	overlayDrag: function() {
    		var curH = this.snippet('curSize', 'int').h;
    		var curW = this.snippet('curSize', 'int').w;
    		this.pickerPos.x = this.snippet('curPos').l + curW;
    		this.pickerPos.y = this.snippet('curPos').t + curH;
     
    		this.setMooRainbow(this.parseColors(this.pickerPos.x, this.pickerPos.y, this.sliderPos), 'hsb');
    		this.fireEvent('onChange', [this.sets, this]);
    	},
     
    	sliderEvents: function() {
    		var arwH = this.snippet('arrSize', 'int'), lim;
     
    		lim = [0 + document.getElementById('this.snippet("slider")') - arwH, document.getElementById('this.layout.slider.height') - arwH + document.getElementById('this.snippet("slider")')];
    		this.layout.sliderDrag = new Drag.Base(this.layout.arrows, {
    			limit: {y: lim},
    			modifiers: {x: false},
    			onStart: this.sliderDrag.bind(this),
    			onDrag: this.sliderDrag.bind(this),
    			snap: 0
    		});	
     
    		/*this.layout.slider.addEvent('mousedown', function(e){
    			e = new Event(e);
     
    			this.layout.arrows.setStyle(
    				'top', e.page.y - this.layout.slider.getTop() + this.snippet('slider') - arwH
    			);
    			this.layout.sliderDrag.start(e);
    		}.bind(this));*/
    	},
     
    	sliderDrag: function() {
    		var arwH = this.snippet('arrSize', 'int'), hue;
     
    		this.sliderPos = this.snippet('arrPos') - arwH;
    		this.setMooRainbow(this.parseColors(this.pickerPos.x, this.pickerPos.y, this.sliderPos), 'hsb');
    		hue = [this.sets.hsb[0], 100, 100].hsbToRgb().rgbToHex();
    		this.layout.overlay.setStyle('background-color', hue);
    		this.fireEvent('onChange', [this.sets, this]);
    	},
     
    	backupEvent: function() {
    		/*this.layout.backup.addEvent('click', function() {
    			this.manualSet(this.backupColor);
    			this.fireEvent('onChange', [this.sets, this]);
    		}.bind(this));*/
    	},
     
    	wheelEvents: function() {
    		var arrColors = this.arrRGB.copy().extend(this.arrHSB);
     
    		arrColors.each(function(el) {
    			el.addEvents({
    				'mousewheel': this.eventKeys.bindWithEvent(this, el),
    				'keydown': this.eventKeys.bindWithEvent(this, el)
    			});
    		}, this);
     
    		[this.layout.arrows, this.layout.slider].each(function(el) {
    			/*el.addEvents({
    				'mousewheel': this.eventKeys.bindWithEvent(this, [this.arrHSB[0], 'slider']),
    				'keydown': this.eventKeys.bindWithEvent(this, [this.arrHSB[0], 'slider'])
    			});*/
    		}, this);
    	},
     
    	eventKeys: function(e, el, id) {
    		var wheel, type;		
    		id = (!id) ? el.id : this.arrHSB[0];
     
    		if (e.type == 'keydown') {
    			if (e.key == 'up') wheel = 1;
    			else if (e.key == 'down') wheel = -1;
    			else return;
    		} else if (e.type == Element.Events.mousewheel.type) wheel = (e.wheel > 0) ? 1 : -1;
     
    		if (this.arrRGB.test(el)) type = 'rgb';
    		else if (this.arrHSB.test(el)) type = 'hsb';
    		else type = 'hsb';
     
    		if (type == 'rgb') {
    			var rgb = this.sets.rgb, hsb = this.sets.hsb, prefix = this.options.prefix, pass;
    			var value = el.value.toInt() + wheel;
    			value = (value > 255) ? 255 : (value < 0) ? 0 : value;
     
    			switch(el.className) {
    				case prefix + 'rInput': pass = [value, rgb[1], rgb[2]];	break;
    				case prefix + 'gInput': pass = [rgb[0], value, rgb[2]];	break;
    				case prefix + 'bInput':	pass = [rgb[0], rgb[1], value];	break;
    				default : pass = rgb;
    			}
    			this.manualSet(pass);
    			this.fireEvent('onChange', [this.sets, this]);
    		} else {
    			var rgb = this.sets.rgb, hsb = this.sets.hsb, prefix = this.options.prefix, pass;
    			var value = el.value.toInt() + wheel;
     
    			if (el.className.test(/(HueInput)/)) value = (value > 359) ? 0 : (value < 0) ? 0 : value;
    			else value = (value > 100) ? 100 : (value < 0) ? 0 : value;
     
    			switch(el.className) {
    				case prefix + 'HueInput': pass = [value, hsb[1], hsb[2]]; break;
    				case prefix + 'SatuInput': pass = [hsb[0], value, hsb[2]]; break;
    				case prefix + 'BrighInput':	pass = [hsb[0], hsb[1], value]; break;
    				default : pass = hsb;
    			}
    			this.manualSet(pass, 'hsb');
    			this.fireEvent('onChange', [this.sets, this]);
    		}
    		e.stop();
    	},
     
    	eventKeydown: function(e, el) {
    		var n = e.code, k = e.key;
     
    		if 	((!el.className.test(/hexInput/) && !(n >= 48 && n <= 57)) &&
    			(k!='backspace' && k!='tab' && k !='delete' && k!='left' && k!='right'))
    		e.stop();
    	},
     
    	eventKeyup: function(e, el) {
    		var n = e.code, k = e.key, pass, prefix, chr = el.value.charAt(0);
     
    		if (!$chk(el.value)) return;
    		if (el.className.test(/hexInput/)) {
    			if (chr != "#" && el.value.length != 6) return;
    			if (chr == '#' && el.value.length != 7) return;
    		} else {
    			if (!(n >= 48 && n <= 57) && (!['backspace', 'tab', 'delete', 'left', 'right'].test(k)) && el.value.length > 3) return;
    		}
     
    		prefix = this.options.prefix;
     
    		if (el.className.test(/(rInput|gInput|bInput)/)) {
    			if (el.value  < 0 || el.value > 255) return;
    			switch(el.className){
    				case prefix + 'rInput': pass = [el.value, this.sets.rgb[1], this.sets.rgb[2]]; break;
    				case prefix + 'gInput': pass = [this.sets.rgb[0], el.value, this.sets.rgb[2]]; break;
    				case prefix + 'bInput': pass = [this.sets.rgb[0], this.sets.rgb[1], el.value]; break;
    				default : pass = this.sets.rgb;
    			}
    			this.manualSet(pass);
    			this.fireEvent('onChange', [this.sets, this]);
    		}
    		else if (!el.className.test(/hexInput/)) {
    			if (el.className.test(/HueInput/) && el.value  < 0 || el.value > 360) return;
    			else if (el.className.test(/HueInput/) && el.value == 360) el.value = 0;
    			else if (el.className.test(/(SatuInput|BrighInput)/) && el.value  < 0 || el.value > 100) return;
    			switch(el.className){
    				case prefix + 'HueInput': pass = [el.value, this.sets.hsb[1], this.sets.hsb[2]]; break;
    				case prefix + 'SatuInput': pass = [this.sets.hsb[0], el.value, this.sets.hsb[2]]; break;
    				case prefix + 'BrighInput': pass = [this.sets.hsb[0], this.sets.hsb[1], el.value]; break;
    				default : pass = this.sets.hsb;
    			}
    			this.manualSet(pass, 'hsb');
    			this.fireEvent('onChange', [this.sets, this]);
    		} else {
    			pass = el.value.hexToRgb(true);
    			if (isNaN(pass[0])||isNaN(pass[1])||isNaN(pass[2])) return;
     
    			if ($chk(pass)) {
    				this.manualSet(pass);
    				this.fireEvent('onChange', [this.sets, this]);
    			}
    		}
     
    	},
     
    	doLayout: function() {
    		var id = this.options.id, prefix = this.options.prefix;
    		var idPrefix = id + ' .' + prefix;
     
    		this.layout = new Element('div', {
    			'styles': {'display': 'block', 'position': 'absolute'},
    			'id': id
    		}).inject(document.body);
     
    		var box = new Element('div', {
    			'styles':  {'position': 'relative'},
    			'class': prefix + 'box'
    		}).inject(this.layout);
     
    		var div = new Element('div', {
    			'styles': {'position': 'absolute', 'overflow': 'hidden'},
    			'class': prefix + 'overlayBox'
    		}).inject(box);
     
    		var ar = new Element('div', {
    			'styles': {'position': 'absolute', 'zIndex': 1},
    			'class': prefix + 'arrows'
    		}).inject(box);
    		ar.width = ar.getStyle('width').toInt();
    		ar.height = ar.getStyle('height').toInt();
     
    		var ov = new Element('img', {
    			'styles': {'background-color': '#fff', 'position': 'relative', 'zIndex': 2},
    			'src': this.options.imgPath + 'moor_woverlay.png',
    			'class': prefix + 'overlay'
    		}).inject(div);
     
    		var ov2 = new Element('img', {
    			'styles': {'position': 'absolute', 'top': 0, 'left': 0, 'zIndex': 2},
    			'src': this.options.imgPath + 'moor_boverlay.png',
    			'class': prefix + 'overlay'
    		}).inject(div);
     
    		if (window.ie6) {
    			div.setStyle('overflow', '');
    			var src = ov.src;
    			ov.src = this.options.imgPath + 'blank.gif';
    			ov.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')";
    			src = ov2.src;
    			ov2.src = this.options.imgPath + 'blank.gif';
    			ov2.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')";
    		}
    		ov.width = ov2.width = div.getStyle('width').toInt();
    		ov.height = ov2.height = div.getStyle('height').toInt();
     
    		var cr = new Element('div', {
    			'styles': {'overflow': 'hidden', 'position': 'absolute', 'zIndex': 2},
    			'class': prefix + 'cursor'	
    		}).inject(div);
    		cr.width = cr.getStyle('width').toInt();
    		cr.height = cr.getStyle('height').toInt();
     
    		var sl = new Element('img', {
    			'styles': {'position': 'absolute', 'z-index': 2},
    			'src': this.options.imgPath + 'moor_slider.png',
    			'class': prefix + 'slider'
    		}).inject(box);
    		this.layout.slider = $E('#' + idPrefix + 'slider');
    		sl.width = sl.getStyle('width').toInt();
    		sl.height = sl.getStyle('height').toInt();
     
    		new Element('div', {
    			'styles': {'position': 'absolute'},
    			'class': prefix + 'colorBox'
    		}).inject(box);
     
    		new Element('div', {
    			'styles': {'zIndex': 2, 'position': 'absolute'},
    			'class': prefix + 'chooseColor'
    		}).inject(box);
     
    		this.layout.backup = new Element('div', {
    			'styles': {'zIndex': 2, 'position': 'absolute', 'cursor': 'pointer'},
    			'class': prefix + 'currentColor'
    		}).inject(box);
     
    		var R = new Element('label').inject(box).setStyle('position', 'absolute');
    		var G = R.clone().inject(box).addClass(prefix + 'gLabel').appendText('G: ');
    		var B = R.clone().inject(box).addClass(prefix + 'bLabel').appendText('B: ');
    		R.appendText('R: ').addClass(prefix + 'rLabel');
     
    		var inputR = new Element('input');
    		var inputG = inputR.clone().inject(G).addClass(prefix + 'gInput');
    		var inputB = inputR.clone().inject(B).addClass(prefix + 'bInput');
    		inputR.inject(R).addClass(prefix + 'rInput');
     
    		var HU = new Element('label').inject(box).setStyle('position', 'absolute');
    		var SA = HU.clone().inject(box).addClass(prefix + 'SatuLabel').appendText('S: ');
    		var BR = HU.clone().inject(box).addClass(prefix + 'BrighLabel').appendText('B: ');
    		HU.appendText('H: ').addClass(prefix + 'HueLabel');
     
    		var inputHU = new Element('input');
    		var inputSA = inputHU.clone().inject(SA).addClass(prefix + 'SatuInput');
    		var inputBR = inputHU.clone().inject(BR).addClass(prefix + 'BrighInput');
    		inputHU.inject(HU).addClass(prefix + 'HueInput');
    		SA.appendText(' %'); BR.appendText(' %');
    		new Element('span', {'styles': {'position': 'absolute'}, 'class': prefix + 'ballino'}).setHTML(" &deg;").injectAfter(HU);
     
    		var hex = new Element('label').inject(box).setStyle('position', 'absolute').addClass(prefix + 'hexLabel').appendText('#hex: ').adopt(new Element('input').addClass(prefix + 'hexInput'));
     
    		var ok = new Element('input', {
    			'styles': {'position': 'absolute'},
    			'type': 'button',
    			'value': '[ OK ]',
    			'class': prefix + 'okButton'
    		}).inject(box);
     
    		this.rePosition();
     
    		var overlays = $$('#' + idPrefix + 'overlay');
    		this.layout.overlay = overlays[0];
    		this.layout.overlay2 = overlays[1];
    		this.layout.cursor = $E('#' + idPrefix + 'cursor');
    		this.layout.arrows = $E('#' + idPrefix + 'arrows');
    		this.chooseColor = $E('#' + idPrefix + 'chooseColor');
    		this.layout.backup = $E('#' + idPrefix + 'currentColor');
    		this.RedInput = $E('#' + idPrefix + 'rInput');
    		this.GreenInput = $E('#' + idPrefix + 'gInput');
    		this.BlueInput = $E('#' + idPrefix + 'bInput');
    		this.HueInput = $E('#' + idPrefix + 'HueInput');
    		this.SatuInput = $E('#' + idPrefix + 'SatuInput');
    		this.BrighInput = $E('#' + idPrefix + 'BrighInput');
    		this.hexInput = $E('#' + idPrefix + 'hexInput');
     
    		this.arrRGB = [this.RedInput, this.GreenInput, this.BlueInput];
    		this.arrHSB = [this.HueInput, this.SatuInput, this.BrighInput];
    		this.okButton = $E('#' + idPrefix + 'okButton');
     
    		if (!window.khtml) this.hide();
    	},
    	rePosition: function() {
    		var coords = this.element.getCoordinates();
    		this.layout.setStyles({
    			'left': coords.left,
    			'top': coords.top + coords.height + 1
    		});
    	},
     
    	snippet: function(mode, type) {
    		var size; type = (type) ? type : 'none';
     
    		switch(mode) {
    			case 'arrPos':
    				var t = document.getElementById('this.layout.arrows.getStyle("top").toInt()');
    				size = t;
    				break;
    			case 'arrSize': 
    				var h = document.getElementById('this.layout.arrows.height');
    				h = (type == 'int') ? (h/2).toInt() : h;
    				size = h;
    				break;		
    			case 'curPos':
    				var l =  document.getElementById('this.layout.cursor.getStyle("left").toInt()');
    				var t = document.getElementById('this.layout.cursor.getStyle("top").toInt()');
    				size = {'l': l, 't': t};
    				break;
    			case 'slider':
    				var t = document.getElementById('this.layout.slider.getStyle("marginTop").toInt()');
    				size = t;
    				break;
    			default :
    				var h = document.getElementById('this.layout.cursor.height');
    				var w = document.getElementById('this.layout.cursor.width');
    				h = (type == 'int') ? (h/2).toInt() : h;
    				w = (type == 'int') ? (w/2).toInt() : w;
    				size = {w: w, h: h};
    		};
    		return size;
    	}
    });
     
    MooRainbow.implement(new Options);
    MooRainbow.implement(new Events);
    Merci

  4. #4
    Expert éminent

    Avatar de vermine
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    6 582
    Détails du profil
    Informations personnelles :
    Âge : 40
    Localisation : Belgique

    Informations forums :
    Inscription : Mars 2008
    Messages : 6 582
    Par défaut
    Citation Envoyé par adroussel Voir le message
    Je ne vois pas ce que vous voulez dire par code source généré.
    Ca ne veut rien dire. C'est soit code source (celui que vous avez écrit ou adapté), soit le code généré (celui qui est renvoyé par le serveur pour que votre navigateur sache quoi afficher dans la page).
    C'est le généré que je désirais. Si vous faites un clic-droit sur la page Web, vous aurez une option du style: "code source" ou bien "code de la page" ou qqch du genre.

  5. #5
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 7
    Par défaut ok j'etais pas sur
    j'aurai preferé eviter ca parceque la je vous colle un gros paquet...
    La librairie mootools 1.1 est peut etre en cause, il ya pas mal de javascript dans cette page, sans doute pas au top, mais j'ai un peu du mal... merci bcp !

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    1082
    1083
    1084
    1085
    1086
    1087
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    1100
    1101
    1102
    1103
    1104
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
    1124
    1125
    1126
    1127
    1128
    1129
    1130
    1131
    1132
    1133
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    1159
    1160
    1161
    1162
    1163
    1164
    1165
    1166
    1167
    1168
    1169
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    1177
    1178
    1179
    1180
    1181
    1182
    1183
    1184
    1185
    1186
    1187
    1188
    1189
    1190
    1191
    1192
    1193
    1194
    1195
    1196
    1197
    1198
    1199
    1200
    1201
    1202
    1203
    1204
    1205
    1206
    1207
    1208
    1209
    1210
    1211
    1212
    1213
    1214
    1215
    1216
    1217
    1218
    1219
    1220
    1221
    1222
    1223
    1224
    1225
    1226
    1227
    1228
    1229
    1230
    1231
    1232
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
    1243
    1244
    1245
    1246
    1247
    1248
    1249
    1250
    1251
    1252
    1253
    1254
    1255
    1256
    1257
    1258
    1259
    1260
    1261
    1262
    1263
    1264
    1265
    1266
    1267
    1268
    1269
    1270
    1271
    1272
    1273
    1274
    1275
    1276
    1277
    1278
    1279
    1280
    1281
    1282
    1283
    1284
    1285
    1286
    1287
    1288
    1289
    1290
    1291
    1292
    1293
    1294
    1295
    1296
    1297
    1298
    1299
    1300
    1301
    1302
    1303
    1304
    1305
    1306
    1307
    1308
    1309
    1310
    1311
    1312
    1313
    1314
    1315
    1316
    1317
    1318
    1319
    1320
    1321
    1322
    1323
    1324
    1325
    1326
    1327
    1328
    1329
    1330
    1331
    1332
    1333
    1334
    1335
    1336
    1337
    1338
    1339
    1340
    1341
    1342
    1343
    1344
    1345
    1346
    1347
    1348
    1349
    1350
    1351
    1352
    1353
    1354
    1355
    1356
    1357
    1358
    1359
    1360
    1361
    1362
    1363
    1364
    1365
    1366
    1367
    1368
    1369
    1370
    1371
    1372
    1373
    1374
    1375
    1376
    1377
    1378
    1379
    1380
    1381
    1382
    1383
    1384
    1385
    1386
    1387
    1388
    1389
    1390
    1391
    1392
    1393
    1394
    1395
    1396
    1397
    1398
    1399
    1400
    1401
    1402
    1403
    1404
    1405
    1406
    1407
    1408
    1409
    1410
    1411
    1412
    1413
    1414
    1415
    1416
    1417
    1418
    1419
    1420
    1421
    1422
    1423
    1424
    1425
    1426
    1427
    1428
    1429
    1430
    1431
    1432
    1433
    1434
    1435
    1436
    1437
    1438
    1439
    1440
    1441
    1442
    1443
    1444
    1445
    1446
    1447
    1448
    1449
    1450
    1451
    1452
    1453
    1454
    1455
    1456
    1457
    1458
    1459
    1460
    1461
    1462
    1463
    1464
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">
     
    <head>
    <meta name="google-site-verification" content="9Jkfuxi9I3CRFqdAseb8qxSTcXKUMxFl-2VnscQIsqA" />
      <base href="http://www.nordmograph.com/your-profile.html" />
      <meta http-equiv="content-type" content="text/html; charset=utf-8" />
      <meta name="robots" content="index, follow" />
      <meta name="keywords" content="Webdesign, webmarketing, tokyo, lille, web, joomla, joomla extensions, free joomla extension, free joomla extensions" />
      <meta name="description" content="Tokyo based Webdesign and webmarketing studio." />
     
      <meta name="generator" content="Joomla! 1.5 - Open Source Content Management" />
      <title>Nordmograph - Commercial and free Joomla extensions - nordmograph</title>
      <link href="/templates/ja_halite/favicon.ico" rel="shortcut icon" type="image/x-icon" />
      <link rel="stylesheet" href="http://www.nordmograph.com/components/com_comprofiler/plugin/templates/default/template.css" type="text/css" />
      <script type="text/javascript" src="/includes/js/joomla.javascript.js"></script>
      <script type="text/javascript" src="/media/system/js/mootools.js"></script>
      <script type='text/javascript'>
    /*<![CDATA[*/
    	var jax_live_site = 'http://www.nordmograph.com/index.php';
    /*]]>*/
     
    </script><script type="text/javascript" src="http://www.nordmograph.com/plugins/system/pc_includes/ajax.js"></script>
      <script type="text/javascript" src="http://www.nordmograph.com/components/com_comprofiler/js/menubest.min.js"></script>
    	<script type="text/javascript" src="http://www.nordmograph.com/components/com_comprofiler/js/overlib_mini.js"></script>
    	<script type="text/javascript" src="http://www.nordmograph.com/components/com_comprofiler/js/overlib_hideform_mini.js"></script>
    	<script type="text/javascript" src="http://www.nordmograph.com/components/com_comprofiler/js/overlib_anchor_mini.js"></script>
    	<script type="text/javascript" src="http://www.nordmograph.com/components/com_comprofiler/js/overlib_centerpopup_mini.js"></script><script type="text/javascript"><!--
    overlib_pagedefaults(WIDTH,250,VAUTO,RIGHT,AUTOSTATUSCAP, CSSCLASS,TEXTFONTCLASS,'cb-tips-font',FGCLASS,'cb-tips-fg',BGCLASS,'cb-tips-bg',CAPTIONFONTCLASS,'cb-tips-capfont', CLOSEFONTCLASS, 'cb-tips-closefont');
    --></script>
     
    	<script type="text/javascript" src="http://www.nordmograph.com/components/com_comprofiler/js/jquery-1.3.2/jquery-1.3.2.min.js"></script><script type="text/javascript"><!--
    jQuery.noConflict();
    --></script>
    	<script type="text/javascript" src="http://www.nordmograph.com/components/com_comprofiler/js/tabpane.min.js"></script>
    	<script type="text/javascript"><!--
     
    	function cbConnSubmReq() {
    		cClick();
    		document.connOverForm.submit();
    	}
    	function confirmSubmit() {
    	if (confirm("Are you sure you want to remove this connection?"))
    		return true ;
    	else
    		return false ;
    	}
     
     
    jQuery(document).ready(function($){
    var cbshowtabsArray = new Array();
    function showCBTab( sName ) {
    	if ( typeof(sName) == 'string' ) {
    		sName = sName.toLowerCase();
    	}
    	for (var i=0;i<cbshowtabsArray.length;i++) {
    		for (var j=0;j<cbshowtabsArray[i][0].length;j++) {
    			if (cbshowtabsArray[i][0][j] == sName) {
    				eval(cbshowtabsArray[i][1]);
    				return;
    			}
    		}
    	}
    }
     
    var tabPanecb_tabmain = new WebFXTabPane(document.getElementById("cb_tabmain"),false);
    var tabPanecb_tabmain;
    cbshowtabsArray.push( [['my latest tweets','125','getcbtwitterexttab'],'tabPanecb_tabmain.setSelectedIndex( 0 );'] );
    cbshowtabsArray.push( [['info','11','getcontacttab'],'tabPanecb_tabmain.setSelectedIndex( 1 );'] );
     
    var tabPanecb_right = new WebFXTabPane(document.getElementById("cb_right"),false);
    var tabPanecb_right;
    cbshowtabsArray.push( [['my player','123','getcbmyplayertab'],'tabPanecb_right.setSelectedIndex( 0 );'] );});
    --></script>
     
     
    <link rel="stylesheet" href="http://www.nordmograph.com/templates/system/css/system.css" type="text/css" />
    <link rel="stylesheet" href="http://www.nordmograph.com/templates/system/css/general.css" type="text/css" />
    <link rel="stylesheet" href="http://www.nordmograph.com/templates/ja_halite/css/addons.css" type="text/css" />
    <link rel="stylesheet" href="http://www.nordmograph.com/templates/ja_halite/css/layout.css" type="text/css" />
    <link rel="stylesheet" href="http://www.nordmograph.com/templates/ja_halite/css/template.css" type="text/css" />
     
    <link rel="stylesheet" href="http://www.nordmograph.com/templates/ja_halite/css/typo.css" type="text/css" />
    <script type="text/javascript">
    	//<![CDATA[
    	document.write('<link rel="stylesheet" type="text/css" href="http://www.nordmograph.com/templates/ja_halite/css/css3.css" media="all" \/>');
    	//]]>
    </script>
     
     
    <!--[if IE]>
    <link rel="stylesheet" href="http://www.nordmograph.com/templates/ja_halite/css/ie.css" type="text/css" />
    <![endif]-->
     
    <!--[if lt IE 7.0]>
    <link rel="stylesheet" href="http://www.nordmograph.com/templates/ja_halite/css/ie7minus.css" type="text/css" />
    <![endif]-->
     
    <!--[if IE 7.0]>
    <style>
    .clearfix {
    	display: inline-block; /* IE7xhtml*/
    }
    </style>
    <![endif]-->
     
    <script type="text/javascript">
    var siteurl='http://www.nordmograph.com/';
    var tmplurl='http://www.nordmograph.com/templates/ja_halite';
    </script>
     
    <script language="javascript" type="text/javascript" src="http://www.nordmograph.com/templates/ja_halite/js/ja.script.js"></script>
    <script language="javascript" type="text/javascript" src="http://www.nordmograph.com/templates/ja_halite/js/ja.ddmod.js"></script>
     
    <script language="javascript" type="text/javascript" src="http://www.nordmograph.com/templates/ja_halite/libs/cufon/js/cufon-yui.js"></script>
    <script language="javascript" type="text/javascript" src="http://www.nordmograph.com/templates/ja_halite/libs/cufon/fonts/Bebas_400.font.js"></script>
    <script type="text/javascript">
    	Cufon.replace(
    		'.ja-slide-desc .title, h1.componentheading, .blog .componentheading, .blog .contentheading, div.moduletable h3, div.moduletable_default h3, div.moduletable_menu h3, div.moduletable_text h3, div.moduletable_hilite h3',
    		{ fontFamily: 'Bebas' }
    	);
     
    	Cufon.replace(
    		'.jav-search span.jav-search-title, .jav-search .button, .jav-has-votes h4',
    		{ fontFamily: 'Bebas' }
    	);
     
    	Cufon.replace(
    		'.ja-slide-desc h3',
    		{ fontFamily: 'Bebas', color: '#fff' }
    	);
     
    	Cufon.replace (
    		'.logo-text h1',
    		{ fontFamily: 'Bebas', color: '-linear-gradient(#fff, #bbb, #fff)', textShadow: '#ccc 1px 1px' }
    	);
    </script>
     
    <link href="http://www.nordmograph.com/templates/ja_halite/css/menu/mega.css" rel="stylesheet" type="text/css" /><script src="http://www.nordmograph.com/templates/ja_halite/js/menu/mega.js" language="javascript" type="text/javascript"></script>
    <link href="http://www.nordmograph.com/templates/ja_halite/css/colors/gray.css" rel="stylesheet" type="text/css" />
     
    </head>
     
    <body id="bd" class="fs3 FF">
     
    <div id="ja-wrapper">
     
    	<a name="Top" id="Top"></a>
     
    	<!-- HEADER -->
    	<div id="ja-header" class="wrap">
     
    <div class="main clearfix">
     
     
     
     
    	<h1 class="logo">
     
    		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="500" height="190">
     
      <param name="movie" value="/templates/ja_halite/flash/logo_nordmograph.swf" />
      <param name="quality" value="high" />
      <param name="wmode" value="transparent" />
      <embed src="/templates/ja_halite/flash/logo_nordmograph.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="500" height="190" wmode="transparent"></embed>
    </object>
     
    	</h1>
     
     
     
     
     
    	<div id="ja-mainnav" class="clearfix">
     
    		<div class="ja-megamenu">
     
    <ul class="megamenu level0"><li class="mega first"><a href="http://www.nordmograph.com/" class="mega first" id="menu51" title="Home"><span class="menu-title">Home</span></a></li><li class="mega"><a href="/aup-rules.html" class="mega" id="menu2" title="AUP Rules"><span class="menu-title">AUP Rules</span></a></li><li class="mega"><a href="/downloads.html" class="mega" id="menu58" title="Downloads"><span class="menu-title">Downloads</span></a></li><li class="mega haschild"><a href="http://www.nordmograph.com/index.php?option=com_comprofiler&amp;task=userProfile&amp;user=63&amp;amp;Itemid=42" class="mega haschild" id="menu42" title="Demo"><span class="menu-title">Demo</span></a><div class="childcontent cols1" ><div class="childcontent-inner clearfix"><div class="megacol column1 first"><ul class="megamenu level1"><li class="mega first"><a href="http://www.nordmograph.com/index.php?option=com_comprofiler&amp;task=userProfile&amp;user=63&amp;amp;Itemid=43" class="mega first" id="menu43" title="cb plugs &amp; modules"><span class="menu-title">cb plugs &amp; modules</span></a></li><li class="mega"><a href="http://www.arcadexy.com" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,');return false;" class="mega" id="menu65" title="CB Banners program"><span class="menu-title">CB Banners program</span></a></li><li class="mega last"><a href="http://demo.nordmograph.com" class="mega last" id="menu72" title="Demo Site (VMVendor)"><span class="menu-title">Demo Site (VMVendor)</span></a></li></ul></div></div></div></li><li class="mega"><a href="/support.html" class="mega" id="menu40" title="Support"><span class="menu-title">Support</span></a></li><li class="mega active last haschild"><a href="/your-profile.html" class="mega active last haschild" id="menu63" title="Your Profile"><span class="menu-title">Your Profile</span></a><div class="childcontent cols1" ><div class="childcontent-inner clearfix"><div class="megacol column1 first"><ul class="megamenu level1"><li class="mega first"><a href="/your-profile/alphauserpoints.html" class="mega first" id="menu71" title="AlphaUserPoints"><span class="menu-title">AlphaUserPoints</span></a></li><li class="mega last"><a href="/your-profile/my-aup-points.html" class="mega last" id="menu85" title="My AUP Points"><span class="menu-title">My AUP Points</span></a></li></ul></div></div></div></li></ul>
    </div>        <br /><br /><br /><br /><h1>Web Agency, Joomla! extensions </h1>
     
    	</div>
     
     
     
    	<ul class="no-display">
     
    		<li><a href="/your-profile.html#ja-content" title="Skip to content">Skip to content</a></li>
     
    	</ul>
     
     
     
    </div>
     
    </div>
     
    	<!-- //HEADER -->
     
     
     
     
     
     
    <div id="ja-headsep">&nbsp;</div>
     
    <!-- MAIN NAVIGATION -->
    <!-- //MAIN NAVIGATION -->
     
     
    	<!-- MAIN CONTAINER -->
    	<div id="ja-container" class="wrap ">
    	<div class="main clearfix">
     
    		<div id="ja-mainbody" style="width:100%">
    			<!-- CONTENT -->
    <div id="ja-main" style="width:100%">
    <div class="inner clearfix">
     
     
     
     
    	<div id="ja-contentwrap" class="">
    				<div id="ja-content" class="column" style="width:100%">
     
    			<div id="ja-current-content" class="column" style="width:100%">
     
    								<div class="ja-content-main clearfix">
     
     
     
     
    <script language="JavaScript" charset="utf-8">
     
     
     
     
     
     
    		// remote scripting library
     
     
     
    		// (c) copyright 2005 modernmethod, inc
     
     
     
    		var sajax_debug_mode = false;
     
     
     
    		var sajax_request_type = "GET";
     
     
     
    		var sajax_target_id = "";
     
     
     
    		var sajax_failure_redirect = "";
     
     
     
     
     
     
     
    		function sajax_debug(text) {
     
     
     
    			if (sajax_debug_mode)
     
     
     
    				alert(text);
     
     
     
    		}
     
     
     
     
     
     
     
     		function sajax_init_object() {
     
     
     
     			sajax_debug("sajax_init_object() called..")
     
     
     
     
     
     
     
     			var A;
     
     
     
     
     
     
     
     			var msxmlhttp = new Array(
     
     
     
    				'Msxml2.XMLHTTP.5.0',
     
     
     
    				'Msxml2.XMLHTTP.4.0',
     
     
     
    				'Msxml2.XMLHTTP.3.0',
     
     
     
    				'Msxml2.XMLHTTP',
     
     
     
    				'Microsoft.XMLHTTP');
     
     
     
    			for (var i = 0; i < msxmlhttp.length; i++) {
     
     
     
    				try {
     
     
     
    					A = new ActiveXObject(msxmlhttp[i]);
     
     
     
    				} catch (e) {
     
     
     
    					A = null;
     
     
     
    				}
     
     
     
    			}
     
     
     
     
     
     
     
    			if(!A && typeof XMLHttpRequest != "undefined")
     
     
     
    				A = new XMLHttpRequest();
     
     
     
    			if (!A)
     
     
     
    				sajax_debug("Could not create connection object.");
     
     
     
    			return A;
     
     
     
    		}
     
     
     
     
     
     
     
    		var sajax_requests = new Array();
     
     
     
     
     
     
     
    		function sajax_cancel() {
     
     
     
    			for (var i = 0; i < sajax_requests.length; i++) 
     
     
     
    				sajax_requests[i].abort();
     
     
     
    		}
     
     
     
     
     
     
     
    		function sajax_do_call(func_name, args) {
     
     
     
    			var i, x, n;
     
     
     
    			var uri;
     
     
     
    			var post_data;
     
     
     
    			var target_id;
     
     
     
     
     
     
     
    			sajax_debug("in sajax_do_call().." + sajax_request_type + "/" + sajax_target_id);
     
     
     
    			target_id = sajax_target_id;
     
     
     
    			if (typeof(sajax_request_type) == "undefined" || sajax_request_type == "") 
     
     
     
    				sajax_request_type = "GET";
     
     
     
     
     
     
     
    			uri = "http://www.nordmograph.com/your-profile.html";
     
     
    			if (sajax_request_type == "GET") {
     
     
     
     
     
     
     
    				if (uri.indexOf("?") == -1) 
     
     
     
    					uri += "?rs=" + escape(func_name);
     
     
     
    				else
     
     
     
    					uri += "&rs=" + escape(func_name);
     
     
     
    				uri += "&rst=" + escape(sajax_target_id);
     
     
     
    				uri += "&rsrnd=" + new Date().getTime();
     
     
     
     
     
     
     
    				for (i = 0; i < args.length-1; i++) 
     
     
     
    					uri += "&rsargs[]=" + escape(args[i]);
     
     
     
     
     
     
     
    				post_data = null;
     
     
     
    			} 
     
     
     
    			else if (sajax_request_type == "POST") {
     
     
     
    				post_data = "rs=" + escape(func_name);
     
     
     
    				post_data += "&rst=" + escape(sajax_target_id);
     
     
     
    				post_data += "&rsrnd=" + new Date().getTime();
     
     
     
     
     
     
     
    				for (i = 0; i < args.length-1; i++) 
     
     
     
    					post_data = post_data + "&rsargs[]=" + escape(args[i]);
     
     
     
    			}
     
     
     
    			else {
     
     
     
    				alert("Illegal request type: " + sajax_request_type);
     
     
     
    			}
     
     
     
     
     
     
     
    			x = sajax_init_object();
     
     
     
    			if (x == null) {
     
     
     
    				if (sajax_failure_redirect != "") {
     
     
     
    					location.href = sajax_failure_redirect;
     
     
     
    					return false;
     
     
     
    				} else {
     
     
     
    					sajax_debug("NULL sajax object for user agent:\n" + navigator.userAgent);
     
     
     
    					return false;
     
     
     
    				}
     
     
     
    			} else {
     
     
     
    				x.open(sajax_request_type, uri, true);
     
     
     
    				// window.open(uri);
     
     
     
     
     
     
     
    				sajax_requests[sajax_requests.length] = x;
     
     
     
     
     
     
     
    				if (sajax_request_type == "POST") {
     
     
     
    					x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
     
     
     
    					x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
     
     
     
    				}
     
     
     
     
     
     
     
    				x.onreadystatechange = function() {
     
     
     
    					if (x.readyState != 4) 
     
     
     
    						return;
     
     
     
     
     
     
     
    					sajax_debug("received " + x.responseText);
     
     
     
     
     
     
     
    					var status;
     
     
     
    					var data;
     
     
     
    					var txt = x.responseText.replace(/^\s*|\s*$/g,"");
     
     
     
    					status = txt.charAt(0);
     
     
     
    					data = txt.substring(2);
     
     
     
     
     
     
     
    					if (status == "") {
     
     
     
    						// let's just assume this is a pre-response bailout and let it slide for now
     
     
     
    					} else if (status == "-") 
     
     
     
    						alert("Error: " + data);
     
     
     
    					else {
     
     
     
    						if (target_id != "") 
     
     
     
    							document.getElementById(target_id).innerHTML = eval(data);
     
     
     
    						else {
     
     
     
    							try {
     
     
     
    								var callback;
     
     
     
    								var extra_data = false;
     
     
     
    								if (typeof args[args.length-1] == "object") {
     
     
     
    									callback = args[args.length-1].callback;
     
     
     
    									extra_data = args[args.length-1].extra_data;
     
     
     
    								} else {
     
     
     
    									callback = args[args.length-1];
     
     
     
    								}
     
     
     
    								callback(eval(data), extra_data);
     
     
     
    							} catch (e) {
     
     
     
    								sajax_debug("Caught error " + e + ": Could not eval " + data );
     
     
     
    							}
     
     
     
    						}
     
     
     
    					}
     
     
     
    				}
     
     
     
    			}
     
     
     
     
     
     
     
    			sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
     
     
     
    			x.send(post_data);
     
     
     
    			sajax_debug(func_name + " waiting..");
     
     
     
    			delete x;
     
     
     
    			return true;
     
     
     
    		}
     
     
     
     
     
     
     
     
     
     
     
     
     
     
    		// wrapper for whatru
     
     
     
     
     
     
    		function x_whatru() {
     
     
     
    			sajax_do_call("whatru",
     
     
     
    				x_whatru.arguments);
     
     
     
    		}
     
     
     
     
     
     
     
     
     
    	function do_save(status) {
     
     
     
            document.getElementById('whatrudiv2').innerHTML = status;
     
     
     
        }
     
     
     
        function wrugetTextBox() {
     
     
     
            document.getElementById("whatrudiv2").style.display = 'none'; 
     
            document.getElementById("whatrudiv1").style.display = ''; 
     
        }
     
     
     
        function wrusaveStatus(id, uname, defaulttext){
     
            var status;
     
            document.getElementById("whatrudiv1").style.display = 'none';
     
            document.getElementById("whatrudiv2").style.display = '';
     
            status = document.getElementById("statusText").value; 
     
            //uncomment  the line below to enable utf8 encoding, you also need to adjust the field length of cb_rustatus in comprofiler table of your joomla database because it is limited to 255 characters
            //status = convertChar2CP(status);
     
            x_whatru(id, uname, status, defaulttext, do_save);         
     
        }       
     
     
     
        function wruclearStatus(id, uname, defaulttext){
     
            var status;
     
            document.getElementById("whatrudiv1").style.display = 'none';
     
            document.getElementById("whatrudiv2").style.display = '';       
     
            document.getElementById("statusText").value = 'is';
     
            status = document.getElementById("statusText").value;
     
            x_whatru(id, uname, status, defaulttext, do_save);
     
        }
     
     
     
      function convertCP2DecNCR ( textString ) {
      var outputString = "";
      textString = textString.replace(/^\s+/, '');
      if (textString.length == 0) { return ""; }
      textString = textString.replace(/\s+/g, ' ');
      var listArray = textString.split(' ');
      for ( var i = 0; i < listArray.length; i++ ) {
        var n = parseInt(listArray[i], 16);
        outputString += ('&#' + n + ';');
      }
      return( outputString );
      }
     
      function convertChar2CP ( textString ) { 
        var haut = 0;
        var n = 0;
        CPstring = '';
        for (var i = 0; i < textString.length; i++) {
            var b = textString.charCodeAt(i); 
            if (b < 0 || b > 0xFFFF) {
                CPstring += 'Error ' + dec2hex(b) + '!';
            }
            if (haut != 0) {
                if (0xDC00 <= b && b <= 0xDFFF) {
                    CPstring += dec2hex(0x10000 + ((haut - 0xD800) << 10) + (b - 0xDC00)) + ' ';
                    haut = 0;
                    continue;
                }else {
                    CPstring += '!erreur ' + dec2hex(haut) + '!';
                    haut = 0;
                }
            }
            if (0xD800 <= b && b <= 0xDBFF) {
                haut = b;
            }
            else {
                CPstring += dec2hex(b) + ' ';
            }
        }
            CPstring = CPstring.substring(0, CPstring.length-1);
     
            return convertCP2DecNCR(CPstring) ;   
      }
     
      function dec2hex ( textString ) {
     return (textString+0).toString(16).toUpperCase();
     }
     
     
     
     
     
     
     
     
    </script>
     
    <link rel="stylesheet" type="text/css" href="/components/com_comprofiler/plugin/user/plug_cbwhatareyoudoing/whatru.css">
     
     
     
    	<div class="cbProfile"><div id="cbProfileInner"><div class="cb_template_default"><div class="cbPosHead">
    			<div class="cb_tab_html cb_tab_content" id="cb_tabid_17"><div id="conteneurmenu">
    <script type="text/javascript">preChargement();</script>
    <ul class="cbpMenu" id="cbMenuNav">
    	<li id="menu1" class="cbMenu" onmouseover="MontrerMenu('ssmenu1');" onmouseout="CacherDelai();">
    	<a href="javascript:void(0)">Community<span>&nbsp;:</span></a>
     
    	  <ul id="ssmenu1" class="cbSSmenu">
    		<li><a href="http://www.nordmograph.com/component/comprofiler/teamcredits.html">About Community Builder...<span>&nbsp;;</span></a></li>
    	  </ul>
    	</li>
    	<li id="menu2" class="cbMenu" onmouseover="MontrerMenu('ssmenu2');" onmouseout="CacherDelai();">
    	<a href="javascript:void(0)">Edit<span>&nbsp;:</span></a>
    	  <ul id="ssmenu2" class="cbSSmenu">
     
    		<li><a href="http://www.nordmograph.com/component/comprofiler/userdetails.html" title="Change your profile settings"><img src="http://www.nordmograph.com/components/com_comprofiler/images/updateprofile.gif" alt='' />Update Your Profile<span>&nbsp;;</span></a></li>
    		<li><a href="http://www.nordmograph.com/component/comprofiler/useravatar.html" title="Choose the image of your profile"><img src="http://www.nordmograph.com/components/com_comprofiler/images/newavatar.gif" alt='' />Update Your Image<span>&nbsp;;</span></a></li>
    		<li><a href="http://www.nordmograph.com/component/comprofiler/useravatar.html?do=deleteavatar" title="Remove the image from your profile"><img src="http://www.nordmograph.com/components/com_comprofiler/images/delavatar.gif" alt='' />Remove Image<span>&nbsp;;</span></a></li>
    	  </ul>
    	</li>
      </ul>
     
    </div>
    <script type="text/javascript"><!--//--><![CDATA[//><!--
    nbmenu=2;
    var cbOldwindowOnLoad;
    if (window.attachEvent) window.attachEvent("onload", Chargement)
    else { if (document.all&&document.getElementById&&window.onload) { cbOldwindowOnLoad = window.onload;
    window.onload = function() { if (cbOldwindowOnLoad) cbOldwindowOnLoad(); Chargement(); } }
    		else Chargement();}
    //--><!]]></script>
     
    			</div>
     
    			<div class="cb_tab_html cb_tab_content" id="cb_tabid_19"><div class="contentheading" id="cbProfileTitle">nordmograph Profile Page</div>
     
    			</div>
     
    			<div class="cb_tab_html cb_tab_content" id="cb_tabid_126">		<div class="whatru"><div id="whatrudiv2" style="border:none;"><h3 style="display:inline;" onclick="javascript:wrugetTextBox();">nordmograph Adding Adsense support to MyPlayer profile tab and standalone popup!</h3><h5 style="display:inline;"> - 2 days ago</h5></div><div id="whatrudiv1" style="display:none;border:none;"><h3>nordmograph <input type="text" name="statusText" size="" maxlength="" id="statusText" value="Adding Adsense support to MyPlayer profile tab and standalone popup!"/><input onclick="javascript:wrusaveStatus('63', 'nordmograph' , '');" type="button" value=""/><input onclick="javascript:wruclearStatus('63', 'nordmograph', '');" type="button" value=""/></h3></div></div>
     
    			</div>
    </div><div class="cbClr"></div>
    		<div class="cbPosTop">
    			<div class="cbPosMiddle" style="width:49%;">
    			<div class="cb_tab_html cb_tab_content" id="cb_tabid_20">
    			<table class="cbFieldsContentsTab cbFields" id="cbtf_20">
    				<tr class="cbavatar_tr cbft_image" id="cbfr_29">
    					<td class="fieldCell" id="cbfv_29"><img src="http://www.nordmograph.com/images/comprofiler/63_4ab94db4afe9e.gif" alt="nordmograph" title="nordmograph" class="cbFullPict" /></td>
    				</tr>
     
    			</table>
    			</div>
    </div>
    			<div class="cbPosRight" style="width:49%;">
    			<div class="cb_tab_html cb_tab_content" id="cb_tabid_21">
    			<table class="cbFieldsContentsTab cbFields" id="cbtf_21">
    				<tr class="sectiontableentry1 cbft_counter" id="cbfr_25">
    					<td class="titleCell"><label for="cbfv_25">Hits:</label></td>
    					<td class="fieldCell" id="cbfv_25">23730</td>
     
    				</tr>
    				<tr class="sectiontableentry2 cbft_status" id="cbfr_26">
    					<td class="titleCell"><label for="cbfv_26">Online Status:</label></td>
    					<td class="fieldCell" id="cbfv_26"><span class="cb_online"><span>ONLINE</span></span></td>
    				</tr>
    				<tr class="sectiontableentry1 cbft_datetime" id="cbfr_28">
    					<td class="titleCell"><label for="cbfv_28">Member Since:</label></td>
     
    					<td class="fieldCell" id="cbfv_28">2 years ago</td>
    				</tr>
    				<tr class="sectiontableentry2 cbft_datetime" id="cbfr_27">
    					<td class="titleCell"><label for="cbfv_27">Last Online:</label></td>
    					<td class="fieldCell" id="cbfv_27">2 hours ago</td>
    				</tr>
    				<tr class="sectiontableentry1 cbft_datetime" id="cbfr_49">
     
    					<td class="titleCell"><label for="cbfv_49">Last Updated:</label></td>
    					<td class="fieldCell" id="cbfv_49">3 months ago</td>
    				</tr>
    			</table>
    			</div>
    <br /><div class="tab-pane" id="cb_right"><div class="tab-page" id="cbtab123"><h2 class="tab">My Player</h2>
    			<div class="tab-content cb_tab_content cb_tab_tab_main" id="cb_tabid_123"><script type="text/javascript">
    				window.addEvent("domready", function(){
    				var accordion = new Accordion("h4.atStart", "div.atStart", {
    				opacity: true,
    				onActive: function(toggler, element){},
     
    				onBackground: function(toggler, element){}
    				}, $("slide"));
    				}
    			); 
    			</script><div id="slide" ><div align="left"><h4 class="toggler atStart" style="cursor: pointer;"><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/player.png" alt="" width="24" height="24" align="absmiddle" /> [ MP3 Player ]</h4></div><div id="player" align="center" class="element atStart"><table width=""><tr><td><object type="application/x-shockwave-flash" data="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/flash/player_mp3_multi.swf?1932903253" width="280" height="200">
     
        <param name="movie" value="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/flash/player_mp3_multi.swf?1454945904" />
        <param name="wmode" value="transparent" />
    	<param name="FlashVars" value="configxml=http://www.nordmograph.com/userplayer/63/configxml_multi.php?19449827" />
    </object></td></tr><tr><td align="right"><script type='text/javascript' src='http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/js/slide.js'></script><a id='dotoggle' name='dotoggle' href='#'><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/addtosite.png" title="Embed" width="15" height="15" alt="Embed" /></a><a href="http://www.nordmograph.com/userplayer/63/mypodcast_feed.xml" target="_blank"><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/podcast.png" alt="Podcast" width="15" height="15" title="Podcast" /></a><script>function winOpen(URL, wW, wH){
    				var H =  screen.height;
    				var W =  screen.width;
    				var L = (W - wW)/2;
    				var T = (H - wH)/2;	
      			 	window.open(URL,"winOpen","width=" + wW +",height=" + wH + ",top=" + T + ",left=" + L + 					"status=NO,location=NO,menubar=NO,scrollbars=NO,directories=NO,toolbar=NO");
    				}</script><a onclick="winOpen('http://www.nordmograph.com/userplayer/63/popup_player.php?376329659',480+20,200+20);return false;" href="#"><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/popup.png" alt="Popupize" width="15" height="15" title="Popupize" /></a></td></tr></table></div><div id="zlide" name="zlide" align="center" ><table width="280" ><tr class="sectiontableentry2"><td><textarea name="textarea" id="textarea" cols="30" rows="5" readonly><div align="center"><a href="http://www.nordmograph.com/index.php?option=com_comprofiler&task=userProfile&user=63&tab=getcbmyplayertab" target="_blank">nordmograph</a>'s player:</div><div align="center"><object width="280" height="200" data="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/flash/player_mp3_multi.swf" type="application/x-shockwave-flash"><param value="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/flash/player_mp3_multi.swf" name="movie"/><param value="transparent" name="wmode"/><param value="configxml=http://www.nordmograph.com/userplayer/63/configxml_multi.php" name="FlashVars"/></object></div></textarea></td></tr><tr class="sectiontableentry2"><td>Copy/paste this to add the player to your site!</td></tr></table></div><div align="left"><h4 class="toggler atStart" style="cursor: pointer;"><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/playlist.png" alt="" width="24" height="24" align="absmiddle" /> [ Playlist ]</h4></div><div align="center" class="element atStart"><table cellspacing="0" ><tr class="sectiontableheader" colspan="4" ><th>#</th><th>Author</th><th>Title</th><th></th><th>del</th></tr ><tr colspan="4" class="sectiontableentry1"><form method=post action="http://www.nordmograph.com/your-profile/userprofile/nordmograph.html?tab=getcbmyplayertab"><INPUT type='hidden' value='1' name='linetoremove'><INPUT type='hidden' value="Pagina Cuatro
    " name='songtoremove'><INPUT type='hidden' value="Prefuse 73" name='authortoremove'><INPUT type='hidden' value="http://www.nordmograph.com/userplayer/63/04%20pagina%20cuatro.mp3" name='urltoremove'><td>1</td><td>Prefuse 73</td><td><a href="http://www.nordmograph.com/userplayer/63/04%20pagina%20cuatro.mp3" target="_blank">Pagina Cuatro
     
    </a></td><td><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/internal.gif" alt="Uploaded" width="10" height="10" title="Uploaded" /></td><td><input type="image" src="http://www.nordmograph.com/administrator/images/cancel_f2.png" name="Remove" title="Remove" width="12" height="12" alt="Remove"></td></form></tr ></table></div><script type="text/javascript">function validatez(it){
    							var warning = "Fix this: \n";
    							var same = warning;
    						if (it.file.value=="" && (it.link.value == "" || it.link.value.length <19)) { warning += " * Add a mp3 file or a link to a distant one \n"; }
    						if (it.file.value!="" && it.tags.checked==false){
    							if (it.author.value=="") { warning += " * Author required or enable Tags \n"; }
    							if (it.title.value=="") { warning += " * Title required or enable Tags  \n"; }
    						}
    						else if (it.link.value.length >19){
    							if (it.tags.checked) { warning += " * Tags do not work for linked files \n"; }
    							if (it.link.value.substr(0,7)!="http://") { warning += " * Link must use the http protocole! \n"; }
    							if (it.link.value.substr(-4)!=".mp3") { warning += " * Link must be a valid .mp3 file or stream! \n"; }
    							if (it.author.value=="") { warning += " * Author required \n"; }
    							if (it.title.value=="") { warning += " * Title required  \n"; }
     
    						}
    						if (warning == same) {it.loading.style.display = "";
    						return true;
    						}
    						else
    						{ alert(warning); return false;}
    						}</script><div align="left"><h4 class="toggler atStart" style="cursor: pointer;"><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/addform.png" alt="" width="24" height="24" align="absmiddle" /> [ Add to playlist: upload or link form ]</h4></div><div align="center" class="element atStart"><form name='uploader' enctype='multipart/form-data' onsubmit='return validatez(this)' method=post action='http://www.nordmograph.com/your-profile/userprofile.html?tab=getcbmyplayertab'><table width='340' cellspacing='0' border='0'><tr class='sectiontableentry2'><td><b>File</b> (9 left)</td><td><input type="file" name="file" id="file" /></td></tr><tr class='sectiontableentry2'><td></td><td>Max file size: 3.8MB</td></tr><tr class='sectiontableentry2'><td></td><td><script type="text/javascript">function disenablefieldz(){
     
    					if (document.getElementById('tags').checked==true) {
     
    						document.getElementById('title').disabled = true;
    						document.getElementById('author').disabled = true;
    					}
    					if (document.getElementById('tags').checked==false) {
    						document.getElementById('title').disabled = false;
    						document.getElementById('author').disabled = false;
    					}
    					}</script><label><input name='tags' type='checkbox'   onclick="disenablefieldz()" id="tags">Get Title & Author from ID3 Tags</label> </td></tr><tr class='sectiontableentry1'><td colspan="2"><div align="center" ><b>OR</b></div></td></tr><tr class='sectiontableentry2'><td><b>Link</b> (10 left)</td><td><input type="text" name="link" value="http://" size="30" id="link" /></td></tr><tr class='sectiontableentry2'><td><b>Author</b></td><td><input type="text" name="author"  size="30" id="author"   /></td></td></tr><tr class='sectiontableentry2'><td><b>Title</b></td><td><input type="text" name="title"  size="30" id="title"   /></td></tr><tr class='sectiontableentry1'><td><b>Position</b></td><td>in playlist: <select name="position" id="position"><option value="1"  >top</option><option value="0" selected="selected" >bottom</option></select></td></td></tr><tr class='sectiontableentry1'><td colspan="2"  ><div align="center" ><label><input name="announce" type="checkbox" id="announce" checked>Announce and </label>  <input type="submit" name="add" id="button" class="button" value="Add to playlist" /> <img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/loader.gif" alt="" width="24" height="24" border="0" name = "loading" id= "loading"  align="absmiddle" style="display: none;" /></div></td></tr><tr><td colspan="2"><img src="http://ping.fm/_images/layout/icon_30.png" alt="ping.fm" width="16" height="16" align="absmiddle" /> You have not set your <a href="http://ping.fm" target="_blank" >ping.fm</a> email yet. You can do so now <a href="http://www.nordmograph.com/your-profile/userdetails.html?tab=getcbmyplayertab">here</a> and have your new tracks announced to all your social networks!</td></tr></table></form></div><div align="left"><h4 class="toggler atStart" style="cursor: pointer;"><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/config.png" alt="" width="24" height="24" align="absmiddle" /> [ Player customization ]</h4></div><div align="center" class="element atStart"><script type="text/javascript">function validates(it){
    							var warning = "Fix this: \n";
    							var same = warning;
    							if (it.reset	.checked == false){
    						if (isNaN (it.height.value) || it.height.value=="") { warning += " * Player Height not valid \n";}
    						if(it.currentmp3color.value.length != 6  ||  /\W/.test(it.currentmp3color.value )){ warning += " * Current Mp3 Color should be a 6 characters long alphanumeric string \n";}
    						if(it.bgcolor1.value.length != 6  ||  /\W/.test(it.bgcolor1.value )){ warning += " * BG color 1 should be a 6 characters long alphanumeric string \n";}
    						if(it.bgcolor2.value.length != 6  ||  /\W/.test(it.bgcolor2.value )){ warning += " * BG color 2 should be a 6 characters long alphanumeric string \n";}
    						if(it.buttoncolor.value.length != 6  ||  /\W/.test(it.buttoncolor.value )){ warning += " * Button Color should be a 6 characters long alphanumeric string \n";}
    						if(it.buttonovercolor.value.length != 6  ||  /\W/.test(it.buttonovercolor.value )){ warning += " * Button Over Color should be a 6 characters long alphanumeric string \n"; }				
    						if(it.slidercolor1.value.length != 6  ||  /\W/.test(it.slidercolor1.value )){ warning += " * Slider Color 1 should be a 6 characters long alphanumeric string \n";}
    						if(it.slidercolor2.value.length != 6  ||  /\W/.test(it.slidercolor2.value )){ warning += " * Slider Color 2 should be a 6 characters long alphanumeric string \n";}
    						if(it.sliderovercolor.value.length != 6  ||  /\W/.test(it.sliderovercolor.value )){ warning += " * Slider Over Color should be a 6 characters long alphanumeric string \n";}
    						if(it.textcolor.value.length != 6  ||  /\W/.test(it.textcolor.value )){ warning += " * Text Color should be a 6 characters long alphanumeric string \n";}
    						if(it.playlistcolor.value.length != 6  ||  /\W/.test(it.playlistcolor.value )){ warning += " * Playlist Color should be a 6 characters long alphanumeric string \n";}
    						if (isNaN (it.playlistalpha.value) || it.playlistalpha.value==""  || it.playlistalpha.value>100) { warning += " * Playlist alpha should be between 0 and 100 \n";}
    						if(it.scrollbarcolor.value.length != 6  ||  /\W/.test(it.scrollbarcolor.value )){ warning += " * Scrollbar Color should be a 6 characters long alphanumeric string \n";}
    						if(it.scrollbarovercolor.value.length != 6  ||  /\W/.test(it.scrollbarovercolor.value )){ warning += " * Scrollbar Over Color should be a 6 characters long alphanumeric string \n";}
    						}
    						if (warning == same) { return true; }
    						else
    						{ alert(warning); return false;}
    						}</script><link rel="stylesheet" href="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/css/mooRainbow.css" type="text/css" /><script src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/js/mooRainbow.js" type="text/javascript"></script><form name='config' onsubmit='return validates(this)' method=post action='http://www.nordmograph.com/your-profile/userprofile.html?tab=getcbmyplayertab'><script type="text/javascript">function disenablefields(){
     
    					if (document.getElementById('reset').checked==true) {
     
    						document.getElementById('playerheight').disabled = true;
    						document.getElementById('bgcolor1').disabled = true;
    						document.getElementById('bgcolor2').disabled = true;
    						document.getElementById('buttoncolor').disabled = true;
    						document.getElementById('buttonovercolor').disabled = true;
    						document.getElementById('slidercolor1').disabled = true;
    						document.getElementById('slidercolor2').disabled = true;
    						document.getElementById('sliderovercolor').disabled = true;
    						document.getElementById('textcolor').disabled = true;
    						document.getElementById('playlistcolor').disabled = true;
    						document.getElementById('playlistalpha').disabled = true;
    						document.getElementById('currentmp3color').disabled = true;
    						document.getElementById('scrollbarcolor').disabled = true;
    						document.getElementById('scrollbarovercolor').disabled = true;
    						document.getElementById('loop').disabled = true;
    						document.getElementById('showvolume').disabled = true;
    						document.getElementById('autoplay').disabled = true;
    						document.getElementById('shuffle').disabled = true;
     
    					}
    					if (document.getElementById('reset').checked==false) {
    						document.getElementById('playerheight').disabled = false;
    						document.getElementById('bgcolor1').disabled = false;
    						document.getElementById('bgcolor2').disabled = false;
    						document.getElementById('buttoncolor').disabled = false;
    						document.getElementById('buttonovercolor').disabled = false;
    						document.getElementById('slidercolor1').disabled = false;
    						document.getElementById('slidercolor2').disabled = false;
    						document.getElementById('sliderovercolor').disabled = false;
    						document.getElementById('textcolor').disabled = false;
    						document.getElementById('playlistcolor').disabled = false;
    						document.getElementById('playlistalpha').disabled = false;
    						document.getElementById('currentmp3color').disabled = false;
    						document.getElementById('scrollbarcolor').disabled = false;
    						document.getElementById('scrollbarovercolor').disabled = false;
    						document.getElementById('loop').disabled = false;
    						document.getElementById('showvolume').disabled = false;
    						document.getElementById('autoplay').disabled = false;
    						document.getElementById('shuffle').disabled = false;
    					}
    					}</script><table cellspacing="0"><tr class="sectiontableentry1"><td><b>Player Height</b></td><td ><div align="right"><input type="text" name="height"  value="200" size="5" id="playerheight" /></div></td><td><b>Current Mp3 Color</b></td><td><script type='text/javascript'>window.addEvent('domready', function() {
    				new MooRainbow('currentmp3colorRainbow', {
    				id: 'currentmp3colorRainbow',
    				wheel: true,
    				onChange: function(color) {
    				document.getElementById('currentmp3color').value = color.hex;
    				}
    				});
    				});
    				</script><div align="right"><img id="currentmp3colorRainbow" src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/rainbow.png" alt="[r]" width="16" height="16" /> <input type="text" name="currentmp3color"  value="999999" size="5" id="currentmp3color" /></div></td></tr><tr class="sectiontableentry2"><td><b>BG color 1<b></td><td><div align="right"><img id="bgcolor1Rainbow" src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbmyplayer/img/rainbow.png" alt="[r]" width="16" height="16" /> <input type="text" name="bgcolor1"  value="000000" size="5" id="bgcolor1" /></div></td><td><b>BG color 2</b></td><td><div align="right">#<input type="text" name="bgcolor2"  value="333333" size="5" id="bgcolor2" /></div></td></tr><tr class="sectiontableentry1"><td><b>Button Color</b></td><td><div align="right">#<input type="text" name="buttoncolor" value="dddddd" size="5" id="buttoncolor" /></div></td><td><b>Button Over Color</b></td><td><div align="right">#<input type="text" name="buttonovercolor"  value="0099ff"  size="5" id="buttonovercolor" /></div></td></tr><tr class="sectiontableentry2"><td><b>Slider Color 1</b></td><td><div align="right">#<input type="text" name="slidercolor1"  value="dddddd" size="5" id="slidercolor1" /></div></td><td><b>Slider Color 2</b></td><td><div align="right">#<input type="text" name="slidercolor2" value="cccccc" size="5" id="slidercolor2" /></div></td></tr><tr class="sectiontableentry1"><td><b>Slider Over Color</b></td><td><div align="right">#<input type="text" name="sliderovercolor" value="ff66cc" size="5" id="sliderovercolor" /></div></td><td><b>Text Color</b></td><td><div align="right">#<input type="text" name="textcolor" value="000000" size="5" id="textcolor" /></div></td></tr><tr class="sectiontableentry2"><td><b>Playlist Color</b></td><td><div align="right">#<input type="text" name="playlistcolor" value="aacc99" size="5" id="playlistcolor" /></div></td><td><b>Playlist Alpha</b></td><td><div align="right">%<input type="text" name="playlistalpha" value="40" size="5" id="playlistalpha" /></div></td></tr><tr class="sectiontableentry1"><td><b>Scrollbar Color</b></td><td><div align="right">#<input type="text" name="scrollbarcolor" value="cccccc" size="5" id="scrollbarcolor" /></div></td><td><b>Scrollbar Over Color</b></td><td><div align="right">#<input type="text" name="scrollbarovercolor" value="0099ff" size="5" id="scrollbarovercolor" /></div></td></tr><tr class="sectiontableentry2"><td><b>Loop</b></td><td><select name="loop" id="loop"><option value="1" selected="selected">Yes</option><option value="0" >No</option></select></td><td><b>Show volume</b></td><td ><select name="showvolume" id="showvolume"><option value="1" selected="selected">Yes</option><option value="0" >No</option></select></td></tr><tr class="sectiontableentry1"><td><b>Autoplay</b></td><td><select name="autoplay" id="autoplay"><option value="1" >Yes</option><option value="0" selected="selected">No</option></select></td><td><b>Shuffle</b></td><td ><select name="shuffle" id="shuffle"><option value="1" >Yes</option><option value="0" selected="selected">No</option></select></td></tr><tr class="sectiontableentry2"><td><b>Reset default</b></td><td><input type="checkbox" onclick="disenablefields()"  id="reset" name="reset" /></td><td><input type="submit" name="config" id="configbutton" class="button" value="Update" /></td><td><a href="http://www.hlrnet.com/colormatch/index.php" target="_blank">ColorMatch</a></td></tr></table></form></div></div ></div>
     
    </div></div></div></div><div class="cbClr"></div>
    		<div class="cbPosTabMain"><div class="tab-pane" id="cb_tabmain"><div class="tab-page" id="cbtab125"><h2 class="tab">My Latest tweets</h2>
    			<div class="tab-content cb_tab_content cb_tab_tab_main" id="cb_tabid_125"><link rel="stylesheet" href="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbtwitter_ext/css/cbtwitter_ext.css" type="text/css" /><div style="background-color:#E6E6E6;" id="header"  ><a target="_blank" href="http://www.twitter.com/nordmograph"><img border="0" style="padding: 8px 8px 8px 15px;" src="http://assets0.twitter.com/images/twitter_logo_header.png" alt="Twitter Service Offline" width="155" height="36" /></a></div><div class="header2" id="header2" ></div><script type="text/javascript">
    			window.addEvent("domready", function() {
    				function check_length(form) {
    					max_length = 140;
    					if (form.twitter_msg.value.length >= max_length) {
    						form.twitter_msg.value = form.twitter_msg.value.substring(0, max_length);
    					} else {
    						form.num_left.style.color = "#999999";
    						form.num_left.value = max_length - form.twitter_msg.value.length;
    						if (form.num_left.value<10)
    							form.num_left.style.color = "red";
    						else if (form.num_left.value<20)
    							form.num_left.style.color = "#000000";
    					}
    				}
    				var twitter_msg = $("twitter_msg");
    				twitter_msg.onkeydown = function(event) {
    					check_length(this);
    				};
    			});
    			</script><script type="text/javascript">function dovalidate(it){
    			var warning = "";
    			var same = warning;						
    			if (it.twitterpass.value=="") { warning += "WARNING: Twitter Password is required to Tweet! \n"; }
    			if (it.twitter_msg.value=="") { warning += "WARNING: Your Tweet can not be empty! \n"; }
    			if (warning == same) { return true; }
    			else{ alert(warning); return false;}
    			}</script><div align="center"><div style="width:520px;"><form  id='twitter_msg' action='http://www.nordmograph.com/component/comprofiler/userprofile/nordmograph.html?tab=getcbtwitterexttab' method='post' onsubmit='return dovalidate(this)'><div id="counter"><h2><input size="3" value="140" name="num_left" id="num_left" class="num_left" readonly></h2></div> <div id="formtitle"><b><h3>What are you doing?</h3></b></div><div align="center"><textarea id="twitter_msg" name="twitter_msg" class="twitter_msg" rows="4" cols="40" maxlength="140" ></textarea></div><div align="right" id="checkbox">Status Sync.<input name="updatewhatru" type="checkbox" id="updatewhatru" checked="checked" /></div><div align="right"><input type="submit" name="updatetweet" id="updatetweet" class="updatetweet" value="update" /></div><INPUT type='hidden' value='electro' name='twitterpass'></form></div></div><div class="tweets"><div class='item'><a  target='_blank' href='http://twitter.com/nordmograph' style='font-weight:bold;'><img src='http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbtwitter_ext/img/twit.png' alt='From Twitter.com/nordmograph' width='16' height='16' align='absmiddle' /> nordmograph (nordmograph)</a> Adding Adsense support to MyPlayer profile tab and standalone popup! <span style="color:#CCC;">10 January 2010, 5:22 pm</span></div></div><div align="right"><a href="http://twitter.com/nordmograph" target="_blank" ><img src="http://www.nordmograph.com/components/com_comprofiler/plugin/user/plug_cbtwitter_ext/img/sticker.jpg" width="50" height="48" align="absmiddle" 	alt="Follow  nordmograph aka nordmograph on Twitter" /></a></div></div>
     
    </div><div class="tab-page" id="cbtab11"><h2 class="tab">Info</h2>
    			<div class="tab-content cb_tab_content cb_tab_tab_main" id="cb_tabid_11">
    			<table class="cbFieldsContentsTab cbFields" id="cbtf_11">
    				<tr class="sectiontableentry1 cbft_formatname" id="cbfr_45">
    					<td class="fieldCell" id="cbfv_45">nordmograph</td>
    				</tr>
    				<tr class="sectiontableentry2 cbft_radio" id="cbfr_95">
    					<td class="titleCell"><label for="cbfv_95">Sex:</label></td>
     
    					<td class="fieldCell" id="cbfv_95">male</td>
    				</tr>
    			</table></div>
    </div></div></div><div class="cbClr"></div></div></div><div class="cbClr"></div></div>
    <div class="cbClr"></div>
    				</div>
     
     
    			</div>
     
     
    		</div>
     
    			</div>
     
     
    </div>
    </div>
    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
    </script>
    <script type="text/javascript">
    try {
    _uacct = "UA-656746-4";
    urchinTracker();
    } catch(err) {}</script>
    <!-- //CONTENT -->					</div>
     
     
    	</div>
    	</div>
    	<!-- //MAIN CONTAINER -->
     
    	<!-- BOTTOM SPOTLIGHT -->
    <div id="ja-botsl" class="wrap">
    <div class="main clearfix">
     
    		<div class="ja-box column ja-box-left" style="width: 33.3%;">
    			<div class="ja-moduletable moduletable  clearfix" id="Mod157">
    						<h3><span>Follow or Stalk Nordmograph</span></h3>
    				<div class="ja-box-ct clearfix">
    		<table style="height: 226px;" border="0" width="200">
     
    <tbody>
    <tr>
    <td align="center"><a href="http://extensions.joomla.org/extensions/owner/nordmograph/1" target="_blank" title="JED"><img src="/images/stories/logo_jed.png" border="0" alt="Logo JED" title="Logo JED" width="48" height="48" /></a></td>
    <td>
    <p><a href="http://extensions.joomla.org/extensions/owner/nordmograph/1" target="_blank" title="JED">Rate Nordmograph extensions on J.E.D</a>.</p>
    </td>
    </tr>
    <tr>
    <td align="center"><a href="http://www.twitter.com/nordmograph" target="_blank"><img src="/images/stories/twitter_nordmograph.png" border="0" alt="Nordmograph on Twitter" title="Nordmograph on Twitter" width="48" /></a></td>
    <td>
    <p><a href="http://www.twitter.com/nordmograph" target="_blank">Follow Nordmograph on Twitter</a></p>
    </td>
    </tr>
    <tr>
     
    <td align="center"><a href="http://www.facebook.com/people/Adrien-Roussel/548024857" target="_blank"><img src="/images/stories/facebook.png" border="0" alt="Nordmograph on Facebook" title="Nordmograph on Facebook" /></a></td>
    <td>
    <p><a href="http://www.facebook.com/people/Adrien-Roussel/548024857" target="_blank">Friend Nordmograph on Facebook</a></p>
    </td>
    </tr>
    </tbody>
    </table>		</div>
        </div>
     
    	</div>
     
    		<div class="ja-box column ja-box-center" style="width: 33.3%;">
    			<div class="ja-moduletable moduletable  clearfix" id="Mod151">
     
    						<h3><span>We Provide , Support, You Relax</span></h3>
    				<div class="ja-box-ct clearfix">
    		<table style="height: 244px;" border="0" width="200">
    <tbody>
    <tr>
    <td align="center"><img src="/images/stories/pie.png" border="0" alt="Pie" title="Pie" width="48" height="48" /></td>
    <td>Great ideas, effective dev &amp; quality design</td>
    </tr>
    <tr>
    <td align="center">
     
    <p><img src="/images/stories/support.png" border="0" alt="Support" title="Support" width="48" height="48" /></p>
    </td>
    <td>
    <p>We support from our forum to your own site!</p>
    </td>
    </tr>
    <tr>
    <td align="center">
    <p><img src="/images/stories/coffee.png" border="0" alt="Relax!" title="Relax!" width="48" height="48" /></p>
    </td>
    <td>
    <p>Have a break... We care and you relax!</p>
    </td>
    </tr>
    </tbody>
     
    </table>		</div>
        </div>
     
    	</div>
     
    		<div class="ja-box column ja-box-right" style="width: 33.3%;">
    			<div class="ja-moduletable moduletable  clearfix" id="Mod212">
    						<h3><span>Shop Categories demo module</span></h3>
    				<div class="ja-box-ct clearfix">
     
    <table width=100% height=100% border=0>
     
    <tr valign=middle>
    <td align=center>
    <script type="text/javascript" src="http://www.nordmograph.com//modules/mod_vm_catorvendor_cumulus/swfobject.js"></script>
    <div id="wpcumuluswidgetcontent">
    Flash player required!</div>
    <script type="text/javascript">
    var rnumber = Math.floor(Math.random()*9999999);
    var widget_so = new SWFObject("http://www.nordmograph.com//modules/mod_vm_catorvendor_cumulus/tagcloud.swf?r="+rnumber, "tagcloudflash", "300", "250", "9", "#FFFFFF");
    widget_so.addParam("wmode", "transparent");widget_so.addParam("allowScriptAccess", "always");
    widget_so.addVariable("tcolor", "0xFFFFFF");
    widget_so.addVariable("tspeed", "300");
    widget_so.addVariable("distr", "true");
    widget_so.addVariable("mode", "tags");
    widget_so.addVariable("tagcloud", "<span><a href='/downloads/category/6/other-feat.-products.html' style='font-size:10px;'>Other Feat. Products</a><a href='/downloads/category/7/jgifts-for-cb.html' style='font-size:10px;'>Jgifts for CB</a><a href='/downloads/category/104/vmvendor-suites.html' style='font-size:10px;'>VMVendor Suites</a><a href='/downloads/category/151/vm-payment-classes.html' style='font-size:10px;'>VM payment classes</a><a href='/downloads/category/152/myplayer.html' style='font-size:10px;'>MyPlayer</a><a href='/downloads/category/153/twitter-for-cb.html' style='font-size:10px;'>Twitter for CB</a><a href='/downloads/category/154/profile-google-adsense.html' style='font-size:10px;'>Profile Google Adsense</a><a href='/downloads/category/155/qr-code-extensions.html' style='font-size:10px;'>QR Code extensions</a></span>");
    widget_so.write("wpcumuluswidgetcontent");
    </script>
    </td>
    </tr>
    </table>		</div>
        </div>
     
    	</div>
     
     
     
    </div>
    </div>
    <!-- //BOTTOM SPOTLIGHT -->
     
    <!-- BOTTOM SPOTLIGHT 2 -->
    <div id="ja-botsl2" class="wrap">
    <div class="main clearfix">
     
    		<div class="ja-box column ja-box-left" style="width: 50%;">
    			<div class="ja-moduletable moduletable  clearfix" id="Mod136">
    						<h3><span>Sign in</span></h3>
    				<div class="ja-box-ct clearfix">
     
    		<form action="http://www.nordmograph.com/your-profile/logout.html" method="post" id="mod_login_logoutform" style="margin:0px;">
     
     
    <div style="text-align:center; margin-left:auto; margin-right:auto;"><a href="http://www.nordmograph.com/component/comprofiler/userprofile.html" class="mod_login"><img src="http://www.nordmograph.com/images/comprofiler/tn63_4ab94db4afe9e.gif" style="border: 1px solid rgb(102, 102, 102); padding: 2px;" alt="nordmograph" title="View your own profile" class="mod_login" id="mod_login_avatar" /></a></div>
    <input type="submit" name="Submit" class="button" value="Logout" />
    <input type="hidden" name="op2" value="logout" />
    <input type="hidden" name="lang" value="english" />
    <input type="hidden" name="return" value="B:aHR0cDovL3d3dy5ub3JkbW9ncmFwaC5jb20vY29tcG9uZW50L3ZpcnR1ZW1hcnQvZmVlZC5odG1s" />
    <input type="hidden" name="message" value="0" />
    <input type="hidden" name="cbsecuritym3" value="cbm_2f041eed_03878dd6_b66aa41f12c2f4a20dff2f9b0ca7be4d" />
    <input type="hidden" name="j9afb878799bc704a13e6aa5f4a38ef81" value="1" />
    </form>		</div>
        </div>
     
    	</div>
     
     
    		<div class="ja-box column ja-box-right" style="width: 50%;">
    			<div class="ja-moduletable moduletable  clearfix" id="Mod132">
    						<div class="ja-box-ct clearfix">
    		<div class="bannergroup">
     
    <div class="banneritem"><script type="text/javascript"><!--
    google_ad_client = "pub-9324708320571579";
    /* 468x60, created 6/14/09 */
    google_ad_slot = "5293569416";
    google_ad_width = 468;
    google_ad_height = 60;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script><br /><br /><div class="clr"></div>
    	</div>
     
    </div>		</div>
     
        </div>
     
    	</div>
     
     
     
    </div>
    </div>
    <!-- //BOTTOM SPOTLIGHT 2 -->
     
    	<!-- FOOTER -->
    	<div id="ja-footer" class="wrap">
    	<div class="main">
     
     
    		<div class="inner">
     
    			<div class="ja-copyright">
    				<table width="100%" border="0" cellpadding="0" cellspacing="1"><tr><td nowrap="nowrap"><a href="/portfolio.html" class="mainlevel-nav" >Portfolio</a><span class="mainlevel-nav">   | </span><a href="/links.html" class="mainlevel-nav" >Links</a><span class="mainlevel-nav">   | </span><a href="/downloads.html" class="mainlevel-nav" >Downloads</a><span class="mainlevel-nav">   | </span><a href="/sitemap.html" class="mainlevel-nav" >Sitemap</a><span class="mainlevel-nav">   | </span><a href="/qr-code.html" class="mainlevel-nav" >QR Code</a><span class="mainlevel-nav">   | </span><a href="/contact.html" class="mainlevel-nav" >Contact</a></td></tr></table><div><img src="/images/typo_nordmograph.gif" alt="Nordmograph Joomla! Extensions" title="Nordmograph Joomla! Extensions" border="0" height="11" width="150" /></div> We have&nbsp;155 guests&nbsp;and&nbsp;3 members&nbsp;online
    			</div>
     
    		</div>
     
    	</div>
    </div>
     
    	<!-- //FOOTER -->
     
    </div>
     
     
     
     
    </body>
     
    </html>

  6. #6
    Expert éminent

    Homme Profil pro
    Inscrit en
    Janvier 2007
    Messages
    13 474
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Isère (Rhône Alpes)

    Informations professionnelles :
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2007
    Messages : 13 474
    Par défaut
    Bonjour,
    Citation Envoyé par adroussel Voir le message
    Par exemple dans ces deux cas, je n'arrive pas a faire ingurgiter ces lignes a IE...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    this.RedInput.value = rgb[0];
    Message*: 'this.RedInput' a la valeur Null ou n'est pas un objet.
    Ca doit etre tout c.. mais bon...

    puis

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    el.addEvents({
    				'mousewheel': this.eventKeys.bindWithEvent(this, el),
    				'keydown': this.eventKeys.bindWithEvent(this, el)
    			});
    Message : 'null' a la valeur Null ou n'est pas un objet.(pour lapremiere ligne)
    Dans ces 2 cas, quels sont les éléments déclencheurs ( = que représente "this") ?

    Dans le 1° par exemple, cela ne peut être qu'un <form> (contenant un élément RedInput). La syntaxe ne peut pas coller avec un autre type d'élément ...

    A+

  7. #7
    Membre Expert
    Avatar de RomainVALERI
    Homme Profil pro
    POOête
    Inscrit en
    Avril 2008
    Messages
    2 652
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Meurthe et Moselle (Lorraine)

    Informations professionnelles :
    Activité : POOête

    Informations forums :
    Inscription : Avril 2008
    Messages : 2 652
    Par défaut
    Code javascript : Sélectionner tout - Visualiser dans une fenêtre à part
    this.RedInput = $E('#' + idPrefix + 'rInput');
    c'est quoi cette fonction $E ? Propre à mootools ? Ca ressemble à un alias de getElementById, renvoyant un élément à partir de son ID si la chaine param commence par un "#"... as-tu essayé de remplacer ça par un getElementById ?

  8. #8
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 7
    Par défaut
    Citation Envoyé par E.Bzz Voir le message
    Bonjour,Dans ces 2 cas, quels sont les éléments déclencheurs ( = que représente "this") ?

    Dans le 1° par exemple, cela ne peut être qu'un <form> (contenant un élément RedInput). La syntaxe ne peut pas coller avec un autre type d'élément ...

    A+
    oui, dans le premier ce doit etre un input ou apparait la teneur en rouge de la couleur

    dans le 2e, ca correspond a la roulette de la souris qui permet de deplacer les curseurs sur la palette de couleurs...
    Ce script vient de
    http://moorainbow.woolly-sheep.net/

    J'utilise la vieille version parce que Joomla integre encore mootools 1.1 .

  9. #9
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 7
    Par défaut
    Citation Envoyé par RomainVALERI Voir le message
    Code javascript : Sélectionner tout - Visualiser dans une fenêtre à part
    this.RedInput = $E('#' + idPrefix + 'rInput');
    c'est quoi cette fonction $E ? Propre à mootools ? Ca ressemble à un alias de getElementById, renvoyant un élément à partir de son ID si la chaine param commence par un "#"... as-tu essayé de remplacer ça par un getElementById ?
    Je suis pas sur, mais ca pourrait bien etre propre a mootools. A priori ces lignes la ne posent pas de probleme (à IE en tout cas) directement.

    Merci de votre aide

  10. #10
    Membre chevronné
    Profil pro
    Inscrit en
    Juin 2009
    Messages
    313
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2009
    Messages : 313
    Par défaut
    Bonsoir,

    Dans la source de ton deuxième post, il n'y a aucun 'document.getElementById' qui puisse fonctionner.

    Cette fonction renvoie un objet HTML identifié par son id.
    Un id est une chaine de caractère unique au document, définit par un attribut 'id' qui se trouve rattaché à une balise.

    Dans ta source, aucun paramètre ne correspond à un id.

    Ca aussi ça fonctionne sous Firefox ?
    Comment ?

  11. #11
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 7
    Par défaut en effet
    Citation Envoyé par kernelfailure Voir le message
    Bonsoir,

    Ca aussi ça fonctionne sous Firefox ?
    Comment ?
    en effet a force de vouloir regler toutes les erreurs js dans IE j'ai claqué des 'getelementbyid' sans trop reflechir

    donc en gros je l'ai remis comme il marche bien:
    http://www.nordmograph.com/component.../mooRainbow.js

    avec ca tout va bien sous FF, le color picker se lance qd je clique sur l'arc en ciel a coté du champs 'couleur' et le code hex de la couleur survolée est injectée dans le champs. voir la piece jointe.
    Par contre sous IE:

    Détails de l’erreur de la page Web

    Agent utilisateur : Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Horodateur : Tue, 12 Jan 2010 18:39:36 UTC


    Message*: 'this.layout.cursor.height' a la valeur Null ou n'est pas un objet.
    Ligne*: 547
    Caractère*: 5
    Code*: 0
    URI*: http://www.nordmograph.com/component.../mooRainbow.js
    la ligne 547 correspond a:
    var h = this.layout.cursor.height;


    Message*: Cet objet ne gère pas cette propriété ou cette méthode
    Ligne*: 59
    Caractère*: 102
    Code*: 0
    URI*: http://www.nordmograph.com/media/system/js/mootools.js



    voila merci IE, ca pourrait etre si simple mais non...
    Merci surtout a vous qui essayez de comprendre mon probleme
    Images attachées Images attachées  

  12. #12
    Membre chevronné
    Profil pro
    Inscrit en
    Juin 2009
    Messages
    313
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2009
    Messages : 313
    Par défaut
    D'où vient la classe 'Class' ?

    le mot 'class' sous IE le rend toujours susceptible de causer des erreurs. C'est assez pénible d'ailleurs. En l'occurrence, c'est peut-être une piste (Sans certitude de ma part).

  13. #13
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 7
    Par défaut
    Citation Envoyé par kernelfailure Voir le message
    D'où vient la classe 'Class' ?

    le mot 'class' sous IE le rend toujours susceptible de causer des erreurs. C'est assez pénible d'ailleurs. En l'occurrence, c'est peut-être une piste (Sans certitude de ma part).
    hello et merci, et bien je pense que Class ,ca vient de mootools.js. Je suis pas sur que le probleme vienne de la car mootools fonctionne correctement avec d'autres applications javascript sous ie. a voir...

    je m'en sors pas...

Discussions similaires

  1. Erreur sous IE : 'form' a la valeur Null ou n'est pas un objet
    Par Esil2008 dans le forum Général JavaScript
    Réponses: 10
    Dernier message: 30/04/2008, 16h39
  2. [DOM] Erreur JS (valeur null ou n'est pas un objet)
    Par jibeji dans le forum Général JavaScript
    Réponses: 13
    Dernier message: 10/02/2008, 15h42
  3. Réponses: 1
    Dernier message: 22/05/2007, 12h51
  4. 'value' a la valeur Null ou n'est pas un objet
    Par FrankOVD dans le forum Général JavaScript
    Réponses: 7
    Dernier message: 31/05/2006, 08h25

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo