Posts

Showing posts from September, 2013

Word 2008 Form to Adobe Acrobat Professional 8 Form

hi all, any tutorials on creating forms word 2008 acrobat professional 8. have several forms in word 2008 , create pdf forms out of them. use create form, in version 8 of acrobat, option auto read document , create form. how do , not have use underlines..etc. info helpful. in advance. mz michael there no method on mac move word forms acrobat forms. can take forms have, run them through autorecognition see what can find. delete fields not want , manually add form fields want. personally, find acrobat better job of recognizing boxes as places automatically place fields. creates many fields. find automatic generation of fields not create field types want. if have several forms, manually creating form fields not burdensome. when have multitudes wish automation of fields worked better than :-) i think better off creating forms make information easy to find , easy read worrying how autorecognized. forms used many times, created once! mike More discussions in Acrobat Macin

Thread: LIve 9.10 CD can't get on Internet...

dear all, , in advance suggestions... downloaded koala, both 64 & 32 bit...cut cd's, tried them booting off cd first (as have 3 years now..) immediate impression - hey, looks ok guys! (thanks everyone..!!) (both 32 & 64 bit) although plugging in ethernet cable message saying i'm connected can't out onto net. ditto wireless. (hub/router d-link dsl-g624t). i've run rig year or various sw, worked fine along. i'm confused... hub/router i've used same hardware (laptop dell 1525). i've been running dual-boot vista & 9.04 6 months (and similar before...), no problems... know net works, router works, cable works (i'm using them on 9.04).. weird...!! suggestions?? tried connecting mobile-broadband (mobile 'phone network) 3g dongle, huawei, "3" here in uk. worked!! (which never managed 9.04!!) firefox , getting on internet ok, i'm stumped why can't through "wired" route (and nervous o

Update Acrobat Professional 7.0 (mac)

when try update receive message..."the selected application version outside range can updated installer" i trying update acrobat 7.0 (mac) professional receive above message when updating 7.0.1 are updating 7.0.1 or 7.1.0? believe 7.0.1 update not appear in acrobat updater, using standalone patch downloaded? might try installing 7.0.5 patch instead of 7.0.1. if trying install 7.1.0 on 7.0, should aware requires version 7.0.9. if install these patches in order via updater, should have no problem: 7.0.5, 7.0.7, 7.0.8, 7.0.9, 7.1.0. if still experience error, perhaps installation has become corrupted somehow? if so, you'll have reinstall it. More discussions in Acrobat Macintosh (read-only) adobe

Can i integrate joomla as a component or a module in a application?? - Joomla! Forum - community, help and support

hi, my query that,  can integrate joomla component or module in application?? suppose have larger web based application wanna add blog feature.............. can use joomla component blog feature.....if yes, how???? , want know platform independency of joomla. thanks.... joomla! complete system. supposed can wrap in system, need things joomla in joomla backend administrator. as dependencies, php 4.3.x or higher, mysql 3.23 or higher, apache 1.3 or higher. when starting out, recommend @ least php 4.4 or higher , mysql 4.1 or higher. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Notice: Constant _ALREADY_VOTE - Joomla! Forum - community, help and support

uradio sam sajt na serveru u fino radi, medjutim kada sam ga prebacio na localhoste da ne bih kopirao podatke na localhoste server vukao sam podake sa servera provajdera kada otvorim stranicu u zaglavlju mi izbaci nekoliko redova podataka koji glase: notice: constant _already_vote defined in e:\my documents\www\smed-palanka.co.yu\language\serbian.php on line 566 warning: cannot modify header information - headers sent (output started @ e:\my documents\www\smed-palanka.co.yu\language\serbian.php:566) in e:\my documents\www\smed-palanka.co.yu\index.php on line 250 warning: cannot modify header information - headers sent (output started @ e:\my documents\www\smed-palanka.co.yu\language\serbian.php:566) in e:\my documents\www\smed-palanka.co.yu\index.php on line 251 warning: cannot modify header information - headers sent (output started @ e:\my documents\www\smed-palanka.co.yu\language\serbian.php:566) in e:\my documents\www\smed-palanka.co.yu\index.php on line 252 warning: cannot modify

powering LED and vibration motor with Arduino UNO

hi there,  i have arduino uno , bought grove base shield since dont have access soldering gear. now, want control one led (http://www.seeedstudio.com/wiki/grove_-_variable_color_led) and one vibration motor (http://www.seeedstudio.com/wiki/grove_-_vibration_motor) with it. need additional power supply doing so? couldnt find information of current draw of vibration motor , worried above the  20ma arduino can safely provide. many in advance isa if add 9v 12v dc power supply , can use 1 of these by adjusting output voltage blue potentiometer on bd. Arduino Forum > Using Arduino > General Electronics > powering LED and vibration motor with Arduino UNO arduino

Trouble Reading Sensor correctly to calculate speed

Image
hi there, i trying calculate speed of springloaded ejecting mechanism. have mounted 2 through beam infrared modules spx 1189 honeywell . have response time of 5 microseconds. i have connected them arduino uno , placed them 7.5 cm apart i use following program calculate time , display both time , speed. code: [select] //sample using liquidcrystal library #include <liquidcrystal.h> /*******************************************************  *  * speedcount  for arduino  * peter h  * jan 2015  ********************************************************/ double starttime =0.0; double endtime =0.0; double duration =0.0; double speed=0.0; const int firstirpin = 2; const  int secondirpin = 3; boolean firstirstate = true; boolean secondirstate = true; // select pins used on lcd panel liquidcrystal lcd(8, 9, 4, 5, 6, 7); // define values used panel , buttons int lcd_key     = 0; int adc_key_in  = 0; #define btnright  0 #define btnup     1 #define btndown   2 #define btnleft   3 #defi

Check for 3 bytes somewhere in a 3-12 byte array

hi! i messages via midi sysex, *sometimes* 3 bytes, , 12 bytes, , inbetween. i need check 3 bytes, inside byte array nomatter length. 3 bytes check has in order, not matter if bytes 1-3 or 6-9 etc. my current code is: code: [select] if (p[1] == 0xb0 && p[2] == 0x0c && p[3] == 0x0e ) { } does know how achieve this? best regards soren like this: code: (snippet) [select] int inarray(int *p, int len) {   (int = 0; < len-3; i++)   {     if (p[i] == 0xb0 && p[i+1] == 0x0c && p[i+2] == 0x0e) return i;   }   return -1; } Arduino Forum > Using Arduino > Programming Questions > Check for 3 bytes somewhere in a 3-12 byte array arduino

dpi / ppi distiller

hey i have postscriptfile indesign want make pdf opening in distiller. contains highresolution photos, vectors , text. export pdfs 300 ppi. different sources claim plotter can plot accuracy of respectively 200, 300 or, maximum, 600 ppi my question is; wath dpi(not ppi) should choose in distillers adope pdf settings? 300? 2400? neither of those? i have tried dpi/ppi myself, information contradicting. i hope can me! distiller server? aandi inston More discussions in Acrobat Distiller Server adobe

Rechauffeur solaire pour piscine avec arduino mega et écran tactile

une errreur bonsoir, je vous ai demandé de nombreuse fois de l'aide dans mes divers projet. ce soir je vous livre un projet fini (enfin j'espères sans trop de bug). l'idée de départ mes venu en regardant ceci: http://autogire-rc.over-blog.com/article-chauffage-solaire-pour-piscine-53465562.html j'ai monté le miens l'hiver dernier et j'avais fait une petite régulation grâce à votre aide. http://forum.arduino.cc/index.php?topic=236005.0 après quelque moi de loyaux service, j'ai vu quelque erreur et me voilà de retour parmi vous. le matériel  de régulation se composent de : une carte arduino mega d'un écran tft 3.2" en 240*400 un protoshield http://www.nkcelectronics.com/arduino-megashield-pcb.html de 4 sondes de température ds18b20 d'une horloge ds1307. d'une pompe dc50d-2465s pour réguler la pompe 24 volts j'utilise ceci http://www.hessmer.org/blog/2013/12/28/ibt-2-h-bridge-with-arduino/comment-page-1/ l'

Using New Ping library and TONE together

hello, i thought throw code varying tone distance returned hc-sr04 ultrasonic module. i thought mapping returned distance using newping library in conjunction tone. compilation error message:   arduino: 1.0.6 (windows 7), board: "arduino mega 2560 or mega adk" core.a(tone.cpp.o): in function `__vector_13': c:\program files\arduino\hardware\arduino\cores\arduino/tone.cpp:535: multiple definition of `__vector_13' newping\newping.cpp.o:c:\documents\arduino\libraries\newping/newping.cpp:214: first defined here c:/program files/arduino/hardware/tools/avr/bin/../lib/gcc/avr/4.3.2/../../../../avr/bin/ld.exe: disabling relaxation: not work multiple definitions i'm using mega-2560. there fundamental problem of using pwm's together? can post code if wants look? thanks. code is: #include <newping.h> #define trigger_pin  12  // arduino pin tied trigger pin on ultrasonic sensor. #define echo_pin     11  // arduino pin tied echo pin on u

كيف لي أن أبني موقعا بالعربية و الفرنسية - Joomla! Forum - community, help and support

Image
نحن أستاذان بمركزي تكوين المعلمين بالمغرب قررنا إنشاء موقعا  واستعملنا لذلك joomla لكن لن نعرف لحد الأن لا زلنا نبحث عن الكيفية التي من خلالها نجعله يعمل باللغتين: العربية و الفرنسية الرجاء المساعدة فنحن مبتدءان. everadnus هذا هو عنوان موقعنا http://abdadoukala.13.fr [rtl] يمكنك ذلك باستعمال تطبيق jomfish! هذه الروابط قد تفيدك تطبيق jomfish!: [/rtl] http://extensions.joomla.org/component/ ... itemid,35/ [rtl] كيفية عمل قالب يعمل في الاتجاهين "من اليمين الى اليسار والعكس"ـ [/rtl] http://forum.joomla.org/index.php/topic,134237.0.html [rtl] مرحبا بك في المنتدى [/rtl] Board index Joomla! International Language Support International Zone Arabic Forum جوملا! 1.0 القسم العام

Thread: Security discussions aside, who here agrees that disabling the GDM user list...

Image
...makes gdm more sexy? see attachment below. simplicity can go long way in improving aesthetics. (at list better disabling user list in vista, rewarded fugly empty user picture) attached images screenshot1.jpg (26.6 kb, 51 views) i feel there utilities customize gdm in coming releases, i'm going wait. gdm doesn't list user name, real name. Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Security discussions aside, who here agrees that disabling the GDM user list... Ubuntu

Stepper Motor for Precise Control

hi guys! i working on project uses peristaltic pump move small amounts of liquid through tube (think micro liters) , thinking of using stepper motor volume control without need of stepper motor , encoder. i using bipolar 200 step motor @ 5v, 1000 ma http://www.jayconsystems.com/stepper-motor-bipolar-200-steps-rev-39x31-5v-100ma.html i've never worked stepper motors before , know need stepper motor driver. my question driver should use , general setup arduino? i hear l293d need using. right motor's configuration? and generally, motor right 1 using job? i'd know think. thanks. no not want l293 old , poor chip. only on ipad @ moment can't send link current limiting or chopping drivers. Arduino Forum > Using Arduino > Project Guidance > Stepper Motor for Precise Control arduino

Tableau de char (malloc ou progmem) et aide a la mise en place

salut, dans mon projet, j'utilise plusieurs tableaux de char, maintenant que la fonctionnalité est la, je passe l'étape d'optimisation. si j'ai bien compris: - progmem permet de stocker mes tableaux de char dans la flash. - malloc, realloc, free, etc... pour la gestion de tableaux dynamique. donc le du jeux est de privilégié des tableaux dont la taille est connu, pour limiter l'utilisation de la ram? un conseil : ne joue pas avec malloc, realloc, free sur un arduino. mets ça de côté pour l'instant, sauf si tu n'as vraiment pas le choix. concernant progmem : prenons un truc comme code: [select] char mon_texte[] = "le joli message que je veux afficher quelque part"; ce truc est présent dans le code compilé, stocké dans la mémoire flash. lorsque l'arduino est sous tension, il est également présent dans la ram, stocké comme une variable globale. il te bouffe donc 50 octets de ram en permanences. et comme tu plein de m

SD Card Resizes after installing Raspian OS - Raspberry Pi Forums

hey guys. purchased pny 32gb u3 micro sd card. installed noobs files , chose rasipan os after popping sd card mac, says have 500mbs available. tried do: sudo raspi-config > expand system files, theres message me using noobs , should extended. appreciated. when format micro sd, returns 32gbs, want make sure it's 32gbs raspian. looked eveywhere.. can't find solution. you won't find solution because problem doesn't exist. noobs did expand root file system partition. can check with: df raspberrypi

Arduino als Controller für Simulator möglich?

hallo zusammen, ich suche ein möglichkeit, die eingabe von folgenden funktionen per usb einen pc zu übertragen: 1) joystick xy-axen 2) ruderpedale z-axe 3) 200 buttons die eigentliche idee ist, dass der adunio sich als sepreates usb-device beim pc meldet und die entsprechenden funktonen anbietet. da ich keinerlei ahnung vom adunio habe, ergeben sich für mich folgende fragen: ist eine solche konstruktion mit dem aduino-system überhaupt möglich? wenn sie möglich ist, kann man die anforderung mit einem board erledigen oder benötigt man mehrere aduinos? wenn sie möglich ist, welche(s) aduino-modell(e) und welche adunio-zusatzboards müsste ich hierfür anschaffen? vielen dank für eure antworten im vorraus.   also der arduino leonardo arbeitet als hid-eingabegerät. den joistick kannst du mit 2 analogen eingängen abrufen. die 200 taster must du als große matrix schalten. dazu empfehle ich portexpander. l. g. stefan Arduino Forum

