Posts

Menu a due livelli - Joomla! Forum - community, help and support

vorrei realizzare un menù due livelli simile quello di http://www.joomlaitalia.com : esiste un componente/modulo da scaricare che lo implementa ? grazie jpse jpse wrote: vorrei realizzare un menù due livelli simile quello di http://www.joomlaitalia.com : esiste un componente/modulo da scaricare che lo implementa ? potrebbe trattarsi semplicemente di due topmenù con tag diversi gestiti dal css, non ci vedrei niente di strano. prova farlo così ciao Board index Joomla! International Language Support International Zone Italian Forum Componenti - Moduli - Plugins

Conditional Statement Help Request

i have arduino esplora rev04 board. trying make controller 1 of games , use linear potentiometer item selector. have written series of loops intent of checking state , if has changed print new result if has changed code: [select]   int lp = esplora.readslider();   int lp1;   int lp2;   if (lp > 918) lp1 = 1;   if (lp < 917 && lp > 816 ) lp1 = 2;   if (lp < 815 && lp > 714) lp1 = 3;   if (lp < 713 && lp > 612) lp1 = 4;   if (lp < 611 && lp > 510) lp1 = 5;   if (lp < 509 && lp > 408) lp1 = 6;   if (lp < 407 && lp > 306) lp1 = 7;   if (lp < 305 && lp > 204) lp1 = 8;   if (lp < 203 && lp > 102) lp1 = 9;   if (lp < 101) lp1 = 10;   if (lp1 != lp2 , lp1 == 1) { keyboard.write('1'); lp2 = lp1; };   if (lp1 != lp2 , lp1 == 2) { keyboard.write('2'); lp2 = lp1; };   if (lp...

Sending a welcome message - Joomla! Forum - community, help and support

hi there, can please tell me how go sending new users automatic message in joomla site after have registered? i'd able inform new users options available in user menu , contact queries. i've been using joomla 3 days , cannot find messaging feature. thanks help. chris. by default, when user registers receive automated message. to change message, need edit language file. eg joomla\language\english.php Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Serious problem with load movies

hello! i have complex code (at least me) kglad helped me in everything. everything working 1 exception: if swf supposed loaded in 1 target don't exist, target stays empty. i know if there code says: if document don't exist, load next swf exists in target. please tell me possible. appearance of movie awful. have 1 target occupied, 2 targets empty , occupied. by way, have problem. in movie, when targets loaded, have button "go back". when press button can see check boxes have selected but, if want press "submitbtn" , or same, selection, no movie loaded. ask if there way "refresh" or make "submitbtn" work twice. help me!!! thank you! i need make work. please me! don't know else can do! More discussions in ActionScript 1 and 2 adobe

Sample program to read TI HDC1000EVM - Raspberry Pi Forums

here sample program in python2.x read texas instruments hdc1000evm code: select all import serial #sample program read texas instruments hdc1000evm #initialization , open port #possible timeout values: # 1. none: wait forever, block call # 2. 0: non-blocking mode, return # 3. x, x bigger 0, float allowed, timeout block call ser = serial.serial() #ser.port = "/dev/ttyusb0" #ser.port = "com4:" #ser.port = "/dev/ttyacm1" ser.port = "/dev/serial/by-path/platform-bcm2708_usb-usb-0:1.2:1.0" ser.baudrate = 115200 ser.bytesize = serial.eightbits #number of bits per bytes ser.parity = serial.parity_none #set parity check: no parity ser.stopbits = serial.stopbits_one #number of stop bits #ser.timeout = none #block read #ser.timeout = 1 #non-block read ser.timeout = 2 #timeout block read ser.xonxoff = false #disable software flow control ser.rtscts = false #disable hardware (rts/cts) flow control ser.dsrdtr...

dynamically rotating info from database onto webpage

i'd rotate information queried mysql database php. basically, want able load news stories our church website , have them automatically scroll through stories on home page link entire story. have seen done on many sites, , create flash, want have option updated give log in credentials. can point me towards tutorial or somehow in right direction accomplished?? many thanks.... xml driven flash scroller javascript driven scroller consider spry accordian may nicer people waiting news appear... can go right headlines interest them , colapsable menu looks cool too. More discussions in Develop server-side applications in Dreamweaver adobe

How do you communicate with a computer and an Xbee using an uno?

hi all, my current project use xbee, uno , computer. want set system uno receives data xbee, processes , sends computer. in future project need run on intel galileo board, similar uno , has same i/o pins , software serial library not supported. as know can communicate either xbee or computer using hardware serial, pins 0 , 1, standard xbee shield won't work. can't use seeedstudio xbee shield because uses software serial library. i had idea might possible use xbee adapter or uno , xbee shield , comunicate using i2c or spi don't know how feasible be. has encountered problem before , how solve it? quote in future project need run on intel galileo board, similar uno , has same i/o pins , software serial library not supported. then, isn't "very similar". should start intel galileo, use capabilities present on board. Arduino Forum > Using Arduino ...