Posts

Showing posts from July, 2015

[CS4] Removing notes from exported RTF

when export story rtf notes in story added end of exported rtf.  (it have been excellent if notes placed appear in story , made invisible).   to avoid having notes show in rtf use following:   sequence = cmdutils::beginabortablecmdseq(); sequence->setname(pmstring( "rtf notes" ));   utils<inoteutils> noteutils;   noteutils->clearallnotes(intextmodel);   exporter->exporttofile(idfile, indocument, texttarget, formatname, ksuppressui);   cmdutils::abortcommandsequence(sequence);   this works except story in ui flashes remove/undo-remove notes.   is there better way this?  there way can tell exporter not write notes?   thanks -doug i haven't looked @ notes in detail sdk side, scripting side appear describe them - hidden content straight within character strand, rather safely stored away in separate strand. side effects include strange findings of grep-search.   anyway, approach sounds similar first attempt on ...

Thread: Change new users default desktop

i new user ubuntu , far loving it. wish found out before. wondering how set default user enviorment every time create new user desktop mine (it has same background, same setting in compiz, etc...). such hastle change every user create same settings mine. can have fire close effect , 3d cube default when create them. thanks, mark Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Desktop Environments [ubuntu] Change new users default desktop Ubuntu

Thread: Is Ubuntu fit for network use - 8hrs of wasted time later - maybe

first let me i've heard linux years , did @ getting linux machine around 2 years ago, couldn't find said "this or machine work linux", had assume there problems. and, because didn't know linux (except hard drive unit turned out have linux - , glad once learnt unix) - might aright nerds me, wife sleep me again if got angry half baked operating system. - micro$oft did bit - mouse stopped working , microsoft's driver , fix problem? , latest next upgrade slow machine more fix except force people buy new software? no! so, machine operating system had changed vista, , since micro$oft caused problem, didn't want install xp ... , why tried ubuntu (i think preferred choice 2 years ago). problem 1 - not make cd boot up. solved downloading new version , using dvd instad of cds. problem 2 - when said "use documents , settings windows" during install, never occurred me try download 60gbytes of photos on network drive onto 1...

Joomla! Forum - community, help and support - Login

the board requires registered , logged in view forum. 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 Board index

got it, thanks - Joomla! Forum - community, help and support

tough explain, simple illustrate. appreciated. i want link home page says, "top 5 reviews." yes, have experience creating kind of link - can't seem pick right kind of link want. seem have tried them all. i want link page has 5 band names: the big band pearl jam the stones dave matthews counting crowes then able click on 1 of band names pull actual review page. any ideas? there way create content page 5 band names , create hyperlinks out of names link full reviews? thanks! pearl jam where id= article id of review piece, , itemid= menu id has correct modules visible want around review pieces. or: navigate review way can, , copy url address window , paste tag above. good luck! Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Help Please