https vs. http problem with a raspbian mirror - Raspberry Pi Forums

when doing normal apt-get upgrade, got: e: failed fetch http://mirrordirector.raspbian.org/rasp ... -1_all.deb server certificate verification failed. cafile: /etc/ssl/certs/ca-certificates.crt crlfile: none when trying again, worked (probably used mirror). fortunately using http proxy easy find mirror log. $ lang=c wget -o /dev/null -s http://raspbian.chaoshost.at/raspbian/p ... _armhf.deb converted ' http://raspbian.chaoshost.at/raspbian/p ... _armhf.deb ' (ansi_x3.4-1968) -> ' http://raspbian.chaoshost.at/raspbian/p ... _armhf.deb ' (utf-8) --2016-02-01 14:38:43-- http://raspbian.chaoshost.at/raspbian/p ... _armhf.deb resolving raspbian.chaoshost.at (raspbian.chaoshost.at)... 2a01:190:1700:48::6, 92.60.5.231 connecting raspbian.chaoshost.at (raspbian.chaoshost.at)|2a01:190:1700:48::6|:80... connected. http request sent, awaiting response... http/1.1 302 found cache-control: no-cache content-length: 0 location: https://raspbian.chaoshost

[svn] 4521: Fix for - Override information missing for properties and methods in DITA XML output of ASDoc

