Posts

Showing posts from August, 2012

SPI, Master receiving data from the Slave, how to?

hi, might have made hard on myself on project. perhaps it's best start @ beginning. final thesis extracting high resolution data. data (in case) generated @ 90 khz, know it's not fast arduino's. transportation "line" (fieldbus) has maximum speed of around 30 khz. means need buffer generated data, since don't want lose of it. far it's pretty straight forward. now i've decided use spi communication. way i've setup case follows: slave1 > master > slave2 slave1 = simulation of data generation. (arduino uno) master = arduino due, because has possibility switch between multiple slaves slave2 = fieldbus slave, gives interrupt master has send data slave (arduino uno). so since i'm pretty new spi thought let's start basics. used example code http://www.gammon.com.au/forum/?id=10892 has been helpful. i've been able send data master slaves, simple texts. without interrupt "talks" slave 1 , interrupt "talks" sla...

Thread: GMP installed,compilation problem

i have installed gmp 5.0.0.... when im trying compile code getting these errors!!! code follows: #include <stdio.h> #include <gmp.h> int main (void) { mpz_t r, n; mpz_init (r); mpz_init_set_str (n, "123456", 0); gmp_printf ("%zd\n", r); return 0; } errors: bvjkishore@ubuntu:~/c$ g++ k.cc -lgmp /lib/../lib/libgmp.so: undefined reference `__gmpn_mul_1c' /lib/../lib/libgmp.so: undefined reference `__gmpn_rsh1add_n' /lib/../lib/libgmp.so: undefined reference `__gmpn_sub_nc' /lib/../lib/libgmp.so: undefined reference `__gmpn_modexact_1_odd' /lib/../lib/libgmp.so: undefined reference `__gmpn_add_nc' /lib/../lib/libgmp.so: undefined reference `__gmpn_addlsh1_n' collect2: ld returned 1 exit status.. have compiled "g++ test.cc -o test -lgmp" , installation of gmp-5.0.0 done in asusal way ..like downloaded"gmp-5.0.0." gmp ...

ShiftPWM Code error (use 74HC595)

im using 3 shift registers project.(8 rgb leds) just try blow code,but work in 1 time.not continuously. can me fix it? code: [select] const int shiftpwm_latchpin=8; const bool shiftpwm_invertoutputs = true; const bool shiftpwm_balanceload = false; #include <shiftpwm.h> unsigned char maxbrightness = 255; unsigned char pwmfrequency = 75; int numregisters = 3; int numrgbleds = numregisters*8/3; void setup(){   serial.begin(9600);   shiftpwm.setamountofregisters(numregisters);   shiftpwm.setpingrouping(1);   shiftpwm.start(pwmfrequency,maxbrightness); } void loop() { chase(100); } void chase( int wait) {   (int j=0; j<10; j++)     (int q=0; q < 3; q++)     {       (int i=0; < 8; i=(i+3))       {         shiftpwm.sethsv(i+q, 200,255,100);               }       delay(wait);        (int i=0; < 8; i=(i+3)...

Thread: what does "take ownership of filesystem" mean in palimpsest

