Posts

Need help creating PDF w/ comment tools available in Reader!!

i'm trying create pdf can use "comment" , other proofing tools in reader. i've tried using acrobat pro adjust settings "comment" , other tools available in reader isn't working. here's i'm trying (if might have amazing idea). company produces 1300 pg catalog entire departmentaround 20 people in totalhave proof. in effort reduce how paper use in our proofing process i'm trying move department "electronic" proofing process as possible. i know in acrobat pro can comment , mark pdf , you're able same in acrobat reader (only artist have pro, rest of department has reader). can't seem find way take indesign document , allow "comment" tool accessible in reader. anyone know? know there "review" session thing can set up, that's turning huge pain since adobe doesn't want work our mac based network...blah blah, way on head. thanks help! (sorry long winded...) cara brooke in adobe acrobat professi...

How can I disable the Email icon in the tool bar from Windows regisrty?

does know key , value in registry enables\disables email icon? registry key? know can done manually via ui. can done using adobe customization wizard 8? have adobe acrobat standard 8 , reader 4 installed on citrix server , default value email icon set disabled or hidden when users open pdf file. the values in registry key change tool bar options enabled: \software\adobe\acrobat reader\8.0\avgeneral\ctoolbars\cfile\cinternalbuttons More discussions in Acrobat Reader adobe

MFRC522 Rfid-reader as keyboard input

dear forum, i new arduino , make limited keyboard inputs using mfrc522 rfid-reader, couple of tags , arduino nano. inputs have continuous , able read simultaneously. have tried basic example sketches library https://github.com/miguelbalboa/rfid , managed register tags , uid numbers. but can't understand how make tags register keystrokes. i have googled quite lot last week examples have found far not describe process of keyboard emulation (if correct term?) or use different set of readers , tags. any ideas on should start searching info or example sketch? best regards. for usb keyboard emulation need special arduino, usb controller can programmed act keyboard (hid) device. Arduino Forum > Using Arduino > Project Guidance > MFRC522 Rfid-reader as keyboard input arduino

4051 mux daisy chain?

is possible daisy chain 4051 analog mux chips together? how digital mcp23017 can setting each chip's a0, a1, a2 pin different address , daisy chaining scl , sda pins   yes, there 2 ways. the first way, describe similar mcp23017, use enable (/e) pins control 4051 selected. the second way "cascade" them, outputs of 1 chip connected inputs of second. Arduino Forum > Using Arduino > LEDs and Multiplexing > 4051 mux daisy chain? arduino

RSTDISBL reset disabled.

hi, i thinking of disabling reset of atmega328 burning bootloader may not reset again.but, how upload sketch chip after rstdisbl.? if chip don't have sketch, what's point of disabling reset? pls. advise. thanks. the usual reason disable reset pin can use pin digital input output. makes more sense on chip tiny85 has 8 pins total , 2 used power/gnd. disabling reset gives 6 usable i/o pins instead of 5. once pin configured i/o pin instead of reset no longer able program unless converted reset pin using high voltage programmer . Arduino Forum > Using Arduino > Project Guidance > RSTDISBL reset disabled. arduino

7 segment 3 digit Temp Display? Arduino mini

Image
hi there, i'm working on project display temperature of thermocouple (i ordered amplifier already) on 3 digit 7 segment display, i've never done , cant make sense of there on internet. ideally use arduino mini or nano (i have mini). also, have segment this   here picture of intend do: i want set temperature , once thermocouple reaches temperature servo moves. i've done arduino projects before i'm me not ee please bear simple questions. thanks in advance guidance rather use display linked to, think far more cost effective use ready built lcd shield.  using shield precludes using arduino mini or nano. i think need cost benefit analysis work out whether better use components have, plus whole week of work integrate system, or items more plug , play, , have working solution in hour or two. Arduino Forum > Using Arduino > Project Guidance ...

Double bouton

Image
bonjour, comme vous le comprendrez, je suis assez débutant, et donc paraître nul, mais je suis bloquer dans un programme à laquelle un deuxième bouton doit augmenter une variable x  de 100, j'ai également un deuxième petit problème, je voudrais écrire un mot avant l'affichage de ma variable mais le programme m'indique qu'il y un problème. voici mon montage, je n'ai aucun problème avec le +10 voici le programme: code: [select] #include <wire.h> #include <liquidcrystal_i2c.h> const int buttonpin = 2;    const int buttonpin2 = 4; liquidcrystal_i2c lcd(0x27, 16, 2); int x; int buttonstate = 0; int buttonstate2 = 0; void setup() {   // initialize lcd   lcd.begin();   lcd.backlight();   pinmode(buttonpin, input);   pinmode(buttonpin2, input);   x=0; } void loop() {   buttonstate = digitalread(buttonpin);   buttonstate2 = digitalread(buttonpin2);   if(buttonstate == high) {     x+=10...