revision: 4521 author: gauravj@adobe.com date: 2009-01-14 06:01:28 -0800 (wed, 14 jan 2009) log message: ----------- fix - override information missing properties , methods in dita xml output of asdoc qe notes: none doc notes: none bugs: sdk-18681 tests: checkintests ticket links: ------------ http://bugs.adobe.com/jira/browse/sdk-18681 modified paths: -------------- flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/toplevelclassesgenerator.ja va More discussions in Commits adobe

Defining external configuration

hi there. i wondering if there way define b external (not related blazeds) values use configuration within service, or preferably destination. what i'm trying find place xml configuration file that's accessible within remoteobject code. remoteobject uses values xml configuration file has do. right now, place can access /bin or /temp directories of tomcat server (which can using system.getproperty()), placing configuration file there seems inappropriate. preferably, place in root of webapp directory, can't seem find generic way find directory is, within remoteobject code. means have hard-code location of xml file, doesn't work obvious reasons. i noticed destination has "getextraproperty" method, i'm unsure of (the source wasn't either) or you're supposed define "extra" properties. any suggestions should put xml configuration file , or know if can define them within service/destination? thanks. i seem have (temporarily) solved speci

QSQLITE driver not loaded - Raspberry Pi Forums

i have installed sqlite in raspberry pi 2 using sudo apt-get install sqlite3 can create insert database. when tried open database qt. shows qsqldatabase: qsqlite driver not loaded qsqldatabase: available drivers: can please sort out issue qt have own plugins different databases, havent installed any. package names find on raspbian jessie "libqt4-sql-sqlite" or "libqt5sql5-sqlite" depending on version of qt. raspberrypi

