Posts

Showing posts from May, 2011

ADC Pi Question - Raspberry Pi Forums

hi all, have written menu program taking input keypad , outputting 16x2 lcd screen. have got adc pi attached, , able execute , edit demo program have. have realised menu written in python , adc pi demo written in python 3. i'm not sure next. should try convert progarm p3 or other way around? benefits? long shot maybe, have python (not 3) script adc pi? cheers, matt i think adc pi code written in python 3 because uses quick2wire written python 3. @ least comment says in code have been using. have drive adc pi different way away python 3. did write code drive 16x2 lcd yourself? if not did code? raspberrypi

Thread: Ubuntu isnt saving animated gif's

i try save animated gif webpage , saves normally. no animation or anything. keep same .gif format hi ifuzo. need install gthumb. it's in synaptic , add , remove. default image viewer doesn't animated gifs. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Ubuntu isnt saving animated gif's Ubuntu

RS232 Serial Communication with a digital multimeter

hi everybody, i have digit programmable multimeter hm8012 (hameg instruments) has rs232 serial communication. i want plug in tx1 rx1 (pins 18/19) of arduino mega2560 , read multimeter computer (which plug arduino through usb). i've read manual know commands, 1 current value of multimeter (s?<cr>      <cr> = carriage return). i wrote in arduino doesn't work @ all, i'm receiving random values. the manual indicates settings (4800 baud, 8n1) : "each control must have 2 ascii code characters followed character 13 (<cr>). on reception of terminator <cr> equipment sends character 19 (<dc3>) indicate dialogue suspended. possible resume dialogue, instruments sends 17 (<dc1>)". i tried wrote little test doesn't work code: [select] int octet = 0; char caractere = 0; string chaine = ""; int octet1 = 0; char caractere1 = 0; string chaine1 = ""; boolean flag = false; boolean flag1 = false; b...

Access NFS from remote LAN - Raspberry Pi Forums

hi all, installed nfs on mi raspberry, , works, in fact i'm using in home lan. (very slow big files) don't succeded access office. not comunication problem, cause can access in ssh dyndns. problem i'm not expert of nfs. can me? lot did forward ports (port 22) in router ssh work ? http://serverfault.com/questions/377170 ... to-use-nfs raspberrypi

Arduino Mega als Schaltcomputer missbrauchen

hallo zusammen, erst mal meinen glückwunsch zu diesem guten und informativen forum. ich bin neu hier im forum und brauche infos bzw. hilfe. mein name ist heinz, bin 59 jahre und ich bin selbstständiger handwerker. da es in den 90´jahren bei uns im gewerbegebiet immer wieder zu einbrüchen kam, habe ich mir mittels c-control zwei systeme aufgebaut eines für licht eines für rollladen. dem c-control waren ein erhaltungslader mit batterie, ein dcf77 modul und eine relaisplatine mit 16 relais für die 8 rollladen (2 relais pro rolllade für rauf und runter) angeschlossen. um eine echte anwesenheit für den büro- und werkstattteil vorzutäuschen habe ich für jede rolllade und für jeden tag andere schaltzeiten programmiert (war sehr viel tipparbeit). zusätzlich habe ich 4 programme gehabt für jede jahreszeit eines, da der speicher vom c-control nicht besonders groß ist musste ich das aufteilen. diese ganze einheit lief bis heute ununterbrochen (13,5 jahre)  vom 1.11.1999 bis auf eine...

What hardware can I use to ring a bell? (literally!)

Image
i tried ringing bell servo had lying around way slow , since musical application i need thing respond fast . it doesn't need have lot of torque since arm that's ringing bell lightweight (made out of instamorph actually). by way, need @ least dozen of these if suggestions on cheap side great maybe solenoid job. Arduino Forum > Using Arduino > Project Guidance > What hardware can I use to ring a bell? (literally!) arduino

Thread: Going bald 'cause of error 17