i appreciate program. supposed traffic light normal cycle continues , when press button, pedestrians can cross. have , error of unqualified id before } . can me please. int run; int red1 = 10; int yellow = 9; int green1 = 8; int buttonpin = 12; int red2 = 6; int green2 = 7; void setup() {   run = 0;    buttonpin = 12;     pinmode(red1, output);     pinmode(yellow, output);     pinmode(green1, output);     pinmode(red2, output);     pinmode(green2, output);     digitalwrite(green1, high);     digitalwrite(red2, high);     pinmode(buttonpin, input_pullup); }  void loop(){     changelights();     delay(15000);} void changelights(){       digitalwrite(green1, low);     digitalwrite(yellow, high);     digitalwrite(red2, high);     delay(3000);         digitalwrite(yellow, low);     digitalw...

Several "modules" in one Arduino

hello, what easiest approach this? i have 3 different "sensor packs", each of have ex. humidity, barometer, other (~3-4). what easiest way implement kind of modules? i thinking of going arduino uno prototyping, other ok too. in end i'd prefer use attiny though, using same amount of i/os should important (?) >> easiest way implement kind of modules? install existing libraries , use them is. tends work well. >> in end i'd prefer use attiny though, using same amount of i/os should important (?) not same number arduino, make sure have enough io pins connect whatever want hook up. Arduino Forum > Using Arduino > Sensors > Several "modules" in one Arduino arduino

Prille begin : IR Decoder - https://github.com/sui77/rc-switch/

ik probeer een afstandsbediening te decoderen. de afstandsbediening in orde, zoveel zeker quote #include <rcswitch.h> /*   simple example receiving     https://github.com/sui77/rc-switch/ */ #include <rcswitch.h> rcswitch myswitch = rcswitch(); void setup() {   serial.begin(9600);   myswitch.enablereceive(0);  // receiver on interrupt 0 => pin #2 } void loop() {   if (myswitch.available()) {         int value = myswitch.getreceivedvalue();         if (value == 0) {       serial.print("unknown encoding");     } else {       serial.print("received ");       serial.print( myswitch.getreceivedvalue() );       serial.print(" / ");       serial.print( myswitch.getreceivedbitlength() );       serial.print("bit ");       serial.print("prot...

Has anyone been successful importing h.264 into Encore?

first, system , goal: a macpro 2.66mhz dual core , 12 gigs of ram. multi terrabytes of space. i shoot on panasonic hvx-200, edit in final cut pro , output quicktime files basis rendering dvd , blu-ray. shot stuff in 1080i. camera codec dvcprohd , output also. i trying burn blu-ray discs. have external pioneer bdr-203 blu-ray burner , works fine. i have done tests , have decided blu-ray, h.264 far superior mpeg2 in , file size sticking it. here issue (and have scoured forum area , found no 1 discussing or solving issue date): i have made hundreds of different dvds dvdstudiopro , familiar it. not off on tangent beloved apple has decided betray me not supporting blu-ray (the way output hd independents) studied on encore , have been using format latest project hd. interface works pretty nice , has superiority dvdsp have have patience of job see results. 5 day (remember. that's 24 hour days) rendering tops far. (ok. full disclosure... documentary 3 hours , 15 minutes long dvdstudiopro t...

Ethernetshield automatic connect with every lan

Image
dear all. i noop .. sorry.. dut try best..:-) only hope can me. forum otherwise for... i try make universal part of sketch ethernet shield. now need set shield work with: code: [select] ethernet.begin(mac,ip,dnsserver,gateway,subnet); only when use board in other lan need internet need set every time ip , gateway etc, is there no solution start shield dhcp option. so board connect lan , internet, dhcp. something like: code: [select] ethernet.begin(mac,dhcp); i thet there no static ip.. no problem, when shield internet automatic hope have sketch example me. thanks!! code: [select] if(!ethernet.begin(mac)) {    serial.println("no dhcp. setting static");    ethernet.begin(mac,ip,dnserver,gateway,netmask); } else {    serial.print("dhcp ip ");    serial.println(ethernet.localip()); } Arduino Forum > Using Arduino >...

CAN'T ACCESS MQTT SERVER m2m.io

Image
i have installed mosquitto  on pc , did testing on command line ..it works fine.. now want publish  data on mqtt server "q.m2m.io".. i following below link: http://chrislarson.me/blog/using-mqtt-connect-arduino-internet-things.html but unfortunately can't access "http://app.m2m.io/signup" registration... is there problem website? anyone used website? any appreciated  quote from: akshay123 on jul 14, 2017, 01:50 pm but unfortunately can't access "http://app.m2m.io/signup" registration... is there problem website? anyone used website? any appreciated  how know if there problem website? ? ? it's not ours. Arduino Forum > Using Arduino > Project Guidance > CAN'T ACCESS MQTT SERVER m2m.io arduino

For Persian Language show wrong (generated by Oracle Report Server)

hi,       when oracle report server (10.1.2) generate pdf output show persian characters wrong.   persian language(use in iran , azarbayjan , tajikestan ,... ) has 4 characters more arabic (cp1256) . 4 characters (پ  ,ژ,گ,ج) . when come (this characters ) in duration word appear space  between word. for example word پشتو show in pdf پ شتو . in html format don't has problem accrue in pdf output .       this persian characters : u 067e peh u 0686 tcheh u 0698 jeh u 06a9 keheh       then dont know problem related oracle report server or acrobat reader viewer ?   when copy پ شتو of arcobat reader , paste windows notepad show correctly (پشتو ).   i think relare /encoding /winansiencoding insite pdf file becouse :   windows code page 1252(arabic encoding) persian 1256 , called “windows ansi” encoding. standard windows encoding latin text in western european languages.       please me how can ...

Thread: Resizing a GPT partition with a ext4 filesystem

i'm trying resize (grow) large (3tb) gpt partition ext4 filesystem on ubuntu server 9.10 amd64. i'm having problems figuring out tools use, , sheer amount of information returned googling has left me bit confused. far have boiled down following: can't use fdisk resize partition because fdisk doesn't support partitions larger 2tb can't use gparted because: 1) it's headless server , don't have physical access right now. 2) developers of gparted have issued warning regarding ext4 filesystems: http://gparted-forum.surf4.info/viewtopic.php?id=13960 best bet seems parted resize command , resize2fs, if have understood manual parted correctly man page parted says: known issues ext3 filesystem functionality not work. manage ext3 type filesystems use tools resize2fs(8 ) or mke2fs(8 ). note supported ext2 filesystem deprecated once ext3 support finalized. further note ext3 sup...

Vista 64 and Sony CX 100 (AVCHD &m2ts)

hi have bought new computer vista 64 , small sony cx100 records internal flash memory , sony's memory stick avchd filming skydiving , having problems capture , getting capture window recognise device , if import video hard drive using sony's propreitary software , try import file project file type not recognised,  many in advance help.   mark welcome forums. firstly, please note cs3 not designed , not supported on vista x64. many people experience problems. see: faq: how import xyz format files? see also: faq:how convert files? cheers eddie More discussions in Premiere Pro CC adobe

Thread: Change meta tags

i have folder has lots of sample audio files, in mp3 format. know of way change artist - album info these files in 1 go. wanting change artist files myself , album day/date etc. easytag tagtool . both in repos jaunty , imagine karmic. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Multimedia Software [SOLVED] Change meta tags Ubuntu

How do I make an image transparent?

hi   i'm getting grips dreamweaver before trying design site, i've hit bit of stumbling block.  have logo created on word using newly created font.  i've managed transfer font dw , import logo image without problem, i'm looking change background colour, , have image show transparently.  logo done dark blue, if change background colour, logo surrounds still show in white, shows logo in white square.   what need rid of white background on logo?  have photoshop again i'm useless it!   many thanks. this isn't dreamweaver question, 1 should answered in fireworks or photoshop forum. however, in photoshop select file > save web , devices. in dialog box opens, select gif, transparency, , set matte white. More discussions in Dreamweaver support forum adobe

Display file names on LCD

i trying find cheapest way display file names on lcd. it needs have usb i/o. pretty small mp3 player except microphone, battery , speakers. what options available? before tell me, use arduino , hook , lcd  -  need cheapest. lcd+storage should cost around 1-$2. storage around 512mb minimum should ok. is possible $0.5 piece make? ha ha, you're funny. $0.5 piece make (usd? other currency?: arduino usb interface lcd mp3 hardware microphone battery speakers => amplifier also control buttons? case hold together. sd card >=512mb Arduino Forum > Using Arduino > Project Guidance > Display file names on LCD arduino

Newbie: Help me 3-5 v step-up

hello! i have different projects going on, , on 1 have microchip , ultrasonic range detector. chip takes 3v , sensor 5. want power entire circuit 3v lipo ion battery. small , powerfull. so how can step 3v 5v sensor? thanks tyler! you buy 'boost' (aka step-up) converter. or.... go other way, , have 5 v main supply , use 'buck' (aka step-down) converter. just make sure converter able supply amount of power need supply. Arduino Forum > Using Arduino > General Electronics > Newbie: Help me 3-5 v step-up arduino

Search Engine Friendly URL does not work - Joomla! Forum - community, help and support

Image
hi all, i added search component in website , did not configure  search engine friendly urls in global configuration. overall looks except search component. friendly urls automatically added in search result page. , click on it, it's broken. mention on localhost, runs ok. error happens on online website. you can try search here http://www.myaustininjurylawyer.com/index.php (using search box). i've checked server , found mod_rewite available. details below: core prefork http_core mod_so mod_access mod_auth mod_auth_anon mod_auth_dbm mod_auth_digest util_ldap mod_auth_ldap mod_include mod_log_config mod_env mod_mime_magic mod_cern_meta mod_expires mod_deflate mod_headers mod_usertrack mod_unique_id mod_setenvif mod_mime mod_dav mod_status mod_autoindex mod_asis mod_info mod_dav_fs mod_vhost_alias mod_negotiation mod_dir mod_imap mod_actions mod_speling mod_userdir mod_alias mod_rewrite mod_proxy proxy_ftp proxy_http proxy_connect mod_cache mod_suexec mod_disk_cache mod_file_cac...

Thread: Broken executables in extensions in Firefox 3.6

i thought interesting let other users know this. http://blog.mozilla.com/addons/2010/...n-firefox-3-6/ blog post targeting developers, if find extension doesn't work compatibility check overridden, might because of this. basically, changed way how extensions extracted during installation , due issues, extracted executable loses permission executed. affects extensions executables included (binaries, bash scripts...) , should fixed on firefox 3.6.1. if want fix problem particular extension, locate executable in extension folder , change permission accordingly. Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Broken executables in extensions in Firefox 3.6 Ubuntu

Added Font Not Working

hi, new here.  purchased font (boycot) , added "fonts" folder.  works great in ms word, doesn't seem work in photoshop.  have cs2 , i'm using pc.  when select text tool , "boycot" font, see blank spaces (if that) , error message.  2 messeges are:  "could not complete request because prevented text engine being initialised." or "could not complete request because of program error."  other font's work fine , said... "boycot" font works in other programs ms word.   thanks! delete adobefnt*.lst files on system , let list rebuilt (search in windows search...)   if doesn't work, reset photoshop preferences: http://forums.adobe.com/thread/375776?tstart=0     you did install font correctly right? there's font applet in windows control panel you're supposed select "add font" add them system. don't copy them around... More discussions in Photoshop Windows (read only) adobe

SainSmart 4.3" TFT LCD Touch Screen

has used sainsmart 4.3" tft lcd touch screen display? purchased 1 while ago , have been unable work @ on uno r3. repeatedly requested sainsmart , e-mail thing didn't work.  kept giving same answers , kept getting same results "nothing". if has ideas appreciate them.  let me know further info need lost on , pretty in dark. not sure libraries required.  thanks. p.s. has ssd1963ql9 controller chip. Arduino Forum > Using Arduino > Displays > SainSmart 4.3" TFT LCD Touch Screen arduino

Unable to login

starting afternoon 2pm pst unable login. until time, had had no problems logging in .my browser said redirecting , never did finish. had create new account able login. gives? screen name account in question "si conehead". si, clarify, logging in new forums earlier week, , it's broken you?  because if tries logging in new forums have been unsuccessful, that's different issue.   but if have logged in new forums week successfully, , can't si, first try deleting abode.com , forums.adobe.com cookies. More discussions in Forum comments adobe

Timer Help

hi,´ i have timer, when button pressed activates relay time, duration regulated potenciometer. int potpin = a1; const int buttonpin = a2; void setup() { serial.begin(9600); pinmode(ledpin, output); pinmode(buttonpin, input); } void loop() { int buttonstate = digitalread(buttonpin); int val = analogread(potpin); long tempo = (val*19.550342131); serial.print(tempo); serial.print("tempo:"); // read value sensor if (buttonstate==high) { digitalwrite(ledpin, high); delay(tempo); digitalwrite(ledpin, low); } else {}; // turn ledpin off delay(500); } thats code, problem when press de button, arduino stops reading code while counting, can show me way keep running code, counting time? thank you see blink without delay example , of many tutorials on it. Arduino Forum > Using Arduino > Project Guidance > Timer Help ...

Custom Readout Display2 on Digital Callipers

hello all, i impressed arduino products , incorporate compatible products project. here complete project information. objective: display preset digital readout (display2) corresponding measured dimension on vernier callipers (display1). digital readout display shall added on callipers, attachment , shall utilise callipers battery. please if have suggestions or advice. regards, lokeswar panchala how getting data calipers? have set sort of electrical interface? Arduino Forum > Using Arduino > Project Guidance > Custom Readout Display2 on Digital Callipers arduino

Why do my TOC subentry titles jump to the left margin?

as select lower-level toc entries (books and/or pages), title jumps left margin (that is, pane scrolls right). renders surrounding entries illegible.   in attached outdent_toc.gif, note location of "add-on..." page entry, 5th-level toc entry, shown in margin_toc.gif picture, result of scrolling left.   this regression rh x5.     leon using standard book icons, seeing toc pane remaining left aligned when click on down 3 levels. saying click lower levels, pane scrolls right, think.   could try different skin see if affects anything?   you said regression x5. on rh7 or 8? cannot remember. tested against rh8 output. More discussions in WebHelp adobe

Anyone has an idea about joomla cb - Joomla! Forum - community, help and support

Image
hey folks, i running social networking website using joomla cms , community builder user account management. t  working great. joomla, made things simple i have forum installed on same db joomla , has separate login users. f can h ve copy of user t ables used in joomla , can use same ffor forum . way  can h ve single login module whole website. anyone has n idea user accoutn related stuff placed in joomla . pleeeze throw light  most need bridging component in order share same userbase between 2 systems.  copying userbase on won't enough both systems need kept in sync , session management.  if tell forum using maybe can point correct briding component. Board index Joomla! Older Version Support Joomla! 1.5 Extensions for Joomla! 1.5

Thread: wine+pulseaudio=freeze

since week or so, wine 1.1.36 + pulseaudio (0.9.22~ *) come in general freeze: ~ 80% cpu ~ gnome-setting-daemon crash randomly due "not enough memory" on system q9550 + 4go. have remove ubuntu-desktop & purge pulseaudio packages have stable system. else having such trouble ? actual wine stable & problem appear last pulseaudio updates few days ago. of course, when wine updated , winecfg updated each time. looking @ system-monitor: pulseaudio , gnome-setting-daemon have heavy cpu activity , freeze application , slow down system. logs don't show errors that, don't know package or dependency create problem: when complaint missing memory, system-monitor still show lot of free memory not used. so, system-monitor showing wrong informations ? note: same problem karmic , lucid Forum The Ubuntu Forum Community Ubuntu Specialised Support ...

Premiere CS4 playback .mov (quicktime file) in Mac

hi,   i acquired cs4 , latest loaded macbook pro 2.66 ghz. have problem playing .mov file - obvisouly main nle format mac. i've been testing 15 seconds 1920 x 1080 clip - size 150 mb transcoded avchd via cineform/tmpgenc (pc)/voltaichd. regardless of transcoders use, when playback file in source window, video stuttered , choppy. rendering helps can play nicely in timeline major problem cannot work multi-cam monitor on. 2 .mov clips on multi-cam, way stuttered , choppy there's no way can work with.  hdv footages captures directly z5u works flawless editing mult-cam monitor - not .mov file. tested same clip transcoded .avi , plays nicely multi-camera monitor on old pc (core2 2.0 ghz) running premiere pro 2.0. thought premiere memory management issue dealing quicktime file (.mov).   does has same issue working .mov file editing multi-cam? i'm stressed out last few days - want go fcp instead. thanks!   jun hey jun   did ever work out multicam issue?  using ma...

Page Class Suffix Problem - Joomla! Forum - community, help and support

i have been searching hours on way page class suffix's work on site.  places have found seem tell me how it, when try tell me, don't.  needing different header logo appear on pages. here css header right now: code: select all .header {    margin:20px -10px 10px -10px;    padding:10px 0px;    line-height:105px;    border-top:1px solid #ccc;    border-bottom:1px solid #ccc;    background:#e8e8e8 url(../images/bucket.png) no-repeat scroll 0pt;    } i needing change background image 'bucket.png' 'forum.png'.  have tried adding this: code: select all .header-forumlogo {    margin:20px -10px 10px -10px;    padding:10px 0px;    line-height:105px;    border-top:1px solid #ccc;    border-bottom:1px solid #ccc;    background:#e8e8e8 url(../images/forum.png) no-repeat scroll 0pt;    } and added page class suffix '-forumlogo' page want logo appea...

Thread: Nvidia graphics card issue

hie there, seem have serious problem on ubuntu 9.10 system or maybe didn't right. pc reboots each time try active or change desktop settings advanced settings, example,or activate wobbly screen, , when restarts reverts original basic settings. using geforce 1gb graphics card , maybe if me steps on how install drivers (which think might issue here) said have done wrong. advice appreciated regards, fibonacci21 bump Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Hardware [ubuntu] Nvidia graphics card issue Ubuntu

No images in the Template Tutorial - Joomla! Forum - community, help and support

hello i've realized " template tutorial", joomla! 1.0 document area, cannot show images. i've tried both firefox , internet explorer, no images shown. to learn templeates important see images of tutorial. otherwise, not able build own template. please, help miguel i see 1st image (on 2nd page) missing other images on following pages seem display ok. have tried viewing other pages? Board index Joomla! Older Version Support Joomla! 1.0 Templates & CSS - 1.0.x

Thread: How to rename multiple files with only parts of the original name in the new name

hi, me find way rename file different name containing parts of old name? example: original file name: filename1.abc.xyz.some.other.stuff final file name: filename1.abc.xyz length of file name not constant abc.xyz not constant format (three numbers.three numbers) .some.other.stuff not constant , want rid of appreciated. thank you! hiya. maybe create script operation: code: #!/bin/sh files=`ls /path/to/files/` oldfilename in $files ; newfilename=`echo $oldfilename | sed "s/\(.*\.[0-9][0-9][0-9]\.[0-9][0-9][0-9]\)\..*/\1/"` echo $newfilename done if works, replace "echo $newfilename" "mv $oldfilename $newfilename" Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [SOLVED] How to rename multiple files with only parts of the original name in the new...

how do I change the color of a Python/Tkinker button when it is commanded.

i need bit of please.  here program 14 buttons.  set latch , unlatch relays.  1 of left latches , 1 on right unlatches 1 of 7 relays.  works fine have button color change when relay latches.  how do that?!? import serial import tkinter arduinodata = serial.serial('com8', 9600)                 def led1_on():     arduinodata.write('2') #write(b'1')     def led1_off():     arduinodata.write('3') def led2_on():     arduinodata.write('4') #write(b'2') def led2_off():     arduinodata.write('5') def led3_on():     arduinodata.write('6') #write(b'3') def led3_off():     arduinodata.write('7') def led4_on():     arduinodata.write('8') #write(b'4') def led4_off():     arduinodata.write('9') def led5_on():     arduinodata.w...

Thread: sudo os-prober = ls: reading directory /var/lib/os-prober/mount: Input/output error

hey. windows disappeared grub2 menu. if run sudo os-prober i get ls: reading directory /var/lib/os-prober/mount: input/output error initially windows in boot menu (the 1 generated during initial kubuntu installation) disappeared when installed newer kernel. using kubuntu9.10 64bit should do? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [kubuntu] sudo os-prober = ls: reading directory /var/lib/os-prober/mount: Input/output error Ubuntu

Frage zu WiFiServer server(80) aus dem Beispiel WiFi Web Server

hallo, meine frage bezieht sich auf die definition. soweit ich mich bis jetzt eingelesen habe wird die methode einer klasse aufgerufen xy.abc(w), das hätte ich jetzt auch bei wifiserver erwartet. kann mir jemand sagen wie sich der aufruf hier verhält bzw wo kann ich das nachlesen. unter klasse/methode finde ich sowas nicht. die beschreibung von  wifiserver https://www.arduino.cc/en/reference/wifiserver habe ich auch durchgelesen hilft mir aber beim grundverständniss nicht weiter. vielen dank!    schau mal in wifi.h ganz unten. da wird eine klassenvariable mit namen wifi angelegt, auf die sich wifi.localip() bezieht. wenn du etwas anderes gemeint hast, dann musst du die frage konkreter stellen. gruß tommy Arduino Forum > International > Deutsch (Moderator: uwefed) > Frage zu WiFiServer server(80) aus dem Beispiel WiFi We...

Roll Over Works, But when i move off the animation, it restarts?

ok, have no action script code in actual flash animation other stop(); on final frame wan tthe movie stop. wat thing is website banner, tabs, each tab button, , on rollover animation plays seperate animation ontop of advertisement. when remove mouse actual flash enviroment, canvas goes white again, other hten buttons. want each time movie plays, want stay. example of wat im looking on www (dot) collarity (dot) com dont have file , running yet. cause im havign filezilla issues....there new update doesnt seem accept swf files. wierd... or advice appreciated ~ryan rockwell you can't control button states actionscript (or else).   so, you'll need use code or can add first frame of movieclip (that's in buttons' on frame) buttons' frame. More discussions in ActionScript 3 adobe

Measure Earth Resistance

Image
i want make earth resistance tester. in want make contraption display current 'a' in bigger loop (electrodes e & a) , voltage 'v' between electrodes e & b. using arduino board. after want display resistance 'r' r=v/a. i can make circuits. have arduino uno board me. what else need (shields, sensors, etc) measuring , displaying current & voltage. also program lines calculate , display resistance. this involving high ac voltage (~500v) & currents (1000 amps). p.s.: new in arduino world please treat me novice... hi, i suggest searching , reading on subject first. there several information sources, such as: this one. the diagram showed looks old textbook.  there up-to-date sources online. along way may find out why many broadcast stations have antenna/ground systems located in swampy, salty areas, jersey meadows.  Arduino Forum > Topics ...

Arduino Nano alimentato a 5V

ciao tutti, ho visto su arduino compare , che l'arduino nano ha un voltaggio in input che va dai 7v ai 12v, se usassi un trasformatore 5v (quello del telefono) sono sotto il limite minimo di input, potrei incorrere in qualche problema? grazie in anticipo, simone cavo adattatore da jack trasformatore usb mini della nano e hai risolto Arduino Forum > International > Italiano > Hardware (Moderator: leo72) > Arduino Nano alimentato a 5V arduino

Chest movements with strain gauge

Image
hello! i'm thinking of using strain gauge detect chest movements occur during cough (to detect cough). the problem i'm not familiar strain gauges, don't know how implement it. i've done using piezoeletric elastic around chest. how can similar strain gauge? this example: https://www.researchgate.net/publication/304573549_calibrating_respiratory_strain_gauges_what_the_numbers_mean_for_monitoring_respiration but don't know how done! also read mercury-in-rubber strain gauges.. suggestions? quote from: diogotec on jul 06, 2017, 12:39 am suggestions? find tutorials on web strain gauges , learn how work.  Arduino Forum > Using Arduino > Project Guidance > Chest movements with strain gauge arduino

Unire sketch per servomotori

Image
buongiorno, sto lavorando per un progetto con arduino uno, devo creare un braccio meccanico con diversi servomotori da 13 kg. l'idea era quella di realizzare un braccio meccanico che potesse essere comandato in tre diversi modi premendo tre diversi pulsanti, uno per ogni modo(se in tre modi è troppo complicato, almeno due se fattibile), ora mi spiego meglio. modo 1 : attraverso un comando bluetooth con smartphone modo 2 : attraverso dei potenziometri modo 3 : il braccio meccanico esegue sempre lo stesso movimento "all'infinito" (spostare un oggetto). premetto che tre sketch li ho già, anche tutte le varie parti ecc.... il mio problema è questo dunque: come fare dire ad arduino che se premo un pulsante deve eseguirmi un certo sketch, se ne premo un altro deve eseguire un altro sketch e stesso discorso per il terzo sketch. mi basta una sola scheda di arduino uno? come faccio mettere tutto in un unico sketch? grazie mille in anticipo come già spiegato ogni pul...

Help with importing .raw images and b+w filters

i have been taking alot of b+w images.  of these images apply red in camera filter.  when import pictures lightroom 2.3 color version of picture rendered, without red in camera filter took pictures with.  know of way restrict lightroom changing .raw images color version , show them taken.  if matters shoot canon 1000d.   please help!!   thanks. lightroom ignores metadata settings applied when work raw , use canon's picture style settings.   those applied jpg, not raw.  feature, not bug, because it's considered give more control using settings in lightroom monochrome, , apply red tints-- plus still have flexibility of making color print if wanted, you'd lose if raw enforced picture style settings.  if bugs you, shoot in raw+jpeg (or jpeg), , bring jpegs lr, i'd recommend sticking raw , applying edits want in lightroom instead. More discussions in Lightroom Classic CC adobe

Organización, organización! 8-)

como parece que vamos tener que compartir el foro entre varias aplicaciones, me parece conveniente sugerir el método que utilizábamos en los grupos por nntp: incluir entre corchetes la aplicación la que se refiere el hilo, ej:   [dw] dreamweaver {fx} flex [fl] flash [ps] photoshop [lc] lifecycle ... [ot] off topic [ann] anuncio   además, adobe nos lo ha puesto fácil con los iconos para elegir el texto 8-) hola andres... la cuestio es como se lo hacemos saber los que ocasionalmente escriben o los que se inician? de parte de los que fecuentamos el foro no hay mayor problema pero los otros? More discussions in Foro en español adobe

Many thanks for the help, and where do EEPROMS go to die?

Image
hi, posted thread noob few months project, , given great advice nano job required. , has. i've small 5 axis mill/engraver @ home, have cut casings , pcb'c (should called mcb's (machined not printed lol)) above 2 devices (left) bme280 housing (below left) , main pcb/mcb's. nano goes on larger board after resistors, jumpers (gnd & sda) , rgb led , oled headers soldered. solder nano , place on top board 3 buttons , 20mm speaker medical grade nylon uncoloured, , led's great in it, red nano's power light!!! did put black enamel on 1 take out. boy likes i'robot lol. green rgb led on it's lowest pwm power setting, bmp goes 0 target glows brighter, turns blue @ correct pressure. red on pressure. lump of plastic parts sat on billet cast nylon. pins used are... 3,6,9 pwm led a1 speaker 2,7,11 buttons a4,a5 i2c oled , bme280 5v buttons 3.3v bme280 both gnds used , connected via top board. the sketch 2 types of lung physio (button/menu selected), , all...

Need help with combining swf files together

hi everyone have problem project. created several swf files, want them interact each other there main swf file lets call it: main.swf within file(main.swf) create buttons calling other swf files instance pressing 1 button one.swf open pressing other button two.swf open , on. create buttons within one.swf , two.swf allowed go main.swf if me how grateful. as2.0 working with many thanks any loaded swf want remove can use removemovieclip() method applied main (loaded swf) timeline.   so, main timeline of loaded swf:   this.removemovieclip(); More discussions in ActionScript 1 and 2 adobe

Thread: Playback/Record Works only if ext. speaker is plugged in. WTF?

im using karmic koala , have handful of problems in regards sound , visuals. 1 such problem computer wont play music unless have speakers plugged headphone jack. tested playing music , pulling speaker jack out of headphone port while going on. music wont channel through front/built-in speakers. when comes recording, same problem exists. cant record without jack hooked in. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Multimedia Software [kubuntu] Playback/Record Works only if ext. speaker is plugged in. WTF? Ubuntu

Thread: 9.10 Does not boot without any peripherals

hi all, did fresh install of 9.10 on 1 of boxes. i'm planning on using particular box file server. issue i'm having booting up. if don't attach peripherals (mice, keyboard or monitor) machine, stuck grub menu list , however, if have 3 of peripherals attached, grub boots automatically. i've never encountered issue *nix installs i've done in past. there setting need change in grub config i'm missing or need add. tia Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] 9.10 Does not boot without any peripherals Ubuntu

LCD impazzito con relè stato solido+pompa 12v

Image
salve tutti...ho un problema che non riesco risolvere in alcun modo. mi spiego meglio. ho creato il prototipo di un piccolo sistema di irrigazione automatizzato che utilizza, oltre ad un sensore di umidità del terreno, una piccola pompa da 12v e un modulo da 2 relè stato solido, tutto ovviamente collegato ad arduinio. il problema sussiste però quando si accende la pompa, dato che il display lcd impazzisce generando scritte caso. pensavo che avrei risolto utilizzando relè stato solido al posto dei classici meccanici, ma non è stato così. la cosa ancora più strana è che se utilizzo una pompa diversa quella da me collegata, ma solo con un amperaggio minore (e poco potente per l'utilizzo che ne devo fare), il problema con lcd non si presenta... qualcuno può consigliarmi quale potrebbe essere un'eventuale soluzione? grazie mille  ma come alimenti il tutto ? ... stai usando due alimentazioni separate ? ... perché probabilmente il regolatore di ard...

GSM code for sending GPS data

this sister project "gps logger, reading , writing , sd" because connected, again separate , stand alone device.  project, using had on hand, , be  temporarily; arduino pro mini 168 chinese copy, fine, until 2 projects merge.  using nano 328.  this code functional limited, , starting point.  both pro mini 168 module , gsm a6 module, being powered usb ports, now, change when projects merge.  virtual serial tx, rx connected pins (6,7) using<softwareserial.h>, change also. the amount of characters i'm able send, on gsm, per text right 118.  i'm hoping someone, further knowledge can increase amount per text.  code have grab data gps module, send text message, every 5 minutes or so, automatically.   ***this added after original posting*** able upload 5 character text (**.**) reflect sea level pressure correctly adjust altitude. ***end off added content*** i had piece code copy pasting half @ time.  don...