[GUIDE] Raspbian Lite with PIXEL/LXDE/XFCE/MATE/i3/X11 GUI - Raspberry Pi Forums

Image
table of contents 1. introduction 2. memory usage 3. part 1 - build foundation 4. part 2 - bring in furniture 5. sample screenshots 6. use? 7. virtual machine playground 8. advanced - x11 forwarding (remote applications) 9. advanced - custom desktop environment using i3 wm 10. advanced - custom desktop environment using openbox wm 11. extras requirements: 1. raspberry pi microcomputer 2. raspbian lite image 3. sd / microsd card (at least 4gb or higher, possible use smaller storage space depending on configuration) 4. keyboard , mouse (for using gui, can vary depending on how raspberry pi used) 5. tv / monitor (for seeing gui) ( note: for wanting use touchscreen, not cover in guide. need research this. ) 6. normal computer linux, macos, or windows (for burning rasbian lite image sd / microsd) 7. internet connection introduction there 2 official linux distributions raspberry pi raspbian , raspbian lite. rasbian full linux distribution raspberry pi , comes new de

LED's connected to relays will only turn on

i built simple project arduino board. use board read analog input values rotation sensor (potentiometer), , use values determine ssr relay on module turn on. connected relays led's , project works, in 1 way. example, when turn potentiometer toward maximum, relays sequentially close, supposed to. same thing when reach maximum , dial pot. toward 0. can fidget around in middle , arduino turn on relay(s) according analog values read. part works supposed to. the problem is, when connect led's relays, led's turn on sequentially relays turn on, dial pot. 0 toward maximum. led's not turn off dial pot. down toward 0. relays indicate being turned off on module (they each have led indicator), led's connected remain on no matter what. the standard 5v output arduino board powering relay module, led's, , sensor. every ground common arduino gnd. so why led's not turning off? it's beginner stuff don't know about. read somewhere when use mosfet turn on , of