Image
a while ago installed ubuntu 8.10 on laptop, couple of months until got sick of not being able run usual windows applications , tried reinstall windows xp home (i know, know, it's stupid reason want go windows). after windows refusing install found ubuntu wouldn't work either now, put ubuntu 8.10 disk in , chose reinstall , start fresh again told me not partition. stage getting extremely frustrated , turned off laptop , left couple of weeks. whenever try boot laptop following message after post screen: grub loading stage1.5 grub loading, please wait... error 17 error driving me crazy. have tried searching forums solution people running both windows , ubuntu. , solutions appreciated. in advance. try installing ubuntu again, pay particular attention hard disk partitioning part. instead of having shrink drive (to try , co-exist operating system), tell use entire drive. should remove half baked window...

Timing system with RPi - Raspberry Pi Forums

Image
hello! new forum since half year ago bought raspberry pi, have been making nice projects it. alpine skier , next try out timing system. when starting round going trough start gate. time time starts run , when @ end going through finish line - time stops. want add split times developing skiing. split times can calculate avg. speed between gates , helps show how losing speed , slowing down example when making mistake during round. idea pretty simple: 1. opening start gate should send start signal rpi , time starts run. 2. when hitting gate has shock sensor in transmitter send split signal rpi show split time. (for example start 5. gate) 3. there can many splits (up 60) showing time example between gates 2-3 or 5-8. 4. when going through finish line (ir-ray or alternative laser), finish component should send stop signal rpi. 5. rpi show skier's time , split times. more developed in future transfer data rpi computer , build paragraphs combine results skiers , synchron...

Xbmc on raspbian for novices - Raspberry Pi Forums

hey want install xbmc on same sd card raspbian. trouble i'm running don't know editing files or doing more basic stuff in terminal. wondering if knows of more n00b friendly instructions online. hope i'm not wasting anyone's time appreciated. -thanks it recommended if need xbmc capabilities use dedicated operating system, either openelec or raspbmc http://wiki.xbmc.org/index.php?title=ho ... spberry_pi raspberrypi

interfacing with a temperature sensor

i have absolutely no experience temperature sensors. interfacing stlm20 temperature sensor, datasheet can found here: http://www.st.com/web/catalog/sense_power/fm89/sc294/pf129199 anyway connection quite simple, have question regarding transfer function.....what , how can use measure temperature? that type of sensor generates voltage proportional temperature have connect 1 of arduino's adc inputs. the transfer function equation shows how calculate temperature voltage (or vice versa). reorganizing linear equation on page 6 slightly, output voltage v @ temperature t (celsius) given by: code: [select] v = 1.8663 - .01169*t a simple example when temperature 0 degrees c, output voltage 1.8663v. for use arduino, measuring voltage on adc , calculating temperature that. reworking equation solve t gives: code: [select] t = 85.543*(1.8663 - v) so, example,  if v=0 t=159.65c the problem device, evident tables on pages 6 , 7, accuracy varies depending upon r...

Help with timing function

first here code: code: [select] void f_countdown() {   if (clearlcd == true) {     lcd.clear();     clearlcd = false;   }     lcdbacklight(0, 0, 255); // blue   lcd.setcursor(2, 0);   lcd.print("time started:");     // if second has passed subtract allowedplaytime   if (millis() - currentmillis > 1000) {     allowedplaytime = allowedplaytime - 1000;     currentmillis = millis();     f_timedisplay();       // if there less 5 minutes of playtime left start sounding audible alarm @ interval defined.    if (allowedplaytime <= 300000) { // 5 min     if (millis() - lastwarningtime > warningbeepinterval1) {       f_warning1();     }     // or if there less 10 seconds of playtime left start sounding audible alarm @ interval defined.   else if (allowedplaytime <= 10000) { // 10 seconds   ...

Why can't I regress to an older version of my project?

Image
hi, related post on forum http://forum.arduino.cc/index.php?topic=169759.0 here's edited, highlights.... my project has been growing on months, (both in functionality , size), on last couple of weeks it's expanded point compiles on 128 kbytes on mega 2560 (not sure if relevant) during period noticed started occasional bug, code compile , upload normal without error. when run seemingly random string of 100 numerals , nothing further. (exactly same string every time -see above post details) initially took occasional glitch, , discovered around compiling , uploading unrelated sketch onto board instead, , re-compiling , loading project (sometimes have repeat process several times work). occasional error, time progressed (and project got bigger) problem occurring more frequently, , work-around having run more times project work. i've made few more changes code, , seem have reached point error occurs, , work-around never works! ok, annoying bit. every time i've b...

Graphics and layout missing after install (Firefox only) - Joomla! Forum - community, help and support

Image
hi all, maybe here can shed light on issue having. have installed , configured joomla on few machines, having troubles latest client. running following: cihost dedicated linux box apache 1.3.33 mysql 11.18 / 3.33.56 php 4.3.10 i noticed when loaded browser install graphic displayed joomla! logo. else text (no layout, tables, etc.) continued installation, hoping wouldn't on installed site. wrong, missing graphics , formatting. can see going on @ actual website: http://www.gsltportal.com . have ideas might cause this? have uploaded config file checked .png in mime list. stumped.  thanks help. corey kinard i don't undersatand problem. site looks correct install of default template. can suply more deatils on bothering you? Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

Lichtschrankengitter

hallo liebe community, mein name ist fabian und ich studiere maschinenbau. außer einer kleinen "grundlagen der elektrotechnik" vorlesung bin ich nicht ganz vertraut mit dem thema. entschuldigt mich also, wenn ich mich nicht ganz richtig ausdrücken kann. zu meinem problem: im rahmen einer studienarbeit soll ein "intelligentes mülltrennsystem" entwickelt werden. eine funktion des trennsystems soll sein, zu erkennen in welchen schacht abfall rein geworfen wird und je nach dem spezifische informationen zu dem verwertungsweg oder der  co2-einsparung (bei kunststoff) anzuzeigen. ein schacht hat ca die maße 25x40cm. es geht dabei um restmüll oder biomüll... als kleinstes objekt habe ich mir einen teebeutel ausgesucht, der nach möglichkeit noch registriert werden soll. eine oberfläche habe ich in visual basic schon programmiert und über einen arduino uno und einen normalen button werden über die serielle schnittstelle die informationen auch schon angezeigt. di...

tester une carte Arduino MEGA

bonjour, voila le problème: j'ai acheté une carte mega 1280(avec atmega 1280) mais sans bootloader, et le soucis c'est qu'après avoir réussi graver le bootloader avec une autre carte arduino uno (arduino isp) et bien... cela ne fonctionne pas... j'ai testé énormément de solutions trouvées sur google et aucunes ne fonctionne. c'est pour cela que je soupçonne un problème matériel et non logiciel. donc ma question est la suivante: comment tester une mega 1280 ? il y t-il des tensions de références? ou autres techniques? merci ps: pour info j'ai une autre carte arduino (uno) qui fonctionne parfaitement bien et elle quand je la branche et que je sélectionne le bon com et le bon type de carte, marche correctement. en revanche quand je branche la mega le com 3 n'apparaît plus et quand j'essaie de téléverser un programme il y cette erreur: avrdude: stk500_getsync(): not in sync: resp=0x00 pour gagner du temps voici les solutions que j'ai essayé et ...

Strip Characters from String?

hi, how can strip off characters end of string? not @ regular expressions perhaps may not need one? here data first_name_510 last_name_2267 i need function strip off right including underscore. should left below: first_name last_name any highly appreciated regards if underscore, , last one, should the trick: #left(string, len(string)-len(listlast(string, "_"))-1)# string assumed variable holding text azadi saryev sabai-dee.com http://www.sabai-dee.com/ More discussions in ColdFusion adobe

Thread: Getting different Desktop Environments

Image
i'm trying able choose between "de"s @ login. found once while googlin' around, can't seem find again. i'm runnin' ubuntu jaunty install, i'm runnin' gnome. how install , switch between gnome , xubutnu, or kde @ login. per sig, i'm looking more xubuntu gui(xfce?) appreciated! thanks! run @ terminal: 'sudo apt-get install kubuntu-desktop' kde 'sudo apt-get install xubuntu-desktop' xfce 'sudo apt-get install fluxbox' - personal recommendation Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [all variants] Getting different Desktop Environments Ubuntu

Powering an Arduino Mini Light rev 05

hi, i'm looking guidance on how correctly power arduino mini light 05. i'm powering through arduino duemi board using 5v pin , know options have powering device! i'm using board led lighting project 12v leds. possible use 12v power arduino mini? can somehow voltage down 9v or 5v? should prefer 9v on 5v? i'm electronics noob please keep in mind when answering! thanks lot http://www.hwkitchen.com/products/arduino-mini-05-light/ "operating voltage 5v" "input voltage 7-9 v" looks can feed regulated 5v or unregulated 7 9v. Arduino Forum > Using Arduino > Project Guidance > Powering an Arduino Mini Light rev 05 arduino

Arduino Uno avrdude: stk500_getsync(): not in sync

hi everyone! this evening i've run trouble arduino uno (i think it's original version, there no mention of revision on board) of 3 years old. when trying upload error "avrdude: stk500_getsync(): not in sync: resp=0x00". when uploading tx , rx leds don't flash. onboard on led burns (meaning has power) , when pressing reset l led blinks twice , stays off. there nothing connected of pins; no shields nor wires. so far i've tried following: 1. pressing reset before uploading (after compiling, before uploading) 2. changing usb-ports 3. resetting ide , entire system 4. changing upload device arduino duemilanova (weird suggestion, i'll try right now) 5. removing drivers system, rebooting , reinstalling them 6. doublechecking com-port suffice say, i'm getting bit disheartened. read somewhere resetting atmega16u2 might work ( forumlink ) i'd rather not try unless else fails. just last week board working fine. before went unresponsive trying m...

Thread: Renaming Self

had question myself , noticed of information http://ubuntuforums.org/showthread.php?t=64021 little inaccurate/out of date. anyway, gnome doesn't allow user rename through ui. however, can accomplished entering following commands (where <oldname> current username going in , <newname> desired new username) terminal (either applications->accessories->terminal or 1 provided in alternate sessions login screen): code: sudo usermod -l <newname> -d /home/<newname> -m <oldname> this performs actual username switch , moves home directory. code: sudo groupmod -n <newname> <oldname> this should performed well, rename corresponding user group. code: grep -l "home/<oldname>" -r . | xargs sed -i.bak 's|home/<oldname>|home/<newname>|' this update of files contain static links old home directory (such bookmarks under "places") new home directory. (it'...

Install Dreamweaver/Studio 8 on PC (Missing exe file)

dear fellow users, purchased teh adobe web bundle education use @ school work. installing on windows pc @ home. notice teh studio 8 cd hybrid both mac , pc. appears fine in g5, in pc, shows apple software , not pc installer. ideas? think since have macdrive ipod installed cold cause? very wierd, appreciated. anthony is pc set show hiden files , show extensions? "anoccolino" <webforumsuser@macromedia.com> wrote in message news:e4nvq1$au2$1@forums.macromedia.com... > dear fellow users, purchased teh adobe web bundle education use > @ > school work. installing on windows pc @ home. > notice > teh studio 8 cd hybrid both mac , pc. appears fine in > g5, > in pc, shows apple software , not pc installer. > > ideas? think since have macdrive ipod installed > > cold cause? very wierd, appreciated. anthony > More discussions in Dreamweaver support forum adobe

Significant Arduino execution delay every time I open Serial Monitor

hello, recently, i've run trouble involving serial communication arduino.  every time open serial monitor, execution of code on arduino seems pause significant time (10 seconds or more).  when execution resumes, millis counter has been reset, else proceeds normal, when close monitor.  only when open monitor problem occur.  i have not had problem, , until arduino worked normal.  i have tried reinstalling drivers, using different computers , cables, changing com port in device manager, , removing , re-downloading arduino software on computer, no avail. specs: windows 7 ultimate arduino mega 2560 on com3 usb connection computer nothing besides usb cable attached arduino the problem happens regardless of whether i'm running sketch uses serial communication.  for example, when  i run example blink code, @ first works fine, , led begins blink.  as open serial monitor, led freezes in current state.  after 10 seconds of serial mon...

Accessibility (Screen zoom) - Raspberry Pi Forums

hi, starting use raspberrypi ver. b, half blind vision problems, need use screen zoom utilize machine. on windows using zoomtext software allow me zoom part of screen , know if there equivalent on raspbian ? thanks. hello karpovski i'm new raspberry pi user , sounds of in similar situation yourself. though not blind, i'm visually impaired , require screen magnification. wondering if you'd found solutions using pi? thanks, ciaran raspberrypi

XBee Retry in API mode

hello evryone, i using xbee arduino uno boards communicate between 2 such nodes. (xbee 24) i stuck in 2 basic aspects regarding networking in xbee in api mode:- 1. have set baudrate on both nodes @ 111111 bauds (16 mhz/(16*111111.11)= 9, integer value). using api mode read data , send receiving node. though using same baud rates @ transmitter , receiver find there loss of data @ receiver. api mode reports error indicating dropping of data packets. want know how enable retries? default enabled? read takes 200ms resend ack receiver tot transmitter. understand basic ask need clarification on aspect. plz help. 2. if want increase data transfer rate, other devices can choose acheive without causing loss of data. which model xbees? how data being sent? how often? xbees low-bandwidth devices , have small buffers. the xbee mac layer retries default. if transmission fails, retries @ application layer may not depending on cause. why unusual baud rate? use 115200 or...

Chute de tension aux pin qd demarrage moteurs

hello tout le monde, le contexte: un arduino uno + 1 moteur shield + 2 petits moteurs + un ping + alimentation par vin en 9v ( = robot detecteur d'obstacles ;-) ) mon problème se situe au niveau de la tension dans les pins: dès que j'allume mes moteurs, la tension aux bornes des pins baisse et mon ping du coup me donne une distance tronquée. bilan, des q mon robot démarre, il déjà l'impression d'etre dans le mur... une fois que les moteurs sont lancés, là, pas de soucis tout se déroule normalement, c'est juste à l'allumage. avez-vous une idée/solution pour que mon robot est l'air moins stupide....? merci beaucoup !!! des infos sur les moteurs et sur la source de courant seraient utiles pour pouvoir t'aider. je crains le pire !! jacques Arduino Forum > International > Français (Moderators: jfs, Snootlab) ...

adding a Caption row to an existing table

i'm converting old site css now, , have million tables. used proper caption row @ top, when setup class table caption, automatically assigned properly. however, i'm finding tables used regular table row, not caption row, , headers not right font/style, etc. i've tried hour add caption existing table, , can't find way. re-creating tables out of questiion, there many , complex. ideas? please post link -- jo "synterx" <webforumsuser@macromedia.com> wrote in message news:gdar8a$4jf$1@forums.macromedia.com... > i'm converting old site css now, , have million tables. > used > proper caption row @ top, when setup class table > caption, > automatically assigned properly. > > however, i'm finding tables used regular table row, not > caption row, , headers not right font/style, etc. > > i've tried hour add caption existing table, , can't > find > way. re-creating tables out of questiion, there > m...

Raspberry Pi Forums - Login

username: password: i forgot password resend activation email remember me hide online status session   register in order login must registered. registering takes few moments gives increased capabilities. board administrator may grant additional permissions registered users. before register please ensure familiar our terms of use , related policies. please ensure read forum rules navigate around board. terms of use | privacy policy register raspberrypi

[URGENT!] Severe Issues with IE 6 and Joomla - Joomla! Forum - community, help and support

hi, i wondering if having similar problem me. i'm using joomla! 1.0.10 sundown on clients sites. i finished designing site client , handed on them. tested site in ie 6 , firefox few days ago , fine. ie did update of sort other day... not sure if problem stems from. firefox works fine, ie specific issue anyway, in ie 1 not able "preview" site in-line or in new browser , edit pop ups not work. happens when try preview or change code in html view or add in picture etc., user brought login page in newly launched pop or window , instructs user log in, though logged in already. have no idea why happen. it's in ie there function on opening of new window logs user out. sometimes when go view page content in editor (to edit), nothing shows in screen, though know there data there. it's totally not showing @ all! i see in ie shows page has errors, looked error , says (for particular page, anyway): line 2 character 51437 error: 'this.contentwindow.document' null or no...

Does STRLIST in m2tklib support Touchscreen?

i have m2tklib set dogl128 lcd (64x128, resistive touchscreen, uses u8glib). it's working fine touchscreen examples, know have things wired , library set , working. i modified touchpanel example code use gridlist instead of vlist, , worked fine. i'm trying dynamic menus working. way example code written, menu strings hard-coded. dynamic string, looks need use strlist. problem is, strlist examples use button-based inputs. i'm trying use touchpad input , having limited success. i modified constructor call use touchpad event handler , event source handlers: m2_es_touch_screen , m2_eh_ts (also tried m2_eh_6bsts , m2_eh_4bsts). i'm seeing cursor registering on screen when press, ui nonfunctional. does srtlist not work touchscreen input? or missing critical how use different input types? help! edit add: i made little progress when found touchscreen tutorial here: http://code.google.com/p/m2tklib/wiki/t10 i still not have working, however. i'm thinking perhap...

stereo vision using two raspberry pis - Raspberry Pi Forums

hi everyone, i'm new robotics , raspberry pi. i'm working on project requires stereo vision on robot. have got 2 raspberry pis , 2 camera modules. here plan: 1. connect 1 camera module 1 raspberry pi 2. treat 1 raspberry pi master, other slave 3. when master pi takes image, sends signal through gpio pins slave pi trigger slave pi take image 2 images should taken @ same time 4. image processing on each pi simultaneously 5. transfer data need merged in order processed 1 pi other using ethernet , process on pi i'm not sure if plan works. please share thoughts. appropriate way transfer data between 2 raspberry pis? gpio suitable transfer data or it's better served control signals? need create server/client software transfer data via ethernet? overhead inevitable? thank inputs. truely appreciated. can explain "roughly @ same time" ? talking milliseconds or microseconds ? ghans raspberrypi

[Risolto] Problema con millis()

salve, sto facendo un tachimetro con arduino. il codice tecnicamente funziona, solo che vorrei visualizzare tramite serial.print km/h con un refresh di un secondo. se metto il serial.print "libero" nel loop tutto ok, visualizzo il dato in maniara corretta, mentre se lo inserisco in un if con millis() mi da dei valori  moooolto distanti da quelli reali... boh io non più come fare... chi mi da un aiuto? uso un sensore ad effetto hall collegato al pin 2 in interrupt e calcolo il tempo trascorso tra un impulso e l'altro con il timer2. code: [select] // tachimetro uint_fast8_t conteggio; unsigned long intervallo; unsigned long rangetot; unsigned long timer01; double kmh; int crfruota = 605;     //circonferenza ruota in millimetri bool calcola = false; void setup() {  serial.begin(9600);  attachinterrupt(0, conta, falling);  timer2();                            // in...

Tutorials for educations

do know can adobe step step tutorials give students. want ones found in designer.com corel users. a place start @ following link: http://www.adobe.com/support/freehand/tutorial_index.html also, website (very designed way) freehand tips @ www.freehandsource.com More discussions in Freehand adobe

Connect wireless alarm sensors to computer

i looking @ getting diy alram sensors , wireless receiver. looking connect wireless receiver arduino have act keyboard emulator , send diffrent key patters based on signals wireless receiver getting sensors. know can act keyboard emulator. possible connect wireless receiver , decode signals? im having trouble understanding describing. sounds want 2 arduinos communicate wirelessly, 1 relaying sensor info other. receiving arduino sends info computer via keyboard inputs?  a cheap , reliable method of wireless communication 2.4 ghz nrf24l01 transceiver. around $2~3 on ebay , work 10~20 meters depending on walls , such. as far keyboard emulation, must done leonardo or smd verison of uno. dip version not capable without hardware modifications. dont know are, here link http://blog.makezine.com/2012/06/28/usb-keyboard-support-with-the-arduino-uno/ hope helps, luck. Arduino Forum > Using Arduino ...

php 4.4.* problems - Joomla! Forum - community, help and support

hello, ok have dedicated server whm/cpanel running php 4.3.11, trouble if try upgrade of 4.4 series joomla affected? none of navigation menus on home page show up, in control panel tabs have no txt , and templates don't appear in template manager, plus few other things! any ideas might wrong? using following option when rebuilding apache/php in cpanel expires module raise fd_setsize 16384 (system wide) prevent users reading other webroots frontpage module raise hard_server_limit php module     version 4.3.11 (or 4.4.3)     bc math     calendar support     curl (version 7.15.3)     curl ssl support (version 2.8.28)     ftp     gd (version 2.0.15)     imap module (version 2004g)     mb string     mcrypt (version 2.5.7)     magic quotes     mysql module     openssl support     discard path     pear     sockets     track va...

The fun of Checkboxes

hi there, been while know, been busy... as per usual appreciated i have problem need use checkboxes add information page... currently happens user gets login - duh, user can go , choose wht looking for... through choice page... the choice page goes , looks choices in access database. , displays them on seperate page. from there page gets displayed pictures of whatever request was. picture holds info selected in code supplied... see attached code... lol anyway add checkbox option, user can add selected options different page add information ticked access database future use... this problem though... see using checkboxes name , value of checkbox is cases typed in before hand. if want add checkbox needs hold information of session("id") can received next page store selected information... in mind adding asp code input value, keeps chucking errors me. don't know if makes sense hope can More discussions in Dreamweaver support forum adobe

loading a movie from a php variable

i have web site has publicity on it. what need in flash load php file send me link chosen randomly , in flash have loadmovie(the link php) also @ end of each movie need reload php file , load publicity. what have right in main flash fallowing loadvars = new loadvars(); loadvars.load("pub.php"); loadvars.onload = function(success) { if (success) { pub.loadmovie(this.var2); } else { pub.loadmovie("pub1.swf"); } }; break; and @ end of each pub have : loadvars = new loadvars(); loadvars.load("pub.php"); loadvars.onload = function(success) { if (success) { _root.pub.loadmovie(this.var2); } else { _root.pub.loadmovie("pub1.swf"); } }; break; right first movie load when first pub end loop @ beginning , never load else the time work when hard coded link using this.loadmovie(my path here); break; try placing stop(), command on last frame of loaded movies, avoid replay while loading. also, trace loaded variable see if changes: -- ...

bitte hilfe kann kaum programmieren

Image
hey allerseits. ich interessiere mich sehr für arduino und alles damit zu ermöglichen ist. ich möchte alles lernen und habe auch schon fast jeden board usw bestellt man brauchen kann. aber als erstes habe ich mir etwas zur aufgabe gemacht, dem ich nicht gewachsen bin ^^ habe es von einer seite und habe es 1:1 kopiert. sehr interessantes projekt . habe mir das teil welches ich dazu brauche sogar doppelt aus usa bestellt hier der link http://colligomentis.com/2012/05/16/hid-reader-arduino-rfid-card-catcher/ auf dieser seite ist auch der link zu den code der vorgegeben war und der autor hat auch geschrieben das der code chaotisch ist und er selbst nicht der programmierprofi ist.. naja ich hab den code probiert, habe etliche sachen geändert und trotzdem haut es nicht hin.. es harpert immer sattz "sdfat sd;"  der befindet sich gleich beginn in der 8en zeile . ich muss den code auf 3 posts aufteilen da ich ja nur 9500 zeichen schreiben kann :/ könnt ihr mir eventuell...

Calendar Extensions

has found calendar extensions? still use interakt calendar extension. wonderful job dynamic calendars customers can update using content management system websites. however, adobe killed extension when bought interakt. i'd upgrade mx 2004 cs4, need replace existing extensions replacements interakt extensions. once adobe releases developer toolbox cs4 except calendar extension. have never found 1 out there. else found 1 yet? thanks http://www.kaosweaver.com/extensions/details.php?id=87 they have support within 24 hours in experience product works. k More discussions in Dreamweaver extensions adobe

Thread: Facebook's Restaurant City doesn't load ... just white box.

i installed adobe flash via .deb install still isn't working. using firefox , downloaded opera isn't working. can me? does flash work on other sites? try youtube or sure. Forum The Ubuntu Forum Community Ubuntu Specialised Support Gaming & Leisure Facebook's Restaurant City doesn't load ... just white box. Ubuntu