Posts

Showing posts from June, 2012

XivelyDatastream invalid conversion from 'int' to 'const char*'

i trying send digital switch state xively should return 1 closed switch , 0 open.  error message that  says invalid conversion 'int' 'cont char*' new @ , better on hardware end programming appreciated. #include <xively.h> #include <xivelyclient.h> #include <xivelydatastream.h> #include <xivelyfeed.h> #include <countingstream.h> #include <b64.h> #include <httpclient.h> #include <onewire.h> #include <dallastemperature.h> #include <spi.h> #include <ethernet.h> //defines ds18b20 #define one_wire_bus 2 onewire onewire(one_wire_bus); dallastemperature sensors(&onewire); deviceaddress sensor1 = { 0x28, 0xbf, 0x24, 0xa6, 0x04, 0x00, 0x00, 0xe4}; deviceaddress sensor2 = { 0x28, 0xf3, 0x23, 0xa7, 0x04, 0x00, 0x00, 0x32}; deviceaddress sensor3 = { 0x28, 0x48, 0x16, 0xa7, 0x04, 0x00, 0x00, 0x9b}; //end defines ds18b20 //defines cosm ethernet char xivelykey[] = "tqk5y9cwlwebzn3aqr2tdrkyiwk1wiaf7w1jq

Code for Dot Matrix custom icons

hey everybody, i've connected max7219 dot matrix display arduino. code need show custom icons, not regular ascii symbols. want skip 7 icons simpel pushbutton. i've tried lot of example sketches, cannot understand them enough change them purpose. thanks bunch. make chart this, used excel, , translate icon 1s & 0s. send these bytes max72319 display. using hex format makes easy keep program size smaller. can use binary format: 0b00000001 vs 0x01, 0b01000001 vs 0x41, etc. Arduino Forum > Using Arduino > LEDs and Multiplexing > Code for Dot Matrix custom icons arduino

PMS Enhanced - Joomla! Forum - community, help and support

Image
hi, have encountered problem pms enhanced. installed last week , working fine. few days ago error occured , wont go away. weird thing is, error occurs when use opera browser. problem module, doesn't load properly. here screenshot: the error seems reload header in module, error message is: code: select all pms notify unread messages in inbox: innerheight!=document.mm_pgh) location.reload(); } mm_reloadpage(true); //-->           home news forums market place news feeds            home    tuesday, 14 november 2006                         pms notify unread messages in inbox: function pmsnotify_handlehttpresponse_check_unread() { if(http_check_unread.readystate==4) { var old_count_text = document.pmsnotify.old_count_text.value; var old_count_popup = document.pmsnotify.old_count_popup.value; var getdata = http_check_unread.responsetext; var getdata_arr = getdata.split(" if want view error, occur if view site iin opera: thestudenthouse.co.uk/index.php thank can offer okay, have

Brown noise - Python script - Human Speech - Raspberry Pi Forums

Image
good morning everyone! i'm developing script plays human voice in spanish, understand how our voice works started 0 , not app. right i'm playing vowels a, e, i, o , u, different values in main variables, trying different functions in new step want add noise air generated make sounds. first, i'm creating 1 called white noise instruction success!: code: select all speaking_freqlength = int(round(sample_rate/fundamental_frequency)) speaking_resolution = int(round((2**(bit_depth-1)-1)*(1-noise_level))) speaking_noise = int(round((2**(bit_depth-1)-2)*noise_level)) # ---------------------------------------------------- print 'creating noise data' # ---------------------------------------------------- for fx in range(int(round(sample_rate*sound_duration))): speaking_noise_sample[fx] = int(round(random.uniform(-speaking_noise, speaking_noise))) # ------------------------------------------ print 'filling audio array fourier data' # -

Can't find this answer anywhere! Zen Cart update from Excel - Joomla! Forum - community, help and support

okay, ive been trying find answer this, perhaps can't done, perhaps i'm looking in wrong place! is there way of updating products in zen cart through excel spreadsheet? thanks in advance, stuart. not sure why asking zen cart specific questions on joomla forum but... take @ zen cart site http://tutorials.zen-cart.com/index.php?article=153 it points several import utils , advice re importing data Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Arduino Due not working