External power supply VS USB

Image
hello world, recently, got new 5 vdc power supply 3a power arduino uno + ethernet shield there going on cannt explain. when use power supply send signal 5vdc relay, powers not click ( common n.o.) contact though led blinks, showing change of state. when power usb computer works fine... i measured output voltage usb , power supply: both send 5 vdc seems power supply not taisk. i noticed on led ethernet shield lttle dimmed when powered external power supply. does ring bell somebody? your comments welcome. thanks in advance. are plugging 3a power supply usb jack? is power supply regulated? Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) > External power supply VS USB arduino

debonce return

Image
scope: i trying use debounce example built ide , modifying return button's state. once debounce button, wrote 2nd piece of code below track button presses incrementing numbers in array. problem: however, debounce function keeps returning low though inputs input_pullup high. when debounce function run continually on own, corrects itself, returns low first runs through, throwing false button press exit while loop. i have gone through example , commented in own words try ease understanding of code. ! int debounce(int pin) {     int reading = digitalread(pin);   //checs initial state of pin passed function   // if switch changed reason (noise or actual press)   if (reading != lastbuttonstate)     {     // reset debouncing timer     lastdebouncetime = millis();     }     //when previous if statement false, skips reset     // means on false, next if loop execute true     // since lastdebouncetime not updated     if ((millis() - lastdebouncetime) > debouncedelay)     {     /