Image
i have selected option "take ownership of filesystem" have no idea how reproduce without using palimpsest (i.e. gnu bash). palimpsest _does_not_ edit /etc/fstab (i've checked several times). ext(2,3,4) mounting option not include "...,user=felipe" , adding gives error when mounting (manually adding option, , including in /etc/fstab both give errors). i've checked man page mke2fs(8) search 'own' or 'owner' turns nothing useful. how take ownership of filesystem without using palimpsest? (running karmic, gnome + xfce) attached images palimpsest2.png (36.7 kb, 19 views) code: sudo chown ${user} /mountpoint/of/disk/i/want/to/own or code: cd /mountpoint/of/disk/i/want/to/own sudo chown ${user} . this handy in case find can write...

Stepper motor noises at low rpm

i have 4 wire bipolar nema 23 stepper motor (24v power supply) connected m542t stepper driver , run on sketch arduino uno. run using sketch supplied designer of project. says mods @ own risk , offers no if change them asking here advice. project has been breadboarded , works design run stepper @ 0-10 rpm , has lcd shield show speed. has been calculated sprockets attach rest of project turn disc. problem/question stepper makes few noises , vibrates @ 0-4 rpm smooth after 10 rpm. sounds bearing click once second rotates @ slow speed. vibrates @ slow speed. , when power down, , power up, stepper makes dull thud or clunk. normal? running driver @ 1600 , amps @ 4.5 per install directions. stepper motor rated @ 3.5 amps current @1.8 degrees , 200 steps. thinking should change microstep setting 1600 higher. or advice appreciated first dive steppers , arduinos. thanks quote it vibrates @ slow speed. , when power down, , power up, stepper makes dull thud or clunk....

Thread: GIMP 2.6.7 Won't Load in Ubuntu 9.1 Karmic Koala

hello! when click on applications -> graphics -> gimp image editor icon gimp doesn't load. instead task bar button appears in lower task bar brief moment , disappears. i've tried starting gimp through terminal "gimp-2.6" , comes "segmentation fault". came across recent thread here on forums gimp/photshop adaptation culprit. have regular gimp installed. i've removed gimp through synaptic, rebooted, reinstalled gimp through synaptic, rebooted , still gimp won't load , still same response in terminal. possible i've managed mess system in such way gimp never run unless wipe out ubuntu , reinstall again. however, don't use gimp enough warrant dumping , starting over. else experiencing problem? if so, there fix or patch in works? thanks! just guess perhaps problem in configuration file. open home folder in nautilus , ctrl-h show hidden files. se...

Generate Frequency using simple HIGH-Delay-LOW-Delay-Repeat

i trying generate frequency resolution of 0.1hz/steps 0 1khz. the code below: code: [select] void setup() {   // put setup code here, run once: pinmode(13,output); } void loop() {   // put main code here, run repeatedly: digitalwrite(13,high); delay(5000); digitalwrite(13,low); delay(5000); } by delaying 5 seconds after triggering high , low , shown in oscilloscope frequency 0.1hz (100mhz)  delay = 5000 after high , low; 0.2hz (200mhz)  delay = 2500 after high , low; up until 0.9hz (901mhz)  delay = 555 after high , low; when tried generate 10.1 hz, 1/10.1hz , divide 2 have delay @ high , delay @ low, 49 ms after high , 49ms after low. result 10.16 hz fine. but when tried generate frequency of 49.3hz , have changed delay delaymicroseconds , here's new code: code: [select] void setup() {   // put setup code here, run once: pinmode(13,output); } void loop() {   // put main code here, run repeatedly: digitalwrite(13,high); delaymicroseconds(...

Voltage Divider Battery Sensing - No Change to Readings?

Image
hello, it's me again. question i'm hoping can me please. the project i'm working on @ moment going powered 12v 7ah sealed lead acid battery (model: np7-12tfr if helps). i want project monitor own battery health turned library i've found on github called battery sense. https://github.com/rlogiacco/batterysense i using dc-dc converter step down 12v 5v powering project built sensing circuit based on sections: higher 5v, external voltage regulator , higher 5v, activated on demand . what ended on demand circuit placed between battery , dc-dc converter shown in higer 5v external regulator. i'm i've followed every instruction letter including recommended voltagereference calibration , getting reading doesn't appear changing. yesterday freshly charged battery @ 13.314v according battery sense sketch , today reads same? i verified reading yesterday against multi-meter , pretty darn close today multi-meter showing 13.093v sketch still says it's 13.314v....

link to external movieclip from html text box

hello,   simple question;   how link dynamic txt box (html) external movieclip (popup)   the thing found <a href=" http://www.yoursite.com " target="frame_name">     what need link/action html (as2);   on (release) { loadmovienum("01_mymovie.swf", 9); } any suggestions. thanks pascal use flash asfunction() create link , geturl() function open yoursite.com More discussions in Adobe Animate CC - General adobe

Thread: Slow boot on ubuntu/kubuntu 9.10

i experiancing slow boot in *ubuntu 9.10. gets hung on black screen text on it, after 5 minutes shows kubuntu logo. remember when had ubuntu installed had problem, typed single line in terminal , fixed. know line was. ps: running on toshiba p205 laptop dual core pss: sorry bad spelling nvm mods delete thread, found Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Hardware [SOLVED] Slow boot on ubuntu/kubuntu 9.10 Ubuntu

Table of contents for a single page article? - Joomla! Forum - community, help and support

Image
i've done searching around can't find suitable module or mambot, thought i'd ask experts :-) is there module (or mambot) can produce table of contents single page article based on heading (h1, h2, etc) tags article? i know joomla comes feature generate toc multi-page articles, using mospagebreak mambot, doesn't include heading tags individual article pages. website i'd have long articles on single page, , have similar toc feature linked individual parts of page. ideally i'd module can placed in generate site structure, , automatically generate table of links each of headings of displayed article. ideally rewrite headings include anchor tags, wouldn't hardship include in each of long articles manually. alternatively if there mambot produce similar toc @ top of long article, , parse headings on display, enough too. any thoughts? or writing first joomla module this?  thanks help! Board index Joomla! Older Version Support ...

Inserting Flash or java not working .. makes page (body) blank.

hi   i using cs4 , have run prob have not encountered before. i @ end stage of designing third website company work for, , have been trying statcounter code into page, have done many many times without issue. i noticed earlier unable put swf's page either, , worked around avoiding using flash. i paid hour , did not want waste time thought exotic issue perhaps related doctype or something, area not overly familiar with.   this address on testing site can see page working without javascript statcounter installed: http://www.school.seph.ca/main_en.html   and here address copy made javascript in usual place right @ end of body. it set invisible found visible counter tacky. http://www.school.seph.ca/main_enjav.html   it shows normal in firefox. in safari, chrome, , ie displas blank page.   in dw cs4 have tried many things, tried using transitional doctype, until noticed page did recently has no problems displaying flash or java in strict doctype. , going transitional...

Fehlermeldung beim hochladen des Arduino Boards

wenn ich das board anschließe und hochladen möchte kommt diese meldung. arduino: 1.8.3 (windows 10), board: "arduino/genuino uno" c:\program files (x86)\arduino\arduino-builder -dump-prefs -logger=machine -hardware c:\program files (x86)\arduino\hardware -hardware c:\users\felix\appdata\local\arduino15\packages -tools c:\program files (x86)\arduino\tools-builder -tools c:\program files (x86)\arduino\hardware\tools\avr -tools c:\users\felix\appdata\local\arduino15\packages -built-in-libraries c:\program files (x86)\arduino\libraries -libraries e:\musik, videos, bilder, dokumente, downloads\documents\arduino\libraries -fqbn=arduino:avr:uno -ide-version=10803 -build-path c:\users\felix\appdata\local\temp\arduino_build_38111 -warnings=none -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=c:\program files (x86)\arduino\hardware\tools\avr -prefs=runtime.tools.arduinoota.path=c:\program files (x86)\arduino\hardware\tools\avr -prefs=runtime.tools.avr-g...

Algum sistema de reservas online pra Joomla? - Joomla! Forum - community, help and support

Image
pessoal.. eu com um probleminha.. preciso de um componente pra reservas online pra joomla, apenas reserva de quarto pra hoteis e tal.. encontrei alguns na sessão de extensões.. mas apenas um deles é gratuito e é em ruby on rails com um conector pra joomla.. mas não tenho menor noção de como usar aquilo.. olhei manual pra ror no meu provedor.. mas meeee.. parecia grego.. alguém tem algum outra opção sem ser comercial? nao sei se ajuda este http://extensions.joomla.org/component/ ... itemid,35/ Board index Joomla! International Language Support International Zone Portuguese Forum Componentes, módulos e mambots

DS3234 + Arduino TFT screen using SPI

hey folks! have arduino mega 2560, ds3234 rtc, , arduino tft screen (this one: https://www.arduino.cc/en/guide/tft). both work fine independently, i'm having problems rtc when connect lcd screen well. i'm not familiar spi wondering if here me issue. the pin connections rtc are: clk - 52 miso - 50 mosi - 51 ss - 44 for lcd screen: miso - 50 sck - 52 mosi - 51 cs-ld - 28 dc-ld - 26 reset - 24 if understand correctly, miso, mosi , clk pins should same both devices, chip select pin needs different. devices want communicate needs have cs pin low, , other device needs have high. i wrote simple program sets rtc time, , displays second. have set cs, dc , reset pins display high, whenever connect display breadboard, both minute , second value become 0. starts working remove display. code: code: [select] #include <spi.h> int chipselect = 44; int intfreq = 3; /*display pins*/ int cs = 28; int dc = 26; int rst = 24; #define write_control_reg 0x8e #define read_control_reg 0x...

cambiare due variabili da monitor seriale

Image
salve sono un membro nuovo, mi chiamo alessio minoi, abito torino. sono uno studente di 18 anni, frequento la quinta. ho iniziato da poco ad utilizzare arduino ed ho riscontrato un problema nel cambiare due variabili ( t1 e t2) da monitor seriale. chiedo gentilmente una mano. questo è il programma che ho fatto : code: [select] int statosensore=0; int out=0; int serial=0; int t1 = 0; int t2 = 0; void setup() { serial.begin(9600);                                  //inizializzazione porta seriale di arduino pinmode(2, input);                                   //pin 2 configurato come ingresso } void loop() { start: serial = serial.read(); if (serial == 49)   {    while (serial != 48)    {    statosensore = digitalread(2);                 ...

Thread: read-only for windows 7 user on samba server.

hi all.. have problem can't seem figure out. samba fileserver runs fine os except windows 7. using xp, vista , linux able read,create,delete, when using windows 7, can read shares. appreciated! smb.conf code: [global] workgroup = workgroup server string = filserver dns proxy = no log file = /var/log/samba/log.%m max log size = 1000 syslog = 0 panic action = /usr/share/samba/panic-action %d ####### authentication ####### # "security = user" idea. require unix account # in server every user accessing server. see # /usr/share/doc/samba-doc/htmldocs/samba3-howto/servertype.html # in samba-doc package details. # security = user # may wish use password encryption. see section on # 'encrypt passwords' in smb.conf(5) manpage before enabling. encrypt passwords = true # if using encrypted passwords, samba need know # password database type using. passdb backend = tdbsa...

Sondaggio per aiutarmi - Joomla! Forum - community, help and support

Image
ciao ragazzi! vi volevo chiedere un grosso favore.  sto ottimizzando alcune aree del mio sito in modo tale da essere trovato dai motori di ricerca. ecco la domanda: cosa cerchereste (su google) per passare da joomla 1.0 joomla 1.5 ? vi prego senza farvi condizionare dalle risposte. grazie chi vorrà aiutarmi  le piu' cercate: - aggiornare joomla - aggiornamento joomla - come aggiornare joomla - joomla 1.5 - installare joomla 1.5 (e praticamente anche le uniche trovate in italiano grazie vari tool. usa quelle e vai sul sicuro  comunque con "aggiornare da joomla 1.0 1.5" sei gia' n.2 in google.com  Board index Joomla! International Language Support International Zone Italian Forum

Diode/ frequency signal interuption

do guys know of can use prevent feeding current besides diode? we have signal acceptor(frequency in hz) on arduino uno requires lift 4.7k resistor 5v bring signal 0v signal source needs feed computer , don't want voltage lifted signal go computer (not sure if fry). tried putting diode in blocked 5v flow the  computer arduino no longer got proper signal , didn't read correctly assume diode rectifying signal. need circuit or component prevent flow , let signal run clean through. in advanced help!! not enough info proper answer. most arduino variants use backflow protection. a nano uses simple schottky diode, , uno/mega uses p-channel fet. schematic diagrams can found on site. leo.. Arduino Forum > Using Arduino > General Electronics > Diode/ frequency signal interuption arduino

module DS1307, bibliothèque RTClib.h et port I2C

Image
bonjour à tous, je suis débutant et suis occupé à relire des projets que j'ai fait voici deux mois. j'avais utilisé un  projet trouvé sur un blog (http://electroniqueamateur.blogspot.ca/2013/06/une-horloge-pour-votre-arduino-real.html). en voici le code : code: [select] horloge arduino    horloge simple avec un arduino, un module breakout  rtc ds1307 et un afficheur lcd.    branchements du breakout rtc ds1307:  gnd --> gnd  vcc --> 5 v  sda --> analog pin a4  scl --> analog pin a5    branchements de l'afficheur lcd:  lcd rs pin --> digital pin 12  lcd enable pin  --> digital pin 11  lcd d4 pin  --> digital pin 5  lcd d5 pin  --> digital pin 4  lcd d6 pin  --> digital pin 3  lcd d7 pin  --> digital pin 2  lcd r/w pin  --> ground http://electroniqueamateur.blogspot.ca/2013/06/une-horloge-pour-votre-arduino-real....

Adding effects in CS3 causes preview to have patterns/noise

very new this... when add effects or play levels or colors preview video gets strange pattern or grid overlayed onto it. is normal?  have not tried exporting dvd or else.  want know if supposed happening. and if so, there reason? welcome forums!   is normal?   no not normal. please provide these details you.   very new this...   you find links many free tutorials in premierepropedia show how things done in premiere pro.   cheers eddie More discussions in Premiere Pro CC adobe

P Channel MOSTFET Question

Image
hey guys, i've got question regarding p channel mosfets the 1 i've bought following http://www.farnell.com/datasheets/2303831.pdf for project want turn on , off tp4056 18650 charger module. unfortunately can't use n channel mosfet believe grounds tied together. can use mosfet without needing transistor? bearing in mind source voltage 5v. or there simpler way this? any appreciated. hi, if supply switching 5v, possible, p-ch mosfet have logic level should switch on. can please post copy of circuit, in cad or picture of hand drawn circuit in jpg, png? thanks.. tom.. Arduino Forum > Using Arduino > General Electronics > P Channel MOSTFET Question arduino

Thread: Known stability/security concerns in 8.04/9.10?

Image
hey folks. having discussion on forum security vulnerabilities in microsoft's os versus ubuntu. i'm using ubuntu 8.04 , haven't had stability or security problems i'm wondering if there known issues bring discussion. trying google pointed me topic forum 2001, can't still valid. posted tophatcat hey folks. having discussion on forum security vulnerabilities in microsoft's os versus ubuntu. i'm using ubuntu 8.04 , haven't had stability or security problems i'm wondering if there known issues bring discussion. trying google pointed me topic forum 2001, can't still valid. i know there comparisons or studies, biased. don't think there way make fair comparison, because problems concern ones haven't been discovered. can point out many more vulnerabilities have been found , patched in linux, doesn't...

help with arduino simulation on proteus8

hi i'm working on school project, it's 3 floor elevator using arduino , , tried simulation on isis proteus 8, in vain, don't know problem , find arduino code , proteus project down bellow just record i'm beginner i'm not experienced. ps: think should using motor don't know how , kind of welcomed   you not find support proteus on forum; till haven't seen proteus related question being solved here. you're better of asking proteus specific questions on forum dedicated proteus. when head there, need give better description of problem; "in vain" not mean much. Arduino Forum > Using Arduino > Project Guidance > help with arduino simulation on proteus8 arduino

Determine if a text box is selected

hi   i'm using indesign cs2 , want use script export contents of text boxes file. i want able select 1 or more text boxes export, ignoring other text boxes in document. i can cycle through text boxes in document, exporting contents, how determine whether or not selected?   tia you go other way:   sel = app.selection; for(var i=0;i<sel.length;i++){      doyourstuff(sel+); }   harbs http://www.in-tools.com More discussions in InDesign Scripting adobe

Thread: loop devices

Image
i'm working on project in end users access windows programs run cd. brainstorm convert cds iso files, , store/manage isos loop devices on ubuntu server. know how on windows server, but, well, know.... 1 of limitations in windows practical purposes max out @ approximately 20 'virtual cds', , free software maxes out @ 8 devices. i'd prefer use linux server because of linux's lower demands on resources , (of course) cost. my assumption files on loop devices can isos. reasonable assumption? if use ubuntu server operate loop devices, , if content windows software, can windows users run software? what maximum number of loop devices can have on 32-bit server? on 64-bit server? assume devices numbered loop0, loop1, loop2, , on... if i'm on right track here, how windows workstations access virtual devices, i.e., command line command use access loop3? or access more direct, i.e., click on "filename" in windows explorer - mounted d...

How do I show my movie without restriction

dear everybody   thanks helpful answers, have problem.   my website includes flash-movie, when preview site in internet explorer , connect movie following message:   "to protect security, internet explorer has restricted webpage running scripts or active controls access computer."   how avoid problem? don't want visitors of site see message every time see movie, , have seen several movies on web without getting message.   please me, if have time!   best regards   message in bottle based on description, sounds though you've run ie's 'excellent' security system. way around use javascript include flash file , not embed/object tags.   swfobject (one of) main js libraries this: http://code.google.com/p/swfobject/   documentation swfobject: http://code.google.com/p/swfobject/wiki/documentation   i'm confident if take route visitors not run issue you've described. here's link blog post/article why have 'activate' embedded object (i.e., flash...

Thread: formatting partitions

my pc has 2 320g harddisks. want install few ubuntus in first 50 gb of first harddisk , leave rest of , second harddisk 2 fat32 partitions storage. question best way format these 2 storage partitions. during installation or afterwards gparted? when try during installation , chose fat32 storage area /dos , /windows mounting point options , has confused me since don't have windows or dos on harddisk. help. you don't have set mount points @ install. suggestions (i happen use /windows makes sense dual-boot , it's vista partition). can leave mount point blank and/or leave free space. can change partitions, format, or add entries want in /etc/fstab after ubuntu running. better depends on personal preference. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] formatting partitions Ubuntu

Thread: server needs an X. how do I start xfce on boot?

i installed server 9.10. realised needed x application. installed xfce4. how xfce launch automatically on startup? hi, can add following .bashrc/.bash_profile in home directory start xfce automatically when login on tty1: code: if [ "$(tty)" = "/dev/tty1" ] ; startxfce4 fi after reboot, enter login credentials @ command prompt , xfce automatically launch. hope helps. Forum The Ubuntu Forum Community Ubuntu Specialised Support Ubuntu Servers, Cloud and Juju Server Platforms [ubuntu] server needs an X. how do I start xfce on boot? Ubuntu

Ouverture interphone via l'arduino

Image
bonjour à tous, je viens découvrir l'arduino et de son immense potentiel! mais pour faire bref je suis un vrai novice en la matière. si je fais appel à vous c'est pour vous demander de bien vouloir me guider dans mon projet pas à pas svp. mon projet consiste à programmer l'ouverture de ma porte d'immeuble via mon interphone à une heure précise quand je rentre sans avoir à utilisé la clée ou le vigik. l'interphone est de la marque fermax et l'ouverture se fait en deux temps: 1: mise en marche de la caméra visio 2: bouton d'ouverture porte. si on actionne pas 1 le bouton d'ouverture sera sans effet. merci pour tout vos conseils je serai un bon padawan quote from: tyno on may 28, 2017, 11:36 pm bonjour à tous, je viens découvrir l'arduino et de son immense potentiel! mais pour faire bref je suis un vrai novice en la matière. si je fais appel à vous c'est pour vous demander de bien vouloir me guider dans mon projet pa...

phpbb to joomlaboard or fireboard help.... - Joomla! Forum - community, help and support

hello guys i'm new joomla, i've been searching topic related problem regarding migrating forum site phpbb joomlaboard or fireboard... need or guide how thing... pls. if there existing thread pls. point me in... thanks much... the best way go components website, link below site can phpbb fireboard conversion http://www.bestofjoomla.com/component/o ... t/catid,6/ hope helps! Board index Joomla! International Language Support International Zone Filipino Forum International Support Center

Temperature Controlled Servo

hi all, i new arduino. bought beginner kit arduino dfrobot (sku:dfr0100) , trying code servo rotate based on temperature. servo @ 179 degrees when under 25 celsius , @ 0 degrees when on 25 celsius. code sadly not working. don't have understanding of code, please explain as can! #include <servo.h>          servo myservo;               // create servo object control servo unsigned long teptimer ;    int threshold = 25; // threshold temperature int servocold = 0; // angle in servo go to int servohot = 179; // angle in servo go to   void setup(){            serial.begin(9600);     myservo.attach(9);         // attaches servo on pin 9 servo object        } void loop(){     int val;                    double data;          ...

ICCプロファイルが埋め込まれた画像の扱いはどうすれば?

今回はじめてphotoshopで画像を開くと 「iccプロファイルが埋め込まれています」 というアラートが出てきました。 プロがスキャンして用意してくれた画像で 最終的には印刷にまわすものです。 デザイン変更のため 若干小さくリサイズする必要があり、 今回、photoshopで開くこととなりました。 カラー管理に関しては何も分からず、 「画像を変換しない」ダイアログボックスを選び、リサイズした後保存しました。 所が、その画像を確認のために再度開くと 何のアラートも現れません。 これは、先方で埋め込んでくれた iccプロファイルが書き換えられてしまった ということなのでしょうか? 私としては、先方が用意してくれた 「iccプロファイル」を埋め込んだまま、 リサイズ&データ入校したいのですが、 どうすればいいのでしょうか? ご存知でしたらお教えください。 環境は以下の通りです----------- mac os 9.22 photoshop 5.5j ファイル>カラー設定>プロファイル設定 プロファイルを埋め込む(すべて チェック) 初期設定プロファイル(すべて なし) 一致しない時のプロファイルの処理(開くときに確認) colorsync 3.04j  書類の省略時プロファイル  一般rgbプロファイル  一般cmykプロファイル  一般grayプロファイル  一般labプロファイル となっていました。 ----------------------- はじめまして。 私もカラーマネジメントについてはまだまだ修業中の身です。(^_^;) 問題の画像はcmykでしょうか。 「iccプロファイルが埋め込まれています」 というアラートが出てきたという事は、元画像とrieさんの作業用スペースのカラー設定は異なるという事ですよね。 「画像を変換しない」で開き、「プロファイルを埋め込む」で保存した場合、新たにできた画像はrieさんの作業用スペースのプロファイルが埋め込まれているようです。cmykの数値は維持され ていると思います。 元画像のプロファイルを埋め込みしたいならば、5.5でやるなら、元画像に埋め込まれているプロファイルを入手し、cmyk設定で作業用スペースとして選んでおく必要があると思います。 この画像はレイアウトソフトに貼り込んで使用するのでしょう...

β版スクリプティングプラグイン

製品別フォーラムの方にも書きましたが、何も反応がないのでこちらにも書かせていただきます。 β版スクリプティングプラグインが附属説明pdfの通りにしても、機能いたしません。 どうすれば、スクリプトパレットにスクリプトが表示されるのでしょうか? あと、β版ということですが、何時になったら正規のものが出るのでしょうか?? ueさん、こんちは。 その節は、ありがとうございました。 さて、スクリプトパレットですが、winでも表示されません。 そこで、自分で作ったファイルを指定フォルダーへ入れたところ、一部のファイルのみ表示されました。 で、表示されたファイルは、実行形式のファイルだけでした。(vbで作成した拡張子.exe) 実行してみると、通常どおり動くようです。 ご参考まで。 Photoshop Album SE (Japan) でのその他のディスカッション adobe

how to persist a tilelist style, after click?

i'm trying have tilelist when item clicked, set unique skin (selectedup) , set label word "clicked". i need of "clicked" items maintain (selectedup) skin, if else clicked.   this code working, reason selecting every tenth item in list well.   import fl.controls.tilelist; import fl.controls.listclasses.tilelistdata; import fl.controls.listclasses.imagecell;   tilelist.addeventlistener(event.change, cellclick);   function cellclick(event:event):void {     var item = event.target.selecteditem;     var testitem = tilelist.getitemat(event.target.selectedindex);     testitem.label += " - clicked";     var testcell:imagecell = tilelist.itemtocellrenderer(testitem) imagecell;     testcell.setstyle("upskin", selectedup);     testcell.setstyle("downskin", selectedup);     testcell.setstyle("overskin", selectedup);     testcell.setstyle("selectedupskin", selec...

Thread: Wireless Indicator

i have dell inspiron 1545 , model has no lights or sort of indicator on outside/hardware tell me if wireless on or not. blindly press wireless shortcut key on keyboard, left click on network manager , wait minutes see if see wlans validate wireless turn on or not. worst when in region has no wlan ssid broadcast. checkbox "enable wireless" in right click menu of network manager stays checked irrespective of wireless being on or not. same goes ifconfig or iwconfig. looking way can distinguish , between wireless on/off states. it depends suppose on how hardware handles turning off wireless. on lappy there physical switch (i think) cuts power wireless card, , hardware disappears hardware detection methods (lshw, iwconfig, lspci, etc). first off sure button anything? if connected wifi network, , hit button, connectivity go away? imagine situation there windows program dell might install (which of co...

Thread: F-Spot verses HP essential

hi, require wall wall photos cannot configure f-spot obtain result ... ends uneven white boarder no matter combination of settings try?? there no standard paper size setting standard 150mmx100mm? (seems american sizes) has set under "custom settings" margins @ 0 photos print uneven boarder ...never had problem hp photosmart essential unfortunately there no debian package. have tried downloading windows version wine no luck. have ubuntu 9.10 updated kenneth look around other tools. of following, i'd try digikam first: shotwell fotoxx jbrout digikam solang Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] F-Spot verses HP essential Ubuntu

Thread: installation of software

Image
i pissed off downloaded linux multimedia studio making music , appears in file folders etc willnot open, why? why friggin complex , difficult in computerland. please me open can use it. posted foleycore i pissed off downloaded linux multimedia studio making music , appears in file folders etc willnot open, why? why friggin complex , difficult in computerland. please me open can use it. ubuntu studio os , requires installing such. partition, format ect... i'm not sure how based on how asked question. little more concise? z Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] installation of software Ubuntu

Output Channel Mapping in AA 3 surround encoder not working

i working trial version of adobe audition 3.0.  own aa 1.5, , when open surround encoder in aa 1.5, have no trouble monitoring 5.1 mix through soundblaster live 24-bit external device.  if monitor surround mix in aa 3.0, play through front l & r speakers.  i've tried adjusting output channel mapping, not let me assign more 2 channels @ time.  i'd love purchase upgrade, need resolve first.  can me?  other info can provide?   j.  d. mack aa 1.5 , aa 3 use different sound card drivers. 1.5 uses wdm , 3 uses asio. suspect creative asio drivers don't support multi channel audio wdm ones do. creative known here dodgy asio support. More discussions in Audition CS5.5, CS6 & CC adobe

RF24mesh - occasional 'Send Fail, Test OK' message in serial monitor

hi all! i've been trying out rf24mesh library , associated demo code on 2 mega 2560 fitted nrf24l01+ transceiver devices. quite nice how communications works! i see occasional 'send fail, test ok'. [this post technical, there post involving rfmesh24 library terminology, @ ....click here.... ]. i popped electrolytic , ceramic capacitors (for decoupling) between mega 2560 5v socket , gnd ground socket (just in case). didn't fit capacitors nrf24 devices though. maybe other people here have used same demo code.... slave receiver code attached below. just quick question occasional "send fail, test ok" messages. this..... slave serial monitor window shows slave sending out millis() time values well...but don't make out. send ok: 30094 send ok: 31094 send ok: 32094 send ok: 33094 send fail, test ok send ok: 35094 send ok: 36094 send ok: 37094 do occasional messages well? my master , slave receivers relatively close in distance ...... 30 cm apart, , run ...