hi, i have problem new arduino due. have not been able upload program. connecting usb closest power connector results in power led (yellow) , l led (green) on. sure changed com port com9 no change. uploading program result in 2 or 3 flashes of rx led , error in status window: "avrdude: stk500_getsync(): not in sync: resp=0x00" i able succesful looptest (both rx , tx leds flashed on entering characters keyboard i using windows 8.1 64bit laptop. trying install driver comes ide results in "there no better driver found 1 installed" processor on board atsam3x8 assume atmega328 trying burn bootloader resultsd in "avrdude: stk500_getsync(): not in sync: resp=0x00" resetting board @ moment rx starts flashing did not solve problem, have run out of options. i tried other usb (com4). same result except did not see rx led flash. anyone idea? running out of options , forum not give me other clues.   roelof same problem me green led on , y

Compiled Code Size Difference

i wrote small sketch produce ppm output based on analog inputs. i started arduino "uno", switched arduino "micro" due size restrictions. however, when compile same sketch "micro", code quite bit larger, 35%. anyone have reason this? i have assumed since "micro" single cpu board, code smaller. the "uno" uses co-processor output digital levels seem require more overhead shift data cpu "co-processor". there reason. the micro leonardo. use software serial port via usb. uploading sketch or using serial monitor uses software serial port via usb. since bootloader contains code software serial port, both bootloader , sketch larger, , there less available sketch. Arduino Forum > Using Arduino > Programming Questions > Compiled Code Size Difference arduino

Meglio Noobs o Berryboot - Raspberry Pi Forums

quale di queste due utility mi consigliate per creare un sistema multiboot con il restante spazio libero dell'sd condiviso? vorrei provare raspbian e openlec io con berryboot mi trovo bene. facile installare gli os, facile modificae il config.txt. non è richiesto che sia l'utente "flashare" la microsd, ci pensa lui. ti puoi scaricare le immagini che vuoi e poi installarle da una pendrive, anziché rischiare che si interrompa la connessione per dover rifare tutto. lo spazio è condiviso tra gli os senza che l'utente debba intervenire. l'unico contro è che usa un unico kernel per tutti gli os, ma è sempre aggiornato all'ultima versione. questa è un'opinione ovviamente parziale, perché non ho mai usato noobs. raspberrypi

Odd counter problem..

i have 5 leds in circle, when count through them 1 @ time counter clockwise you'd imagine when try & go clockwise nothing happens? here snippet of code amended arduino-shift register example... quote dataarray[0] = 0x10;   dataarray[1] = 0x08;   dataarray[2] = 0x04;   dataarray[3] = 0x02;   dataarray[4] = 0x01; quote // counter clockwise   (int j = 0; j < 5; j++) {     //load light sequence want array     data = dataarray[j];     //ground latchpin , hold low long transmitting     digitalwrite(latchpin, 0);     //move 'em out     shiftout(datapin, clockpin, data);     //return latch pin high signal chip it     //no longer needs listen information     digitalwrite(latchpin, 1);     delay(300);   }     // clockwise   (int k = 4; k < 0; k--) {     //load light sequence want array     data = dataarray[k];     //ground latchpin , hold low long transmitting     digitalwrite(latchpin, 0);     //move 'em out     shiftout(datapin, clockpin, data);     //return lat

Thread: Acer Aspire one - lost panel can't access terminal

hello i'm no means experienced user, have more knowledge friends(been using kubuntu half year or so), i'm time time being asked them. have friend who's having acer aspire 1 ubuntu netbook remix (i think is). convenience thought set windows , panels "classic mode" apps being full screened. when logged out , in panels gone , can't access terminal/run using alt+f2 or meta+f2 (that house presume) there no window decorations presume there's missing window manager, without access terminal i'm not sure do. have no little experience gnome , sort whole deal out, broke friends computer :s http://ubuntuforums.org/showthread.php?t=1134715 . Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu Acer Aspire one - lost panel can't access terminal Ubuntu

mini serre automatique

Image
bonjours à tous, dans le cadre d'un projet nous devons concevoir une serre capable de gérer la température et la luminosité   pour cela on utilise une carte arduino uno ainsi que des capteurs de température et un relais pour allumer les néons ma question est de savoir ou et comment déclarer nos composants car même si il y pas pas mal de tuto dessus les explications ne sont pas super et comme je dois ensuite tout réexpliquer à l'examinateur  je ne veux pas faire un simple copier coller merci =) bonjour, encore un de plus le mieux pour comprendre est d'y aller par étape afin de comprendre le fonctionnement. fais ton code et après on pourra te guider si besoin. prog le capteur de lumière prog le capteur de temp mets le tout ensemble autre astuce, papier crayon shéma de ce que tu veux faire avec les conditions, ca fera déjà 75% de fait et de compréhension. Arduino Forum > Internatio

