Posts

[réglé] docman et tinyMCE - Joomla! Forum - community, help and support

  bonjour, j'ai un probleme avec tinymce quand il est utilisé par docman. sous mozilla/firefox, au lieu de bien ranger ses icones sur 3 lignes au dessus de la zone de saisie de texte, tinymce met tous ses icones sur une meme ligne, plus grande que la largeur de la fenetre, decalant ainsi les icones de sauvegarde/annulation etc. bref, mes utilisateurs vont raler. sous ie, c'est pire, les icones sont toujours tous sur la meme ligne, mais la ligne est tronquée ! donc, la moitié des icones est invisible! pour autant que je me souvienne, je n'avais pas ce pb avant la 1.0.7.... j'ai essayé de re-installer tinymce, docman, rien n'y fait. une idée quelqu'un ? merci d'avance, jc   re, je me reponds à moi meme... en esperant que ca serve à d'autre. c'est lemoun qui trouvé la soluce voir  http://forum.joomlafacile.com/showthread.php?t=8083 ca marche avec mozzila, firefox, ie... enjoy, jc Board index Joomla! International Lang...

Does one Need to Slow Down Processing in Order for Arduino to Catch Up?

i have processing , arduino communicating on com port fine. com port through usb , attached arduino mega 2560, on win xp. there lcd serial controller bv4618, attached arduino. lcd's serial controller using pins 4 & 5 serial rx/tx. communication between arduino , lcd set 9600 baud, otherwise silly korean characters. i wrote simple processing test program sends few strings down , arduino happily receives them , displays them on lcd. tried speeds 57600 baud , works fine. but problem need put delay(900); statement processing code, otherwise arduino stops receiving data. in other words, if processing delay 900 or higher, arduino shows received data on lcd. if drop processing delay 800, arduino stops showing data received data, although little rx led on arduino blinks sign went in. now, testing. end product needs processing/arduino code works fast possible, without delay 1 second long. not know how serial works. how can avoid having delay(900) on processing side? here proce...

utf-8支持 - Joomla! Forum - community, help and support

最近用php做个小站需要使用utf-8字符集 后来在joomla1.1的源码中发现了utf-8字符处理函数 老外的水平还是高! \libraries\phputf8\* ----------------------------------- 大家有兴趣的话,可以看看以下的blog utf-8 matters http://dev.joomla.org/component/option, ... d,33/p,70/ 1. rss parser 2. xml parser 3. xml-rpc parser 4. pdf library 以上在1.5中将支持utf-8字符集!! 大家就是在等utf-8啊 Board index Joomla! International Language Support International Zone Chinese Forum

Potentially stupid question about Numitron tubes

...can use max7219 drive 'em? i've been perving on iv-9's , looking @ voltage/current requirements, doesn't seem million miles away led need, long current set resistor chosen (i have lookup table). fancy quirky, interesting display play with, , it'd handy if can drive them parts own. i have bcd 7seg logic chips dozen too, fewer parts have use, better. also, there recommended socket/retainer type people use these things, save me potentially buying wrong ones , being stuck them? see have long leads rather fat "valve" pins on bottom. the "numitron" tube developed rca in 60's or 70's low voltage replacement "nixie". uses 20 volts on digit anodes (works @ 12 v.. in direct experience) has filament tat must powered (1.5 - 6 volts @ 100 - 500ma) depends on spec part. not familiar russian iv series principles same... take great deal of work interface max7219. used cd4017's decade counters , drove...

Connecting two rfid readers (ID-12 innovations) at the same time to the arduino

Image
dear forum, currently working on (for me) complex project create physical calendar can read rfid tags. one of interactions want have me first identify tag on central interface, can speak message, can put rfid tag on calendar, when second reader comes tag read message me. use id-12 innovations rfid reader. the problem have 2 rfid readers, way initialize it: .... newsoftserial rfidserial =  newsoftserial(rfid_rx, rfid_tx); .... setup(){ rfidserial.begin(9600); ... } this works when use single rfid reader. then when want same again second rfid-reader in same code takes reader inititalized last (rfidserial.begin(9600) . is possible create 2 newsoftserials? this how connected reader (i connected them 3,4,5,6 instead of 13,0 in image): quote is possible create 2 newsoftserials? it possible make 2 instance of newsoftserial, 1 instance can listen @ time. need arduino has more 1 hardware serial port, or need connect 1 of rfid readers hardware serial port. ...

(ot) Presentacion Cd

como puedo hacer una presentacion en flash con mis trabajos y que al meter el cd se ejecute solo? lo publicas como exe y le pones en el mismo directorio un autorun.inf, que es un archivo de texto con la extensión cambiada, que diga: [autorun] open=mi_archivo.exe icon=logo.ico label=mi archivo eso es todo salu2 `8¬} juan muro "sergio_sx1" <sergio.delatorre@hotmail.com> escribió en el mensaje news:enefhj$7l7$1@forums.macromedia.com... > como puedo hacer una presentacion en flash con mis trabajos y que al meter > el cd se ejecute solo? > More discussions in Foro en español adobe

Generateur de fréquences

bonjour, voici un générateur de fréquence de 30hz à 8mhz qui se pilote par deux boutons poussoir et un potentiomètre de 1k il peut être piloté par la liaison série, et dispose d'un afficheur deux lignes. en espérant que sa peut aider pour un projet. code: [select] #include <liquidcrystal.h> int prescaler=0; int presc=0; int pcpresk; int plus=0; int moin=0; int plusa=0; int moina=0; float frekpc=0; unsigned long frek=0; unsigned long freq=0; unsigned long foc=0; liquidcrystal lcd(12, 10, 5, 4, 3, 2); void setup() {   serial.begin(9600);   lcd.begin(16, 2);   pinmode(11, output); //sortie fréquence   pinmode(9, output);  //bouton poussoir   pinmode(8, output); //bouton poussoir     //configuration timer   //mise à zéro des registres   tccr2b = 0;   tccr2a = 0;     tccr2a = ( 1<<wgm21/*ctc mode*/ | 1<<com2a0 /*toggle mode*/  );   tccr2b = (  1<<cs2...