TFT +UNO+BMP180 (Anfänger braucht Hilfe)

Image
hallo leute, ich habe mich mal daran versucht die temperatur des bmp180 mit dem arduino tft display auszuwerfen. ich komme einfach nicht mehr weiter   code: [select] #include <wire.h> #include <adafruit_bmp085.h> #include <tft.h>  // arduino lcd library #include <spi.h> // pin definition uno #define cs   10 #define dc   9 #define rst  8  adafruit_bmp085 bmp; // create instance of library tft tftscreen = tft(cs, dc, rst); void setup() {     bmp.begin();   tftscreen.begin();   // clear screen black background   tftscreen.background(0, 0, 0);     // write static text screen   // set font color white   tftscreen.stroke(0,255,0);   // set font size   tftscreen.settextsize(1);   // write text top left corner of screen   tftscreen.text("temperatur=",10,0);   // ste font size large loop   tftscreen.settextsize(2); } void loop() {       float temperature;     temperature = (bmp.readtemperature());     // set font color   tftscreen.stroke(0,0,255);   /

car mirror in/out with locking the doors, but i'm stuck.

i'm new arduino, started simple project's, of course, took on school project i'm doing @ work use point me in right direction. the thing want when lock car door mirrors go in, , when put ignition op mirrors should go in drive position. there module turns mirrors in , out, gets pulse button. push button , go in. push again , go out.   i use door locking signal comes remote turn mirrors in. but when start driving doors lock can use signal when ignition off. when turn on ignition mirrors should go in driving position when turn on. because should able use normal, existing, button move mirrors. if mirrors go in ignition on not work more. that why need counter of short know position of mirror, counter needs know if button pressed new position is, , remember data until changes new value. i'm working on project time now, tried many different things, non of them work. of course reason i'm here. in hope help. i attach program have , hope take time me out here.

Menu Module Problems - Joomla! Forum - community, help and support

why menus squashed when user isnt logged in, when user logged in fine? www.thezetacorp.com if wanna look! they squashed because button names break 2 lines. make left menu area wider names of buttons don't break. we using same menu configuration @ development site playing @ http://www.racetrackcentral.net . note width of nav bar buttons. this particular menu style sheet has buttons have up/active states in 1 graphic , depending are, vertical spacing adjusts means different "heights" buttons.  personally, i'd perfer use 2 separate graphics link , location , not have height jumping around lick that. bottom line:  make menu wider. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Problem sending SMTP Email - Raspberry Pi Forums

i have been trying send email using these codes. receive following error code occasionally: [errno -5] no address associated hostname idea why? success rate of sending email 0-20%. there socket or timeout error? or?? please advise. many thanks. code: select all #!/usr/bin/env python import smtplib time import sleep gmail_user = 'xxx@gmail.com' gmail_pass = 'yyy' smtp_server = 'smtp.gmail.com' email_address1 = 'zzz@gmail.com' smtp_port = 587 def send_email(recipient, subject, text): try: smtpserver = smtplib.smtp(smtp_server, smtp_port) smtpserver.ehlo() smtpserver.starttls() smtpserver.ehlo() smtpserver.login(gmail_user, gmail_pass) header = 'to:' + recipient + '\n' + 'from: ' + gmail_user header = header + '\n' + 'subject:' + subject + '\n' msg = header +