Mechanical data of Raspberry Pi NoIR camera board - Raspberry Pi Forums

Image
having explored raspberry pi noir camera time, decided build project based on existing noir camera (the 1 have on hand rev 1.3). quite surprising not find mechanical details on raspberrypi.org. closest got measurements made gert van loo. we've made measurements of noir rev 1.3 , uploaded details here: https://www.scribd.com/doc/260849046/ra ... by-fringoe hope work of others do match stuff 2013 at: http://www.raspberrypi-spy.co.uk/2013/0 ... imensions/ raspberrypi

Thread: To all Cedega users - Some Cedega info

Image
hi, have mini 9 netbook running ubuntu desktop 9.04. considering low end computer (1.6 ghz atom , gma 950) suggest me use install , play windows games (spore, american conquest, railroad tycoon 2 , 3, wildlife park 2)? have examined pure wine solution, cedega , crossover games. it's true... cedega it's expensive compared other 2 (expecially wine ) think simple solution doesn't want spend days configuring game make work. want know... cedega intelligent understand if have resolution of 1024x600 can't run of games... (because start in 1024x768...) shortly create virtual desktop, run in windowed mode or this?? unfortunately have spent cedega trial on computer there here has tried cedega netbook? cedega on netbook works poorly @ best. of menus sized @ least 1024x768 resolution, meaning @ many points (especially during installation) have feel way through menus using tab/enter , hope hitti

Filter with checkbox

i attempting build filter add or remove items datagrid. 2 fields filter categories , locations. filter 2 fields checkbox each field. here example. user selects location filters categories available @ location, filters datagrid. user selects category filters datagrid. if user removes check mark, filtered data removed datagrid. filter has ability display items. 1) checkboxe's click event can point same event listener 2) event.currenttarget tell checkbox has been clicked on 3) you'd need maintain list of checked boxes 4) implement filter function based on list , set filterfunction property of arraycolleciton you're using populate datagrid hope helps. atta More discussions in Flex (Read Only) adobe

Can't duplicate a slide ....:S

Image
this issue may sound stupid you, stucked on :s when right-click on slide, see duplicate slide option greyed out (it means disabled). i wonder why? hi albatrozz , welcome our community which version of captivate using , type of slide? if it's version 2 , question slide, cannot duplicate question slides in version. if it's version 3, might need restart captivate or restart pc running on if duplicate slide isn't working. cheers... rick More discussions in Getting Started adobe

arduino mega 2560 serial stuck

hey....! i using mega 2560, when connect 12v-1amp external power supply , can'nt access serial or not show serial port board. please me... do use dc jack plug 12v ? there few possibilities: 1 ) board broken. perhaps voltage regulator blown reverse current. or have bad soldered clone ebay. or applied 12v accidently somewhere on arduino board. 2 ) voltage regulator reduces output if gets hot. if use arduino board power lot of things (like leds) voltage regulator might hot. higher input voltage, hotter gets. Arduino Forum > Using Arduino > Microcontrollers > arduino mega 2560 serial stuck arduino

Programmation Arduino PT 100 (Régulation)

boujour, voilà, je participe à un projet qui est de créer un stylo 3d (concept : faire ce que fait une inprimante 3d dans un stylo) je suis chargé de la régulation de température dans la tête du stylo (le capteur qui sert aussi de résistance utilisé est une pt 100). je dois créer un programme qui doit permettre la régulation automatique de la température autour d'un seuil. l'inertie est d'environ 5 à 6°c donc je voudrais créer mon programme en fixant l'arrêt à mon seuil maximal (soit 270°c en moyenne) et définir seulement un seuil de remise en marche (à envirron 255-260°c). après plusieurs recherche je pense utiliser comme commutateur, interupteur de marche/arrêt un transistor. j'ai trouvé quelques shémas qui me montrent comment raccorder mes composants à ma carte arduino. seulement voilà, j'ai un petit problème, il ne me reste que le partie programmation sur arduino et je ne sais pas du tout comment faire. si vous pouviez m'expliquer comment fair

Text bleibt hartnäckig auf Bühne

hallo, ich habe einen kleinen flash-film, der ende mittels einer schaltfläche die möglichkeit bietet, wieder den anfang zu springen. außer der entsprechenden schaltfläche gibt es noch einen weiteren text. und dieser text bleibt stehen, wenn ich wieder den anfang springe. inzwischen liegen beide darsteller auf eigenen ebenen in einem schlüsselbild im letzten frame. beide ebenen beginnen mit einem leeren schlüsselbild. springt der film von letzten in den ersten frame, bleibt der text trotzdem sichtbar. hat jemand von euch schon mal gehabt? und wie habt ihr das gelöst? gruß sonja schick mir doch mal bitte deine fla datei, dann sehe ich es mir gern mal an, denke das dürfte nur eine kleinigkeit sein gruß modtech "sandros01" <webforumsuser@macromedia.com> schrieb im newsbeitrag news:fsajjf$5ab$1@forums.macromedia.com... > hallo, > ich habe einen kleinen flash-film, der ende mittels einer schaltfläche > die > möglichkeit bietet, wieder den anfang zu spring

Need to read a potentiometer using mcp3008 - Raspberry Pi Forums

hi, trying read potentiometer using mcp3008 adc converter. have followed guides hook pi, cannot run across script display numerical value. messing around here , trying see in action. know nothing programming yet, learning on teamtreehouse.com wonderful website way! try using preferred internet search tool raspberry mcp3008 adc (many of available resources written before 'device tree' became preferred way control external devices, may need 'translate' advice in mind.) raspberrypi

Permission Problem - Joomla! Forum - community, help and support

Image
thanks joomla! software best! my first problem creating new article. have created several articles in past, have problem after up. in content manager hit new. brings new content screen. here many functions disabled. first, intro text: (required) wysiwyg editor disabled. can't click in edit box. second, if hit cancel nothing happens. true both when try edit existing document. reason permissions jacked! thanks help... mike hi mike, welcome forum , joomla!  about problem, it's related faq; http://forum.joomla.org/index.php/topic,336.0.html regards robin Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.x

Aeroponics: using many sensors and outputs with Arduino Uno/Ethernet sheild

so pretty new electronics have background in programming. here personal research project: want see how plants grow using aeroponics (growing plants in nutrient rich fog) , use arduino to  monitor , act timer my  red , blue leds , oscillator. hope monitor through website in process of making sending data arduino uno ->ethernet shield ->xively -> webpage. my problem in wiring of sensors. far have done simple code individual sensors cannot figure how connect them arduino's 1 power outlet. need wire them in parallel or other configuration? i want use ds1307 real time clock module , connect oscillator(a hacked computer fan) , led panel( still working on made of). can totally code have suggestion on wiring? so far these work individually ph meter: http://www.dfrobot.com/index.php?route=product/product&product_id=1025#.uyplpq1dxtd code: [select] #include <xively.h> //xively library #include <spi.h> #include <ethernet.h> #include <httpclient.h>

Rpi2 i2C0 - Error: Could not open file `/dev/i2c-0' or `/dev - Raspberry Pi Forums

hi, i'm trying i2c.0 working on raspberry pi2. i2c.1 working fine. have attached i2c devices , found 'i2cdetect -y 1' need 2 i2c buses need i2c.0 working 'i2cdetect -y 0' "error: not open file `/dev/i2c-0' or `/dev/i2c/0': no such file or directory" can me out here? *** update: solved *** after reading " http://www.raspberrypi.org/documentatio ... ce-tree.md " in /boot/config.txt put # in line "#device_tree=" (i did other trials, pretty sure fixed it) *** have found few posts solutions i2c nothing helping me. far, have done: - apt-get update & upgrade - raspi-config: enables i2c , spi - apt-get install i2c-tools libi2c-dev - installed wiringpi - appended /boot/config.txt:dtparam=i2c_arm=on dtparam=i2c0=on dtparam=i2c1=on dtparam=spi=on dtparam=i2c_vc=on -appended /boot/cmdline.txt: bcm2708.vc_i2c_override=1 - /etc/modprobe.d/raspi-blacklist.conf empty - in /etc/modules have: snd-bcm2835 i2c-de

Arduino yun and I/O expansion shield compatibility

hi all for actual project need use  rs485 arduino yun , decide use i/o expansion shield v5 . i've tested sketch uno , works fine. when use on yun i've problem. i see data coming via serial monitor not rs485 interface. there problemshield yun/leonardo? there's something  modify make works? or in alternative ther rs485 shield works yun ? thank help hi  all, about problem: of course, in i/o expansion v5 move 3 jumpers select rs485. after reading lot of documentation regard yun, understand arduino, arduino leonardo different respect oldest arduino. have read there can problems if use spi library.... don't use it..... in theory should use rx, tx, , digital 2 pin..... , use serial1 class in firmware.... i used first example code shield's wiki doc test (appropriately modified) , first on arduino uno (the original code) , on yun (the modified code), , while first works ( can see trough rs485-usb interface pc letter a), yun can see ff packets (

Product Catalogues - Joomla! Forum - community, help and support

Image
i need find component act product catalogue.  needs have simple interface adding product details, 1 main image , 6 other images (auto-thumbnailed).  'productbook' doesn't work latest version of joomla , other ecommerce components either don't need or they're bit "sledgehammer crack nut".  don't need shopping cart functionality, able have product listings. does have suggestion?  Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

1wire Dallas DS18B20 High Temperature error 127 - Raspberry Pi Forums

Image
hi had post in case others have same problem. searched days on net found nothing. here goes: have 6 of these temp senders attached single 1 wire pin on pi. i'm boiling water make distilled. work ok @ temps under 50 degrees c. found through trial , error whenever temp raised above 50, reading 127.937. when temp fell, start reading below 50. when reading other 127, temps right (i checked hand held ir thermometer). problem? checked resistor, 4k7, specified, has installed separate 1k0 resistor drop voltage led. had wired wrong, , voltage across temp sensors (when worked out left check) 3.0 volts, not 3.3 being supplied pi. shorting on 1k resistor raised voltage, , presto!, douglas adams said, add nice fresh cup of tea, , ~98c! doubt stupid me, but, if reading this, might you. raspberrypi

Thread: Dual Screen extends desktop instead of 2nd screen

when set dual screen on laptop 2nd screen extends original desktop instead of making screen2 = virtual screen 2...? how fix this? have tried 'detect monitors' in system>preferences>display? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Dual Screen extends desktop instead of 2nd screen Ubuntu

ADXL345 to Distance

Image
hello my name ahmed mohamed. master thesis student @ university of ulm in germany. i using adxl345 in project , want ask question accelerometer axes. assuming adxl345 placed on horizontal surface following axes definition: the x-axis points forward the y-axis points right the z-axis points downward (into horizontal surface) assuming adxl345 moves on horizontal surface right left (i.e along y-axis). in case: should integrating x-axis or y-axis reading ? thanks guys important please send me replies Arduino Forum > Using Arduino > Sensors > ADXL345 to Distance arduino

PS CS2 and Win2K

is there way take flash gallery 2 build page layout , function, change code images populated database? instead of rebuilding gallery everytime change image? ps cs2 windows 2000 just noticed should have been subject not other... "dc" <dan_cha@hotmail.com> wrote in message news:e82371$bcf$1@forums.macromedia.com... > there way take flash gallery 2 build page layout , > function, change code images populated > database? > instead of rebuilding gallery everytime change image? > > ps cs2 > windows 2000 > > More discussions in Dreamweaver support forum adobe

Joomla ting... - Joomla! Forum - community, help and support

Image
... ja endnu et firma bruger lightbox eller noget der ligner, den kan ses http://e-avis.avisen.dk/ og ja det er nyhedsavisen som jo er en gratisavis, jeg vil med det samme lige foreslÃ¥ @ man kigger pÃ¥ odense sektionen pÃ¥ side 4 og 5, jeg er godt nok ikke pÃ¥ de billeder men jeg arbejder dette hus kaldet infohuset. som tv-glad , men ogsÃ¥ med handikappede, altsÃ¥ ? har haft lidt med tv-glad esbjerg @ gøre - det var spændende  Board index Joomla! International Language Support International Zone Danish Forum Diverse (Off topic)

Thread: WebCam Sony Vaio vgn-fz470e not working

Image
hey guys, i've been reading lot of solution installing vaio webcam didn solve problems. vaio fz470e , webcam model is: bus 005 device 002: id 093a:2500 pixart imaging, inc. usb optical mouse bus 005 device 001: id 1d6b:0001 linux foundation 1.1 root hub bus 002 device 001: id 1d6b:0002 linux foundation 2.0 root hub bus 007 device 004: id 044e:3012 alps electric co., ltd bus 007 device 003: id 044e:3013 alps electric co., ltd bus 007 device 002: id 044e:3011 alps electric co., ltd bus 007 device 001: id 1d6b:0001 linux foundation 1.1 root hub bus 006 device 001: id 1d6b:0001 linux foundation 1.1 root hub bus 001 device 002: id 05ca:183b ricoh co., ltd bus 001 device 001: id 1d6b:0002 linux foundation 2.0 root hub bus 004 device 001: id 1d6b:0001 linux foundation 1.1 root hub bus 003 device 001: id 1d6b:0001 linux foundation 1.1 root hub have idea how can install it? i'll waiting help! i'm kinda noob linux/ubuntu if give me details lot!

Help Fast!!!

ok using flash mx 2004 create 3 random images. put code in each of them. (they movie clips) on(rollover) { mouse.hide(); } on(press) { startdrag(this); } on(release) { stopdrag(); mouse.show(); } on(rollout) { mouse.show(); } so test movie out. works fine. want swf file flex 2. won't open. please use descriptive subject posts. many of busy read oll messages. i not know flash, preferred method of using flash assets in flex compile them swc. might not possible version of flash. tracy More discussions in Flex (Read Only) adobe

gotoAndPlay instead stops

hello, i have script within frame initiates stop, time delay, , gotoandplay () - see attached code. works great! however, when gotoandplay (2) stops in frame 2 rather playing point. in fact can nicely go frame want - long want stop there. there no other scripts or hidden stop () commands lurking anywhere. clean , open timeline. whats deal? any - appreciated. steve you have onenterframe function running continuously, after think you've finished it. so, happening when if condition returns true first time, playback head jump forward frame 2. however, onenterframe function continue run. , if condition still true, , playback head pulled frame 2, on , over, , over... what want kill onenterframe function when finished it. can putting &quot;delete onenterframe&quot; after gotoandplay(2); line. alternately, use setinterval function , use clearinterval remove event. More discussions in ActionScript 1 and 2 adobe

Problem sa Joomlaboard - Joomla! Forum - community, help and support

postavio sam joomlaboard ( joomlaboard forum component 1.1.2 stable )  sve je ferceralo super "jednom."  svi forumi teme stoje kako su bile, naslovi postova takodje su tu.. ali kad kliknem na naslov posta, umjesto teksta dobijem ovo: neispravan id. \n nova tema se moze kreirati ali kad kliknem na "nova tema" ne pokaze mi editor nego praznu stranu foruma... pliz help ako se nesto "pobrka" sa forumom.. je li moguce nekako izvuci postove pa ih ubaciti u nanovo instalirani forum ili nesto slicno.. ? Board index Joomla! International Language Support International Zone Bosnian Forum

Teamspeak Module Help - Joomla! Forum - community, help and support

Image
im sorry im new joomla im not sure forum section goes put in general.. i downloaded , installed following teamspeak module use website, http://developer.joomla.org/sf/projects ... peak&nbsp;   (1.0.2) im wondering if there anyway change font colour of room titles black, , template has black background unreadable unless put mouse cursor on it. my page loacted at: http://www.zenith-elite.frih.net and teamspeak module located mid way down right hand side. i think can see mean regarding problem. if has ideas appreciated cheers, brandonberg have tried going module's html (or css if 1 exists). you'll have manually through ftp or whatever. if don't contain you're after, go template's css (site, template manager, select current template , click edit css) @ defined colours, , you'll looking #000000. change whatever colour wish. keep in mind may else on site, since don't see black writing can safely assume it's correct one, make backup first.

DocMan WYSIWYG editorn glider utanför! - Joomla! Forum - community, help and support

när jag skall ladda upp filer via docman så vid steg 3 av 3, då man skall välja kategori, samt där under kan skriva en beskrivning så glider rutan med wysiwyg editorn ut till höger utanför själva templaten, någon som har en lösning? se bifogad bild! ingen som råkar ut för detta problem? jag har samma problem både lokalt med jsas men även skarpt på nätet. det spelar ingen roll vilken template som jag använder. det blir så här med både jce editorn samt tinymce Board index Joomla! International Language Support International Zone Swedish Forum Äldre versioner Forum Joomla! 1.0 Komponenter, moduler och Mambots

Fireworks with Dreamweaver 8

i download fireworks cs3 , have dreamweaver 8. try photo album on dreamweaver , programm told me need fireworks 4 or better. download programm , try again after install , didn't work again. dreamweaver don't see fireworks install. programm fireworks install on desk in moment in file. have connect dreamweaver fireworks? thank every one. i'm not sure why dreamweaver giving message of needing firework 4. open dreamweaver , select image on page. see fireworks logo in properties section? if do, click on , see if opens fireworks cs3. if does, dreamweaver sees fireworks. if doesn't, may want check file types/editors in preferences section of dreamweaver. is photo album that's preinstalled dreamweaver 8, or third-party extension? if it's extension, check vendors site compatibility. if photo album built-in, maybe simple uninstall , reinstall of both applications solve problem. first, let's determine dreamweaver fireworks communication problem. ~michael More di

I still need help!!!

i've downloaded trial version of fireworks cs3 , not install. tells me required resources missing. same photoshop. i've gotta installed! me please! b'mer wrote: > i've downloaded trial version of fireworks cs3 , not install. > tells me required resources missing. same photoshop. > i've gotta installed! me please! > try downloading trial again, if still doesn't work try contacting adobe support. best suited in matter. -- jim babbage - .:community mx:. & .:adobe community expert:. http://www.communitymx.com/ communitymx - free resources: http://www.communitymx.com/free.cfm --- .:adobe community expert fireworks:. adobe community expert http://tinyurl.com/2a7dyp --- see work on flickr http://www.flickr.com/photos/jim_babbage/ More discussions in Fireworks adobe

a scrolling field in front of a stable background.

how make scrollable field in front of stable background. looking make page has pics , text on top of stable background. background gradient seems easier making long page make gradient appear weird. in css use this: body { background-image: url('your_image.gif'); background-attachment: fixed; } to see example: http://www.w3schools.com/css/tryit.asp?filename=trycss_background-attachment --nancy o. alt-web design & publishing www.alt-web.com "shadowrelm" <webforumsuser@macromedia.com> wrote in message news:fo29om$8nd$1@forums.macromedia.com... > how make scrollable field in front of stable background. > looking make page has pics , text on top of stable background. > background gradient seems easier making long > page make gradient appear weird. > More discussions in Dreamweaver support forum adobe

Help With my first project?

this first project arduino. familiar if statements , variables , such 2 , half years of working tasker android. first project arduino control tv using arduino xbee , tasker. have basics figured out but, hit hickup. when try power on , off or channel or down ect. have no issues when put them in code stuck ir led on , never shutting off? here example of code using... did wrong appriciated. // see full tutorial @ http://www.ladyada.net/learn/sensors/ir.html // code public domain, please enjoy! int irledpin =  13;    void setup()   {                   serial.begin(9600);   pinmode(irledpin, output);        serial.println("ready");   } void loop()                      {   delay(10);   onoffcode(); if (serial.available() > 0)   {     int data = serial.read();    // read incoming byte:     switch(data)     {       case 'a' :  serial.println("on/off"); onoffcode();   break;       case 's' :  serial.println("channel up"); programp

Tangram - Raspberry Pi Forums

what tangram? sounds sort of program read maps? can use gps coordinates , visualize them on map? sorry last post "misconceptions pi 2". not trying funny wanted clear roomers pi 2 have heard , ever pi made pis equal. had no idea people take was saying racist. sorry liz , other raspberry pi foundation members. sorry that offended them. https://www.google.co.uk/search?q=tangram&oq no idea - did see ? raspberrypi

Romeo sample code problem

greetings, i new , purchased dfrduino romeo v1.1. i have 2 motors hook m1 , m2. with default code come romeo the romeo able turn 2 motors when turned on romeo. then, come across link http://www.dfrobot.com/wiki/index.php/dfrduino_romeo-all_in_one_controller_v1.1%28sku:dfr0004%29 and decide give sample codes below try.  after compiled , uploaded romeo. the motor stop working , green light stop blinking well. no quite sure go there , how start sample codes test out m1 , m2. would guys provide guidance on how start here. where can download orginal codes? what need modify in sample codes these 2 motor working again? thank much, t ****************************************************************** //standard pwm dc control int e1 = 5;     //m1 speed control int e2 = 6;     //m2 speed control int m1 = 4;    //m1 direction control int m2 = 7;    //m1 direction control ///for previous romeo, please use these pins. //int e1 = 6;     //m1 speed control //int e2 = 9;     //m2 speed cont

using cfinput type date

hi, using tow fields of type date , use them within form consecutive fields, means have put them after each other. when click on calendar shows second field in middle of calendar, there option can put on top calendar? <tr > <td width="70"><label for="fec_salida"> <div align="right" class="contsubtit6">fecha salida:</div> </label> </td> <td> <cfinput name="fec_salida" maxlength="25" type="datefield" size="10" value="#fec_salida#"> </td> </tr> <tr style="padding-top:10px"> <td width="70" ><label for="fec_entrada"> <div align="right" class="contsubtit6">fecha recibido:</div> </label></td> <td width="100%"> <cfinput name="fec_entrada" maxlength="25" type="datefield" size="10&q

Size problems with adafruit TFT 2.8inch screen - Raspberry Pi Forums

Image
ok, first post , i'm new linux or raspberry. have bought raspberry 2 adafruit 2.8inch tft screen. took while figure out how working does, more or less. runs raspbian when go graphic interface startx problem when go preferences instance shows me options can select, once selected menus blown up, parts aren't reachable. there doesn't seem logical way make zoomed out. care me out this? don't have hdmi screen, old vga screen, bought myself darn expensive converter, worked once after few start attempts, stopped working , hasn't worked since. @ moment i'm stuck small tft screen . raspberrypi

stop() from document class

hello, can stop() work correctly within constructor of document class define new movielip object , instantiate (also within constructor) stop() function ceases work. i need stop newly instantiated movieclip, in order make overall timeline stop. can please tell me doing wrong ? thanks kindly quite when timeline fails stop because code didn't compile because of error. have looked in output window? More discussions in ActionScript 3 adobe