Managing optdepends/orphans, DIY-style

Hi all,
Imo there is no good way to manage installed optdepends yet in pacman.
Currently you can:
- install optdeps explicitly: they will become undetected 'orphans' if you remove the package that you installed it for.
(because they are not installed as 'dependencies', if you delete the 'parent' package the installed optdepends are not cleaned up)
- install them --asdeps: they appear to be orphans because you probably don't have a package that 'really' depends on it.  Over time you might want to clean up your orphans and accidentially delete the wrong package if you don't exactly remember if/why you needed the package
This issue has been discussed a while ago ( http://www.nabble.com/%22explicit-depen … 40889.html ) but afaik there is no real solution yet in pacman/libalpm
Luckily, this is very easy to solve yourself, DIY style!
(Maybe someday, if I brush up my C skills I would send a patch for pacman, but for now this bash trick does the job just fine for me)
How? install --asdeps but keep track of the package and it's install reason/"parent" package separately,
use some convenient scripts that know about this to avoid mistakes.
~/.optdeps
#!/bin/bash
# specify the installed optdepends here, optdepend_${packagename/-/_}="<parent package>: install reason"
# example: optdepend_gtk2_perl='rxvt-unicode: to use the urxvt-tabbed'
2 bash functions:
#!/bin/bash
install_optdepend () {
if [ -z "$2" ]
then
echo "\$1: package name to install as optdep, \$2: 'parent' package" >&2
return 2
fi
optdep=$1
parent=$2
if ! data=`pacman -Qi $parent`
then
echo "Seems like you don't have parent package $parent installed" >&2
return 3
elif ! data=`grep " $optdep: " <<< "$data"`
then
echo "Seems like $parent does not have $optdep as an optdep" >&2
return 4
fi
str=`sed "s/.* $optdep: //" <<< "$data"`
[ "$optdep" = gtk-perl ] && optdep=gtk2-perl #fix for bad field in rxvt-unicode
entry=optdepend_${optdep/-/_}"='$parent: $str'"
echo "Installing optdep $optdep for parent $parent ..."
if ! sudo pacman -S $optdep --asdeps
then
echo "Could not install $optdep. aborting."
return 5
fi
# example: optdepend_gtk2_perl="rxvt-unicode: used for tabs"
echo "Adding entry '$entry' to ~/.optdeps ..."
if echo "$entry" >> ~/.optdeps
then
echo "All done!"
return 0
else
echo "Something went wrong" >&2
return 6
fi
clean_orphans () {
source ~/.optdeps
for i in `pacman -Qdt | awk '{print $1}'`
do
var=optdepend_${i/-/_}
[ -n "${!var}" ] && echo "***** WARNING: 'orphan $i' is probably on OPTDEPEND: ${!var} ******"
[ -z "${!var}" ] && echo "-- orphan $1. Not registered as on optdepend --"
pacman -Qi $i
[ -n "${!var}" ] && echo "Remove this likely installed optdepend?"
[ -z "${!var}" ] && echo "Remove this likely real orphan?"
REPLY=
read && [ "$REPLY" == y ] && sudo pacman -R $i
done
So, all optdepends that you install this way are stored in ~/.optdeps along with their 'parent' and install reason taken from the optdepend entry from the parent.  You can do this manually or use the install_optdepend function to do it automatically.
If you then go through your orhans with pacman -Qdt you can see which ones are installed optdeps by using the ~/.optdeps file.
clean_orphans is a function to go through each orphan, tells you what it knows, and asks you if you want to remove it.
Currently automatic cleanup of ~/.optdeps is not implemented (eg when you remove an optdep), but I don't mind doing that manually for now (or just keeping the entry for reference sake).  Also, a function could be implemented so that when you remove a package, it checks for optdeps, checks the ~/.optdeps and asks you if you want to remove it or not.  But that's not really needed Imo, the interactive orphan cleanup function does the job for me
What do you guys think?
Last edited by Dieter@be (2008-11-21 08:32:04)

I didn't really have a problem with this so far, but I really don't understand the way pacman handles optdepends either, so I'll probably give this a try. Thanks for this script!!

Similar Messages

  • FrameMaker 10: Manage used and unused styles

    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/framemaker/pdf/FRAM EMAKER11_UPGRADE_GUIDE.PDF says FM 10 introduced the ability to "Manage used and unused styles: paragraph, character, table" but I am unable to find that information in the (exceedingly unhelpful) help system. Can anyone point me to a discussion of this featue? We are moving to new templates and would like to make the transition as painless as possible.

    Hi, Beverly:
    Extendscript was introduced in FrameMaker 10. Perhaps someone's already created a script for this. I'm not sure if Extendscripts can be assigned to a keyboard shortcut. Perhaps soneone on the forum can point to an existing script, and also confirm whether a script can be assigned to a KBSC.
    [EDIT]
    I forgot to mention: Search Google for terms like "framemaker 10 extendscript" without quotes for info about Extendscript. Even if you don't want to add scripting to your resume, you might get some useful ideas from this link:
    http://www.rickquatro.com/resources/BeginningFrameMakerScripting.pdf
    [/EDIT]
    And, in some future lifetime, your feature request will be incorporated in FM, if you post a formal request here:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices
    Beverly Robinson wrote:
    I'm a keyboard person--I apply styles using the F8 and F9 key--so I don't have the paragraph catalog display at all. I would have put the "Delete all unused formats" option with the delete functionality available through the Commands button on the Paragraph Designer. But that's just me.
    Message was edited by: peter at knowhowpro

  • Object Style Manager: How to import styles into CP8 from CP7

    Here's my problem:
    I open a Captivate file created in CP7
    I save it as a different file name in CP8
    I create a new Object Style - say for a Text Caption
    I export the Style - I've tried just the new style, all styles, all styles for all objects.
    I create a new CP8 file, save it.
    I try and import the styles exported in step 4 and get the error: "Cannot import Styles.The style file you are trying to import was exported from an earlier version of Captivate"
    I don't get it. I opened the CP7 file and resaved it with a new name in CP8 in a different location.
    What's the problem?

    OK finally I have an answer:
    Open CP7 File with Default & custom styles
    Copy all slides
    Create new CP8 file & save
    Paste all slides to this new file & save
    Object Style Manager : Export all styles of all objects
    Create / Open a CP8 file
    Object Style Manager : Import styles created in step 5

  • Fixing a G4 iBook Logic, DIY style!

    I wanted to share my experience with fellow iBook owners that may be having, or had a similar situation to mine.
    Problem: Machine will not boot or randomly shuts down.
    Symptoms: At startup, it will chime & continue until it's frozen on a gray or black screen. Subsequent restarts yeild similar results or there's no chime at all. It won't boot to an external drive, CD/DVD or go into target disk mode. If the iBook runs at all, the random shutdown issues manifests itself similar to the G3 iBook video issue - the screen will freeze, appear corrupted, or goes black - all without warning or reason.
    Cause: It seems there is a specific chip on the logic board (http://www.coreyarnold.org/assets/images/ibook/overview.jpg) that becomes disconnected or faulty due to a bad connection. It's connection to the board is several soldered contacts. The exact purpose of the component is unknown (to me) but seems vital to the operation of the machine.
    Solution: Shimming the chip so the pressure from the case holds it tighter to the logic board (http://www.coreyarnold.org/ibook/) or resolder the connections to the chip. To solder, pre heat a soldering iron (http://www.cooperhandtools.com/brands/CFFiles/modeldetail.cfm?upc=037103169228) to full temp & run the tip over ONLY the metal connections, each one recieving 5 seconds or so contact time (I held the iron at about a 50-60 degree angle & pulled the tip across the metal contacts, twice on each side which had them. I Only had to pull the bottom case off, static shield, & unplugged the black cable (http://www.ifixit.com/Guide/Browse/iBook) - for the DC charing board - to gain appropriate access). Don't hold the hot tip to the logic borad or the black chip covering as it may damage the board beyond repair.
    Caution: I would only attempt this if you have handled soldering equipment in the past & have knowledge on how to disassemble the machine. You want to work in a static free area, so make sure you ground out any static charges BEFORE handling the insides of the notebook.
    I tried the inital fix of shimming the chip, but didn't last past a few weeks. The soldering method, so far, was tried & has worked for others (http://coreyarnold.org/ibook/?p=20#comments). So far, my machine has ran for the past 2 days without any issue.
    Thanks to Corey Arnold & iFixit for this project!
    Without Corey's posting, I would have thrown the iBook out or tore it apart to sell for parts. Thank you!
    Message was edited by: kmac1036

    psignosis:
    Take a look at these substitutions suggested by PowerBookTech:
    1.33 GHz for 1.2 GHz
    800 MHz for 1.2 GHz
    You may want to contact PowerBookTech and check out the feasibility. You can also check out prices elsewhere, once you have determined it can be done.
    cornelius

  • Correspondence Management - Customizing bullet/numbering style

    Hi everybody,
    I'd like to customize the CM Editors View a little bit - the bullet/numbering-styling - to be exact. When I browse to "ip:port/lc/crx/de/index.jsp#/content/cm/" I found the file called "tbxeditor-config.xml". There I'm able to add/remove fonts, etc. But I couldn't find any hints to change bullet/numbering-styling e.g. changing from 1,2,3 to $1, $2, $3. Any ideas?
    Thanks in advance

    Have you had a look at the custom numbering in List Module If that suits your requirement ?
    You will have to create multiple text modules of each bulleted item and create a list with custom bullet numbering that contains all the text modules.
    --Santosh

  • Word template with web service - style and font not considered

    Hi experts.
    I'm using a word template with a web services.
    So i've added my xml tags in the template and i've tried to change the font and style but when i launch the document, what i have defined is never considered. For example if i set in a table that a line should be in Italic, when i edit the document no text is in italic ?
    Did you ever faced this kind of issue ?
    How did you manage to set you style to the xml tags ?
    Thanks in advance for your help.

    I also had similar problems but I didn't work on word template for quite a long time. But at that time I solved the problem with formating the word and not the xml tag directly.
    For example: I wrote the word lastname and formated it to for exampe, bold and italic like lastname. After thet I selected the word and applied the xml tag to that word and this worked just fine.
    Regards.

  • Updating style.css or style itself doesn't update topics

    I am having an issue with the styles within RH. There is a defined style.css that was created, however, when the individual fonts or formats are changed within it, it doesn't change the topics. In addition, when I tried to just update a specific style on the style and formatting pod, I make the changes, it stores them, but when I select it to update selected paragraph of text, it changes the font to something totally different and the formatting as well. Am I missing some other area where possibly a default is taking over and I am not seeing it?    It is becoming more and more frustrating, because I have had to go through topics over and over again, because it keeps re-formatting them on me.  Any help would be greatly appreciated.

    Yes, I believe the structure is correct, when I view the project manager, it lists the style.css as a top level item along with main folders, and the topics may be in some cases imbedded two or three levels deeper than that.  Here is the text from the style.css as well as a picture showing the prj. mgr.
    Thanks so much
    Priscilla
    text below the **** line is the css code:
    /*Created with Adobe RoboHelp 9.*/
    /* Document Defaults */
    a:active {
    color: #0000CC;
    a:hover {
    color: #CC0033;
    a:link {
    color: #3366CC;
    a:visited {
    color: #9999CC;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    .GroupTitlesIX {
    color: #003366;
    font-size: 22px;
    font-style: normal;
    font-weight: bold;
    margin-left: 0em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .Preformatted {
    color: #000000;
    font-family: monospace;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    margin-left: 0em;
    margin-top: 0em;
    margin-bottom: 0em;
    text-align: left;
    text-indent: 0em;
    white-space: pre;
    text-decoration: none;
    .SmartList1 {
    color: #000000;
    font-style: normal;
    font-weight: normal;
    margin-left: 0em;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    font-size: 11pt;
    font-family: "Times New Roman", serif;
    text-decoration: none;
    .SmartList1After {
    margin-left: 0em;
    .SmartList2 {
    color: #000000;
    font-style: normal;
    font-weight: normal;
    margin-left: 2.5em;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    font-size: 11pt;
    font-family: "Times New Roman", serif;
    line-height: 150%;
    text-decoration: none;
    .SmartList2After {
    margin-left: 0em;
    .SmartList3 {
    color: #000000;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    margin-left: 5em;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .SmartList3After {
    margin-left: 0em;
    .SmartList4 {
    color: #000000;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    margin-left: 7.5em;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .SmartList4After {
    margin-left: 0em;
    .SmartList5 {
    color: #000000;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    margin-left: 10em;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .SmartList5After {
    margin-left: 0em;
    .TableTitle {
    color: #000000;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    margin-left: 0em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: center;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .Title {
    color: #003366;
    font-size: 24px;
    font-style: normal;
    font-weight: bold;
    margin-left: 0em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: center;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .TOC1 {
    color: #000000;
    font-size: 17px;
    font-style: normal;
    font-weight: bold;
    margin-left: 0em;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .TOC2 {
    color: #000000;
    font-size: 15px;
    font-style: normal;
    font-weight: normal;
    margin-left: 2.5em;
    margin-top: 0em;
    margin-bottom: 0em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .TOC3 {
    color: #000000;
    font-size: 13px;
    font-style: normal;
    font-weight: normal;
    margin-left: 5em;
    margin-top: 0em;
    margin-bottom: 0em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .TOC4 {
    color: #000000;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    margin-left: 7.5em;
    margin-top: 0em;
    margin-bottom: 0em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    .TOC5 {
    color: #000000;
    font-size: 10px;
    font-style: normal;
    font-weight: normal;
    margin-left: 10em;
    margin-top: 0em;
    margin-bottom: 0em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    text-decoration: none;
    rh-list.Style1 {
    x-lvl-1-format: "<x>&c";
    x-lvl-2-type: lower-alpha;
    x-lvl-2-format: "<x>&c";
    x-lvl-2-margin: 20px;
    x-lvl-3-type: lower-roman;
    x-lvl-3-format: "<x>&c";
    x-lvl-3-margin: 40px;
    x-lvl-4-type: decimal;
    x-lvl-4-format: "&o<x>&c";
    x-lvl-4-margin: 60px;
    x-lvl-5-format: "&o<x>&c";
    x-lvl-5-margin: 80px;
    x-lvl-6-type: lower-roman;
    x-lvl-6-format: "&o<x>&c";
    x-lvl-6-margin: 100px;
    x-lvl-8-type: lower-alpha;
    x-lvl-8-margin: 140px;
    x-lvl-7-format: "<x>.";
    x-lvl-7-margin: 120px;
    x-level-count: 9;
    x-lvl-9-type: lower-roman;
    x-lvl-9-margin: 160px;
    h1 {
    font-weight: bold;
    margin-bottom: 14pt;
    margin-left: 0pt;
    page-break-after: avoid;
    font-size: 14pt;
    background-color: #7f7fff;
    margin-top: 5pt;
    margin-right: 256pt;
    font-family: "Arial Black", sans-serif;
    x-next-class: ;
    x-next-type: p;
    h2 {
    font-weight: bold;
    margin-bottom: 14pt;
    margin-left: 0pt;
    page-break-after: avoid;
    font-size: 12pt;
    font-style: italic;
    background-color: #a3a5aa;
    margin-top: 5pt;
    margin-right: 256pt;
    font-family: "Arial Black", sans-serif;
    p {
    font-size: 11pt;
    margin-top: 0.5pt;
    margin-left: 0px;
    font-family: Arial, sans-serif;
    text-align: justify;
    margin-bottom: 5pt;
    margin-right: 256pt;
    table.TableTitle {
    x-1st-row: 1;
    x-1st-row-name: t1st;
    font-size: 11pt;
    font-weight: normal;
    table.TableTitle tr.t1st td {
    font-family: Verdana;
    font-size: 11pt;
    font-weight: bold;
    background-color: #c0c0c0;
    table.TableContent {
    font-size: 10pt;
    font-weight: bold;
    background-color: #c4c4ff;
    table.SimpleGridBlue {
    padding: 0px;
    x-border-spacing: 0px;
    x-row-pat-1: 1;
    x-row-pat-1-name: t1Row;
    x-row-pat-count: 2;
    x-row-pat-2: 1;
    x-row-pat-2-name: t2Row;
    border-left-style: Solid;
    border-left-width: 1px;
    border-left-color: #4F81BD;
    border-top-style: Solid;
    border-top-width: 1px;
    border-top-color: #4F81BD;
    table.SimpleGridBlue td {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    table.SimpleGridBlue tr.t1Row td {
    font-family: "Times New Roman";
    font-size: 12pt;
    border-right-style: Solid;
    border-right-width: 1px;
    border-right-color: #4F81BD;
    border-bottom-style: Solid;
    border-bottom-width: 1px;
    border-bottom-color: #4F81BD;
    table.SimpleGridBlue tr.t2Row td {
    border-right-style: Solid;
    border-right-width: 1px;
    border-right-color: #4F81BD;
    border-bottom-style: Solid;
    border-bottom-width: 1px;
    border-bottom-color: #4F81BD;
    p.Style2 {
    x-next-class: ;
    x-next-type: p;
    H4 {
    font-weight: bold;
    margin-bottom: 14pt;
    margin-left: 0pt;
    page-break-after: avoid;
    font-size: 11pt;
    margin-top: 0.5pt;
    x-next-class: ;
    x-next-type: P;
    background-color: #c0c0c0;
    margin-right: 256pt;
    table.Style3 {
    font-size: 11pt;
    font-weight: bold;
    .Style4 {
    color: #000000;
    margin-left: 0em;
    margin-top: 0em;
    margin-bottom: 0em;
    text-align: left;
    text-indent: 0em;
    white-space: normal;
    font-size: 11pt;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    table.SimpleGridBlack {
    padding: 0px;
    border-top: Solid 1px #000000;
    border-left: Solid 1px #000000;
    x-border-spacing: 0px;
    x-row-pat-1: 1;
    x-row-pat-1-name: t1Row;
    x-row-pat-count: 2;
    x-row-pat-2: 1;
    x-row-pat-2-name: t2Row;
    table.SimpleGridBlack td {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    table.SimpleGridBlack tr.t1Row td {
    border-right-style: Solid;
    border-right-width: 1px;
    border-right-color: #000000;
    border-bottom-style: Solid;
    border-bottom-width: 1px;
    border-bottom-color: #000000;
    font-family: "Times New Roman";
    font-size: 12pt;
    table.SimpleGridBlack tr.t2Row td {
    border-right-style: Solid;
    border-right-width: 1px;
    border-right-color: #000000;
    border-bottom-style: Solid;
    border-bottom-width: 1px;
    border-bottom-color: #000000;
    rh-list.Style5 {
    x-lvl-1-format: "<x>&c";
    x-lvl-2-type: lower-alpha;
    x-lvl-2-format: "<x>&c";
    x-lvl-2-margin: 20px;
    x-lvl-3-type: lower-roman;
    x-lvl-3-format: "<x>&c";
    x-lvl-3-margin: 40px;
    x-lvl-4-type: decimal;
    x-lvl-4-format: "&o<x>&c";
    x-lvl-4-margin: 60px;
    x-lvl-5-format: "&o<x>&c";
    x-lvl-5-margin: 80px;
    x-lvl-6-type: lower-roman;
    x-lvl-6-format: "&o<x>&c";
    x-lvl-6-margin: 100px;
    x-lvl-8-type: lower-alpha;
    x-lvl-8-margin: 140px;
    x-lvl-7-format: "<x>.";
    x-lvl-7-margin: 120px;
    x-level-count: 9;
    x-lvl-9-type: lower-roman;
    x-lvl-9-margin: 160px;

  • Scripting Styles keyboard shortcuts

    Hi.
    I'm creating an Applescript for Indd 5.5 that will create a number of documents and add them to a book file. I'm trying to flesh out all the book's documents with as many text and object styles as I can, and ensure each document has only the swatches etc. needed for the book.
    I've managed to create text styles and groups (folders) quite easily, but I can't find a way of assigning a keyboard shortcut to a style. Typically, I will be using shortcuts on the numeric keypad, and using the command key (Mac) – Command+Num 8, for example. I've searched the web, but can't find anything that shows how to do it – only how to assign global shortcut sets for InDesign.
    Can anyone point me in the right direction?
    Thanks,
    K@

    Well, I was proposing a slightly different strategy.
    Export one style from the INDD to IDMS, and then delete
    all the extra crap that is not the style definition. That
    leaves you with about 20 lines of XML.
    Then, write your AppleScript to create a 20-line XML file
    containing those literal 20 lines, while adjusting the name
    and shortcut of the style.
    Then your Applescript can place the IDMS snippet file after it
    writes it, and then delete the temporary file. You can then
    modify the attributes of that imported paragraph style
    in our script.
    That's a little bit clunky but it shouldn't keep you from putting the
    shortcuts in your applescript code. You are just dynamically
    generating IDMS/IDML/XML from your applescript.
    You mention maybe you would prefer not to format the style within
    the script? Well, then I guess you have even more options
    available!

  • Error encountered: An unknown error occurred while access the upgrade file.

    Hi all,
    I was upgrading my call manager subscriber server from
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    7.1.3.10000-11 build to 8.0.2.41006-1 build, got the following error and the upgrade failed,
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    Status: Error encountered: An unknown error occurred while access the upgrade file.
    While the same upgrade was successful on the pub.
    Need help.

    Brad,
    I've seen that a number of times with 7x upgrade files.  I would like to say it's consistent but it hasn't always been.  I've done a number of upgrades and sometimes I would run across that issue and other times, I would not (there would be multiple files in the SFTP path).  After a few times, I just started always putting my upgrade file in a dedicated folder.
    Good catch...and you're not alone in experiencing it.
    Hailey

  • Gradient Color Picker

    Dear Community,
    i have a Problem with Illustrator CS6. I've attached an image below.
    I have an object with gradient fill and i've selected the first color stop.
    In previous Versions of AI i could the pick any color with color Picker while holding the shift-key.
    In CS6 this changes the color only in the Gradient Panel but not the Object itself:
    I have to admit that i'm glad not to be a creative cloud user so i'm able to switch between Ai cs 5.1 and 6
    because both have some features missing in the other version.
    My best,
    Herr K. aus Berlin
    System info:
    OS: Windows
    Version: 6.1
    System Architecture: x86
    Built-In Memory: 24501 MB
    Components:
    ACE 2012/07/26-17:49:18 66.512941 66.512941
    Adobe APE 2012/01/25-10:04:55 66.1025012 66.1025012
    Adobe Linguisitc Library 6.0.0
    Adobe Owl 2012/08/14-22:22:39 5.0.3 79.514916
    PDFL 2011/12/12-16:12:37 66.419471 66.419471
    Adobe Product Improvement Program 6.0.0.1654
    AdobePSL 66.840950_13.810430 66.840950_13.810430
    Adobe Illustrator 1.0
    Adobe XMP Core 2012/02/06-14:56:27 66.145661 66.145661
    Adobe XMP Files 2012/02/06-14:56:27 66.145661 66.145661
    Adobe XMP Script 2012/02/06-14:56:27 66.145661 66.145661
    Adobe CAPS 6,0,29,0
    AFL 1.0
    AFlame 2012/01/20-14:36:51 66.493279 66.493279
    AFlamingo 2012/01/20-14:36:51 66.485582 66.485582
    AGM 2012/07/26-17:49:18 66.512941 66.512941
    AdobeHelp Dynamic Link Library 1,7,0,56
    AIPort 1.0 23.68434
    Adobe EPIC (64 Bit) 3.0.1.10101 (BuildVersion: 53.364260; BuildDate: Wed Nov 05 2008 02:03:14) 53.364260
    AMTLib (64 Bit) 6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00) 1.000000
    ARE 2012/07/26-17:49:18 66.512941 66.512941
    AXE8SharedExpat 2011/12/16-15:10:49 66.26830 66.26830
    AXEDOMCore 2011/12/16-15:10:49 66.26830 66.26830
    AXSLE 2011/12/16-15:10:49 66.26830 66.26830
    BIB 2012/07/26-17:49:18 66.512941 66.512941
    BIBUtils 2012/07/26-17:49:18 66.512941 66.512941
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    CoolType 2012/07/26-17:49:18 66.512941 66.512941
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    ExtendScript 2011/12/14-15:08:46 66.490082 66.490082
    Adobe XMP FileInfo 2012/01/17-15:11:19 66.145433 66.145433
    FilterPort 1.1 66.512941
    Microsoft® Windows® Operating System 6.1.7601.17825
    International Components for Unicode 2011/11/15-16:30:22  Build gtlib_3.0.16615
    International Components for Unicode 2011/11/15-16:30:22  Build gtlib_3.0.16615
    International Components for Unicode 2011/11/15-16:30:22  Build gtlib_3.0.16615
    International Components for Unicode 2011/11/15-16:30:22  Build gtlib_3.0.16615
    JP2KLib 2012/11/05-11:16:34 66.246493 66.246493
    LogSession 2.1.2.1640
    MPS 2012/10/12-13:31:12 66.521571 66.521571
    Microsoft (R) Visual C++ 6.00.8168.0
    Microsoft® Visual Studio .NET 7.10.3077.0
    Microsoft® Visual Studio® 2005 8.00.50727.42
    Microsoft® Visual Studio .NET 7.10.3052.4
    Microsoft® Visual Studio® 2005 8.00.50727.42
    Microsoft® Visual C++ 2.10.000
    Microsoft® Visual C++ 4.00.5270
    PDFPort 2012/07/27-12:07:51 66.512941 66.512941
    Adobe PDFSettings 1.04
    Adobe Photoshop CS6 CS6
    Adobe(R) CSXS PlugPlug Standard Dll (64 bit) 3.0.0.383
    Adobe India Sangam Core Code 2012/02/07-10:51:05 66.240342 66.240342
    Adobe India SangamML Import from Sangam 2012/02/07-10:51:05 66.240342 66.240342
    ScCore 2011/12/14-15:08:46 66.490082 66.490082
    ScriptUIFlex 2011/12/14-15:08:46 66.490082 66.490082
    Microsoft® Windows® Operating System 6.00.2600.0000
    SVGExport 6, 0, 0, 0 1.0
    SVGRE 6, 0, 0, 0 1.0
    Intel(R) Threading Building Blocks for Windows 3, 0, 2010, 0406
    Adobe Updater Notifications Library 6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME) 6.0.0.24
    WRServices Friday January 27 2012 13:22:12 Build 0.17112 0.17112
    ATE
    Plug-ins:
    Live Menu Item
    Adobe AI Application Plugin
    Control Groups
    Color Conversion
    Composite Fonts
    New Cache Plugin
    AppAnnotators
    AdobeLicenseManager
    ZStringTable
    Window Menu
    Main Filters
    Main File Formats
    File Format Place EPS
    AI File Format
    Debug Menu
    SLO Text Tool
    Mesh Object
    Document Window Plugin
    Sweet Pea 2 Adapter Plugin
    AdobeActionManager
    AILocalized Resources Plugin
    Adobe Illustrator User Interface
    FrameworkS
    Art Converters v2
    FlattenTransparency
    FO Conversion Suite
    Pathfinder Suite
    PDF Suite
    BRS Pencil Tool
    Rasterize 8
    AdobeSlicingPlugin
    AdobeActionPalette
    BeautifulStrokes Suite
    AdobeBrushMgr
    Adobe Color Harmony Plugin
    Control Panel Plugin
    Adobe Deform Plugin
    AdobeLayerPalette
    Adobe Planar Edit Plugin
    AdobePaintStyle
    PathConstruction Suite
    AdobeSwatch_
    AdobeToolSelector
    Adobe Variables Palette
    AdobeDiffusionRaster
    SvgFileFormat
    Snapomatic
    Adobe Geometry Suite
    ShapeConstruction Suite
    ExpandS
    SWFExport
    Photoshop Plugin Adapter Unsharp Mask...
    Photoshop Plugin Adapter Crystallize...
    Photoshop Plugin Adapter Pointillize...
    Photoshop Plugin Adapter Pinch...
    Photoshop Plugin Adapter Extrude...
    Photoshop Plugin Adapter Fibers...
    Photoshop Plugin Adapter Lens Flare...
    Photoshop Plugin Adapter Ripple...
    Photoshop Plugin Adapter Shear...
    Photoshop Plugin Adapter Twirl...
    Photoshop Plugin Adapter Polar Coordinates...
    Photoshop Plugin Adapter Smart Blur...
    Photoshop Plugin Adapter Spherize...
    Photoshop Plugin Adapter Wind...
    Photoshop Plugin Adapter ZigZag...
    Photoshop Plugin Adapter Mezzotint...
    Photoshop Plugin Adapter Radial Blur...
    Photoshop Plugin Adapter Wave...
    Photoshop Plugin Adapter Crop and Straighten Photos Filter
    Photoshop Plugin Adapter De-Interlace...
    Photoshop Plugin Adapter Displace...
    Photoshop Plugin Adapter Tiles...
    Photoshop Plugin Adapter BMP
    Photoshop Plugin Adapter CompuServe GIF
    Photoshop Plugin Adapter PNG
    Photoshop Plugin Adapter Targa
    Photoshop Plugin Adapter IFF Format
    Photoshop Plugin Adapter Paths to Illustrator...
    Photoshop Plugin Adapter OpenEXR
    Photoshop Plugin Adapter Color Halftone...
    Photoshop Plugin Adapter Pixar
    Photoshop Plugin Adapter PCX
    Photoshop Plugin Adapter NTSC Colors
    Photoshop Plugin Adapter Legacy Gaussian Blur...
    Photoshop Plugin Adapter Filter Gallery...
    Photoshop Plugin Adapter Colored Pencil...
    Photoshop Plugin Adapter Cutout...
    Photoshop Plugin Adapter Dry Brush...
    Photoshop Plugin Adapter Film Grain...
    Photoshop Plugin Adapter Fresco...
    Photoshop Plugin Adapter Neon Glow...
    Photoshop Plugin Adapter Paint Daubs...
    Photoshop Plugin Adapter Palette Knife...
    Photoshop Plugin Adapter Plastic Wrap...
    Photoshop Plugin Adapter Poster Edges...
    Photoshop Plugin Adapter Rough Pastels...
    Photoshop Plugin Adapter Smudge Stick...
    Photoshop Plugin Adapter Sponge...
    Photoshop Plugin Adapter Underpainting...
    Photoshop Plugin Adapter Watercolor...
    Photoshop Plugin Adapter Accented Edges...
    Photoshop Plugin Adapter Angled Strokes...
    Photoshop Plugin Adapter Crosshatch...
    Photoshop Plugin Adapter Dark Strokes...
    Photoshop Plugin Adapter Ink Outlines...
    Photoshop Plugin Adapter Spatter...
    Photoshop Plugin Adapter Sprayed Strokes...
    Photoshop Plugin Adapter Sumi-e...
    Photoshop Plugin Adapter Diffuse Glow...
    Photoshop Plugin Adapter Glass...
    Photoshop Plugin Adapter Ocean Ripple...
    Photoshop Plugin Adapter Bas Relief...
    Photoshop Plugin Adapter Chalk && Charcoal...
    Photoshop Plugin Adapter Charcoal...
    Photoshop Plugin Adapter Chrome...
    Photoshop Plugin Adapter Cont^e Crayon...
    Photoshop Plugin Adapter Graphic Pen...
    Photoshop Plugin Adapter Halftone Pattern...
    Photoshop Plugin Adapter Note Paper...
    Photoshop Plugin Adapter Photocopy...
    Photoshop Plugin Adapter Plaster...
    Photoshop Plugin Adapter Reticulation...
    Photoshop Plugin Adapter Stamp...
    Photoshop Plugin Adapter Torn Edges...
    Photoshop Plugin Adapter Water Paper...
    Photoshop Plugin Adapter Glowing Edges...
    Photoshop Plugin Adapter Craquelure...
    Photoshop Plugin Adapter Grain...
    Photoshop Plugin Adapter Mosaic Tiles...
    Photoshop Plugin Adapter Patchwork...
    Photoshop Plugin Adapter Stained Glass...
    Photoshop Plugin Adapter Texturizer...
    VectorScribe
    Twirl v2
    Adobe Symbolism
    Simplify
    ShapeTool
    Segment Tools
    Adobe Scatter Brush Tool
    Reshape Tool
    Magic Wand
    Liquify
    Lasso
    Knife Tool
    Adobe Flare Plugin
    AdobeTextDropper
    Adobe Eraser Tool
    Adobe dBrush Brush Tool
    Adobe Crop Tool
    Adobe Calligraphic Brush Tool
    BoundingBox
    AdobeArtBrushTool
    Advanced Select
    Smart Punctuation
    TxtColumns
    Spell Check Dictionary
    TextFindFont
    TypeCase
    Adobe PSD File Import
    Adobe PSD File Export
    PSLFilterAdapter
    Photoshop Adapter
    ZigZagUI
    VectorizeUI
    VariablesPaletteUI
    TwirlToolUI
    ScribbleUI
    TransformUI
    TIFF File Format UI
    TextExportUI
    SWFExport UI
    SvgFileFormatUI
    Spell Check UI
    AdobeSlicingUI
    ShapeEffectUI
    ScribbleFillUI
    ScatterBrushToolUI
    SangamFormatsUI
    RoundUI
    RoughenUI
    RasterizeUI
    PuckerAndBloatUI
    PSLFilterAdapterUI
    Adobe PSD File Import UI
    Adobe PSD File Export UI
    AIPreferenceUI
    PlanetXUI
    PerspectiveUI
    PDF File Format UI
    PathfinderUI
    ParticleSystemUI
    OffsetPath UI Plugin
    ObjectMosaicUI
    LiveBlendsUI
    LiquifyToolUI
    JPEGFormatUI
    IllustratorUI
    GlobAdjToolUI
    FXG UI
    FuzzyEffectUI
    FlattenTransparencyUI
    FlareUI
    Find Replace UI
    ExpandUI
    DxfDwgUI
    DropShadowUI
    DistortUI
    DeformUI
    Adobe dBrush Brush Tool UI
    AdobeBrushMgrUI
    BRSPencilToolUI
    ArtOnPathBrushToolUI
    AI Toolbox UI Plugin
    AddArrowUI
    TIFF File Format
    TextExport
    AISangamMapper
    PNG File Format
    MPSParser
    MPSExport
    MPSCommon
    Mojikumi UI
    JPEG Plugin
    JPEG2K Plugin
    IdeaFileFormat
    GIF89a Plugin
    FXG
    Adobe DXFDWG Format
    Save4Web
    ZigZag v2
    Scribble v2
    TextWrap Dlg
    ShapeEffects v2
    Adobe Scribble Fill
    Saturate
    Round v2
    Roughen v2
    Punk v2
    AdobePathfinderPalette
    Overprint
    OffsetPath v2
    AI Object Mosaic Plug-in
    MaskHelper v2
    Inverse
    FuzzyEffect v2
    Distort v2
    Find
    Expand
    DropShadow
    TrimMark v2
    Colors
    Cleanup
    Adjust
    AddArrowHeads v3
    Add Anchor Points
    Adobe Custom Workspace
    Vectorize
    AdobeTransparencyEditor
    AdobeTransformObjects
    Transform v2
    Adobe Symbol Palette Plugin
    SVG Filter Effect v2
    Stroke Offset v2
    Services
    SeparationPreviewPlugin
    Scripts Menu
    ScriptingSupport
    Print Plugin
    Adobe Perspective Guides
    Adobe Nudge
    AdobeNavigator
    Adobe Path Blends
    AdobeLinkPalette
    Kinsoku Dlg
    KBSC Plugin
    GradientMeshPlugin
    Flattening Preview
    FileClipboardPreference
    DocInfo
    Character and Paragraph Styles
    AI Bottlenecks Plugin
    Asset Management
    AdobeArtboardPanel
    Adobe Art Style Plugin
    AppBarControls
    Alternate Glyph Palette
    AdobeAlignObjects
    3D v2
    ColliderScribe
    PDF File Format

    Re: Gradient Color Picker
    created by Mike Gondek
    This still works for me in CS6 mac, but more importantly try not to use Shift eyedropper. The topic has been discussed here many times. Shift eyedropper is not accurate and samples the screen values, not the actual color.
    Try using global swatches more often. Try this instead
    select a gradient stop
    Alt click on a swatch
    If the swatch is set to global, you can easily change/adjust/merge colors later with one command on a global document level.
    Thanks for the advice. I never had problems with shift-click picker i sample colors from other objects and even if they have Spot colors assigned it works, at least in CS5. I've tried in CS6 it's just not working. I've been told that there has been many discussions and i've read some. I'll stick to CS5. I'm very disapointed with adobe. This is a known bug it has been reworked on Mac Versions but not on PC.

  • Small, cheap NAS box that supports nfs/rsync/ssh ?

    Hi all,
    for my personal backup needs, I'm looking for a standalone NAS box ("networked hard disk/raid solution").  I need to have support for at least one of rsync/nfs/ssh.  (smb/ftp is not enough for me)
    It shouldn't be too big (eg not the size of a regular pc.) and it shouldn't cost more then 350 euro or so without disks. 
    If I can mount one or two sata 1TB disks I'm happy.
    Bonus points for solutions where I have total control over the "OS" on it, where the hardware platform exists of standardized easily replacable parts and if it's powerfull enough to do encryption. (I'm prepared to throw in extra cash for these features)
    I guess my options are:
    1) a product that supports what I want out of the box.  I couldn't find that (unless ridiculously expensive, eg 500 euro or more without disks)
    2) a product that *almost* does what I want, but where you can install a small Linux distro/freenas over the original firmware so you can do what you want.  Basically any appliance (be it a storage device, embedded platforms, network equipment, ...) that can host hard disks and where you can overwrite the OS is worth looking into.
    3) building something myself.  I've seen some really small motherboards based on Atom cpu's, or even embedded stuff can be enough (something like soekris, pc-engines, etc).  But it needs 2 sata ports then, I need to find a housing, a psu, etc. SFF-pc's such as shuttle's etc can also be good options
    Any tips, pointers, ideas ?
    Thanks
    UPDATE:
    Here is a list of some devices/urls/thoughts/questions I'm working on.  Work in progress! I'll update.
    Interesting url's
    http://www.hardware.info/nl-NL/productd … S_devices/ off-the-shelf-nas
    http://www.mini-itx.com/ all stuff mini-ITX
    http://www.epiacenter.com all stuff epia
    http://www.logicsupply.com/ mini-itx and SFF resource
    http://www.logicsupply.com/matrix/mainboard mainboard matrix
    http://www.mini-itx.com/reviews/atoms/ review of 5 Atom mini-itx boards with power comparison between the 2 intel chipsets
    http://resources.mini-box.com/online/po … lator.html power calculator (not prepared for Atom though)
    http://forums.vr-zone.com/showthread.php?t=275906 power comparison atom vs C2D
    Chipsets
    TDP's taken from http://download.intel.com/design/proces … 309219.pdf page 399, http://ark.intel.com/chipset.aspx?familyID=28994
    type - TDP - usage - url
    945 GM  /GME express - 7 - used with atoms? - http://www.intel.com/products/notebook/ … erview.htm
    945 GMS/GSE express - 6 - used on some atom boards who are not available yet (eg the MSI 9830/9832) - http://www.intel.com/design/chipsets/em … /index.htm
    945 GC - 22.2 - used on nearly all current atom boards - http://ark.intel.com/chipset.aspx?familyID=28994
    945 PM express - 6 - ?
    943 GML express - 7 - ?
    940 GML express - 7 - ?
    945 GT express  - 15 - ?
    ultra mobile 945GU express - 5 - ?
    G45 - 24 - "rich media" socket 775 boards - http://www.intel.com/Assets/PDF/designguide/319972.pdf
    Q45 - 17 - "business" socket 775 boards - http://www.intel.com/Assets/PDF/designguide/319972.pdf
    P45 - 22 - ?? - http://www.intel.com/Assets/PDF/designguide/319972.pdf
    TDP's of complete systems
    type - TDP idle - TDP loaded cpu - TDP loaded cpu+video - source url
    945 GSE setup without HDD - 15 - 17 - ? - http://www.mini-itx.com/reviews/atoms/
    945 GC  setup without HDD - 25 - 27 -  ? -  http://www.mini-itx.com/reviews/atoms/
    945 GC (and ich7) full setup - 27 - 31 - 38 - http://www.silentpcreview.com/article865-page5.html
    G45 Express + C2D E6400 65nm full setup - 49 - 97 - 98 - http://www.silentpcreview.com/article869-page5.html
    G45 Express + C2D E7200 45nm full setup - 35 - 64 - 65 - http://www.silentpcreview.com/article869-page5.html
    Off-the-shelf NAS
    * LaCie Ethernet Disk mini: needs to connect to internet to activate? or is this only for the remote feature? can you run custom OS on it?
    * ximeta ndas seems to need special/proprietary drivers/calls to be able to use it?
    * linksys nas200
    seems pretty customizable. some 3rd party firmwares
    http://www.linksysinfo.org/forums/showt … hp?t=60232
    http://www.nslu2-linux.org/wiki/NAS200/Hardware
    http://www.iomega-europe.com/section?SI … ecid=40380 (nslu2 firmwares)
    slow: 3MB/s over 100Mbps
    slower then dlink and qnap. see http://www.trustedreviews.com/networkin … -NAS200/p2
    * intel SS4000E or something?
    * qnap ts-509 or other qnap?
       http://www.qnap.com/pro_detail_feature.asp?p_id=86 -> 480euro
       http://www.qnap.com/pro_detail_feature.asp?p_id=104 -> 800 euro
    * iomega storcenter
    * netgear readynas: they have decent pricy ones who are big and consuming as much as an atom based server or something.
       they also have smaller ones.:
       2disk 310euro
       4disk -> 1000 euro
       http://www.netgear.nl/producten/product … od=RND2150 -> 300 euro
       6disk http://www.netgear.nl/producten/product … d=RNDP6610 -> runs on an intel C2D -> 1500euro
    * dlink
    * thermaltake muse looks pretty cool http://www.xpcgear.com/n0001lnu.html 390 euro http://tweakers.net/pricewatch/149904/t … -wit).html
    * synology has lots of stuff. eg http://www.synology.com/enu/products/CS407/index.php
       http://www.synology.com/enu/products/DS207+/index.php -> 285 euro
       http://www.synology.com/enu/products/DS408/index.php -> 510+ euro
       http://www.synology.com/enu/products/DS508/index.php -> 800+ euro
    * hp
       http://www.hp.com/united-states/campaig … martserver
    DIY-style (TODO: look up motherboards, enclosures, etc) miniITX, arm, via, intel atom,...
    * info/tutorials
    ** http://blogs.sun.com/paulie/entry/zfs_n … _the_intel
    ** http://www.mashie.org/casemods/udat2.html (note: the 5disks into 3 bays thing is discontinued)
    * complete boxes/barebones:
    ** Asus eeebox: perfect except that it can only contain 1 disk, of the format of 2.5"
    ** http://www.norcotek.com/DS-520.php 5x hotswap sata. Celeron, 2x Gbps,... looks great although very hard to get in EU apparently + you're bound to custom motherboard etc
    ** Shuttle XPC X27D dualcore atom, 1x 2.5 hdd. but 645GC http://loveno.be/product/16866
    * motherboard/cpu combos
    ** http://www.via.com.tw/en/products/mainb … ard_id=610     Via C7 1.5Ghz, 4-8x sata, padlock engine, via gigabit controller. CF and miniPCI slot, 1xddr2
    ** http://www.intel.com/Products/Desktop/M … erview.htm . Atom 230 1.6Ghz. 1x IDE, 2x sata. only 100Mbit/s, 1x PCI, 1xddr2
    ** MSI MS-9830. fanless. 2x Gigabit. 2x sata. available yet?
    ** MSI MS-9832. http://www.logicsupply.com/products/ms_9832 2x Gbps, 4x sata. 1x ata. expected 1/20/2008
    ** Intel D945GCLF2 -> like D945GCLF, but dualcore,Gigabit.
    ** Intel DG45FC http://www.intel.com/Products/Desktop/M … erview.htm socket775, 4x sata, 2x Gbps,... -> based on intel G45 "media center" chip (eg more media features), but same price as DQ45EK !
    ** Intel DQ45EK http://support.intel.com/Products/Deskt … erview.htm socket775, 4xsata,Gigabit.  -> based on intel Q45 "business" chip. perfect for the chenbro case, except no 5th sata (unless i loop the esata back in) or ide for the 5th 2.5" disk
    ** http://www.asus.com/products.aspx?l1=3& … odelmenu=1 Similar, but more media-features and 6x sata
    ** Jetway J7F4K1G5D-PB. Via C7. 2X Gbps, 2x sata 150, 1x ata 100
    ** Epia SN xx -> various epia boards with 4x sataII
    * cases
    ** http://usa.chenbro.com/corporatesite/pr … ?serno=100 (nice mini ITX server case with 4x hotswap bays and PSU) (just make sure you have good AHCI suppport) 170euro
    **  http://www.xpcgear.com/pcv350b.html Lian-Li PC-V350B , 2x 5,5", 2x 3.5", microATX
    Notes
    * I heard via Epia is rather expensive especially for it's quite low performance
    * Via nano might be a good platform (must google more for this, stable?)
    * There are no Atom boards with more then 2 sata ports.  (the msi's still are to be expected)
    * Taking an intel board with a slow celeron / amd with sempron can be an option, it will be fast , stable and not expensive.  I'm told it wouldn't pull too much power either. (although more then atom/epia)
    * "ready-to-go" SFF-pc's/barebones can be found in the <300 euro price range, making this a good target for a simple 1/2-disk NAS
    * AHCI problems with AMD/ATI RS400-200, RS480 HBA and Nvidia nForce 560. see http://en.wikipedia.org/wiki/Advanced_H … _Interface
    * An intel G45/Q45-based system would be sweet, they have
    - http://en.wikipedia.org/wiki/List_of_In … _Factor.29
    - http://en.wikipedia.org/wiki/List_of_In … C_45_nm.29
    with very low TDP, but they don't fit in socket 775
    Last edited by Dieter@be (2009-01-30 10:11:53)

    deadrabbit wrote:I recently bought an MSI Wind desktop, with pretty much the same thing in mind. I ended deciding against a NAS enclosure, since I wanted to be able to install a conventional Linux distro, and have complete control over it.  The Wind is cheap, and all the hardware is Linux compatible (http://www.newegg.com/Product/Product.a … 6856167032). I ended up installing the OS on a CompactFlash card, so the hard drive would have to run constantly. As a result, it's nice and quite, uses little power, and the OS on the CF card is automatically backed up to the hard drive. I wrote up a detailed description of the project here: http://rockhoppernotes.blogspot.com/200 … sktop.html.
    Thanks, looks quite good.
    Except one thing: the 945GC chipset has a TDP of 22.2W.. that's stupid imo, and defeats the whole purpose of a low-tdp cpu such as the Atom.  Right now I'm still doubting between waiting for an Atom board based on the 945GM(S)/945GSE chip (TDP 6Watt) (eeebox has that one, some MSI mini-ITX boards should be available in january) or going for a socket775 board with an intel core2 45nm cpu, which would consume not much more then Atom+ 945GC chipset (when idle, loaded is much more but I don't plan to load it ).
    Nvidia is also working on an Atom chipset but I don't think I'll wait for that.

  • Problem when passing an object from Illustrator to Photoshop inCS5 pack

    Hello, since I have a new system I have this problem in Illustrator. When I try to pass and Icon for example, from illustrator to photoshop my Illustrator crashes. Even whe I try to save my work somethimes Illustrator crashes. I didn't had this problem with my old computer usineg the same pack CS5 the passing of a file from illutrator to photoshop took about 3 seconds. Please help me, my work is becoming frustrating beacause of this.
    Here are the System details:
    Photoshop
    Adobe Photoshop Version: 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch]) x32
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 8
    Processor speed: 3392 MHz
    Built-in memory: 16332 MB
    Free memory: 8674 MB
    Memory available to Photoshop: 3255 MB
    Memory used by Photoshop: 78 %
    Image tile size: 1028K
    Image cache levels: 5
    OpenGL Drawing: Disabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: False.
    OpenGL Crash File: Not Detected.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTX 650/PCIe/SSE2
    Display: 2
    Display Bounds:=  top: 0, left: 1920, bottom: 1200, right: 3840
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1200, right: 1920
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTX 650
    Driver Version: 9.18.13.1106
    Driver Date: 20130118000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1920 x 1200 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTX 650
    Video Card Memory: 1024 MB
    Serial number: 92278816315259434402
    Application folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS5\
    Temporary file path: C:\Users\Mircea\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      D:\, 150.0G, 149.7G free
      C:\, 238.5G, 89.0G free
    Primary Plug-ins folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS5\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2010/10/04-23:36:11   64.441628   64.441628
       adbeape.dll   Adobe APE 2010/02/23-12:40:58   61.421986   61.421986
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2010/06/03-13:43:23   3.0.93   61.433187
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2010/12/13-23:37:10   64.341419   64.341419
       AdobePIP.dll   Adobe Product Improvement Program   5.0.0.2021  
       AdobeXMP.dll   Adobe XMP Core   5.0   61.134777
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
       AdobeXMPScript.dll   Adobe XMP Script   5.0   61.134777
       adobe_caps.dll   Adobe CAPS   3,0,116,0  
       adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00)   1.000000
       AFlame.dll   AFlame 2010/02/23-17:27:33   61.421976   61.421976
       AFlamingo.dll   AFlamingo 2010/02/23-17:27:33   61.421978   61.421978
       AGM.dll   AGM 2010/10/04-23:36:11   64.441628   64.441628
       ahclient.dll    AdobeHelp Dynamic Link Library   1,5,0,30  
       aif_core.dll   AIF   2.0   53.422628
       aif_ogl.dll   AIF   2.0   53.422628
       amtlib.dll   AMTLib   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       amtservices.dll   AMTServices   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       ARE.dll   ARE 2010/10/04-23:36:11   64.441628   64.441628
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat 2010/02/23-17:27:33   61.421978   61.421978
       AXEDOMCore.dll   AXEDOMCore 2010/02/23-17:27:33   61.421978   61.421978
       Bib.dll   BIB 2010/10/04-23:36:11   64.441628   64.441628
       BIBUtils.dll   BIBUtils 2010/10/04-23:36:11   64.441628   64.441628
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2010/10/04-23:36:11   64.441628   64.441628
       data_flow.dll   AIF   2.0   53.422628
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ExtendScript.dll   ExtendScript 2010/10/19-10:22:12   61.445301   61.445301
       FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_flow.dll   AIF   2.0   53.422628
       image_runtime.dll   AIF   2.0   53.422628
       JP2KLib.dll   JP2KLib 2010/12/13-23:37:10   64.181312   64.181312
       libeay32.dll   The OpenSSL Toolkit   0.9.8g  
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2, 0, 1, 11  
       MPS.dll   MPS 2010/12/13-23:37:10   64.450375   64.450375
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4940  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4940  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4940  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS5   CS5  
       Plugin.dll   Adobe Photoshop CS5   CS5  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   2.0.0.746  
       PSArt.dll   Adobe Photoshop CS5   CS5  
       PSViews.dll   Adobe Photoshop CS5   CS5  
       SCCore.dll   ScCore 2010/10/19-10:22:12   61.445301   61.445301
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       tbb.dll   Threading Building Blocks   2, 1, 2009, 0201  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   1.0.0.68 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   1.0.0.68
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
       wu3d.dll   U3D Writer   9.3.0.113  
    Installed plug-ins:
       3D Studio 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Accented Edges 12.0
       ADM 3.11x01
       Angled Strokes 12.0
       Average 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 6.7
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Cineon 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Collada 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Color Halftone 12.0.2
       Colored Pencil 12.0
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Craquelure 12.0
       Crop and Straighten Photos 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       De-Interlace 12.0.2
       Dicom 12.0
       Difference Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Eazel Acquire 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Embed Watermark 4.0
       Entropy 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Extrude 12.0.2
       FastCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Google Earth 4 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Grain 12.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       HDRMergeUI 12.0
       IFF Format 12.0.2
       Ink Outlines 12.0
       JPEG 2000 2.0
       Kurtosis 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Lens Blur 12.0
       Lens Correction 12.0.2
       Lens Flare 12.0.2
       Lighting Effects 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Liquify 12.0.1
       Matlab Operation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Maximum 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mean 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Measurement Core 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Median 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mezzotint 12.0.2
       Minimum 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       MMXCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mosaic Tiles 12.0
       Multiprocessor Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Neon Glow 12.0
       Note Paper 12.0
       NTSC Colors 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Ocean Ripple 12.0
       OpenEXR 12.0.2
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Paths to Illustrator 12.0.2
       PCX 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Photocopy 12.0
       Photoshop 3D Engine 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Picture Package Filter 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Pinch 12.0.2
       Pixar 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Portable Bit Map 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Poster Edges 12.0
       Radial Blur 12.0.2
       Radiance 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Range 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.0.4
       Send Video Preview to Device 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Shear 12.0.2
       Skewness 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Solarize 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Standard Deviation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Sumi-e 12.0
       Summation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       U3D 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Underpainting 12.0
       Vanishing Point 12.0
       Variance 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Variations 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Video Preview 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       Wavefront|OBJ 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       WIA Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Wind 12.0.2
       Wireless Bitmap 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       ZigZag 12.0.2
      Plug-ins that failed to load: NONE
    Flash:
       Flash
       Mini Bridge
       Access CS Live
       CS News and Resources
       Flash
       Kuler
       CS Review
    Installed TWAIN devices: NONE
    Illustrator:
    Components:
    ACE 2010/06/28-18:09:25 61.435133 61.435133
    Adobe APE 2010/02/23-12:40:58 61.421986 61.421986
    Adobe Linguisitc Library 5.0.0
    Adobe Owl 2010/03/08-15:17:17 3.0.89 61.423383
    Adobe Owl Canvas 3.0.68 61.2954
    PDFL 2010/10/18-23:35:06 64.341419 64.341419
    Adobe Product Improvement Program 5.0.0.2021
    AdobePSL 64.699054_12.664233 64.699054_12.664233
    Adobe XMP Core 5.0 61.134777
    Adobe XMP Files 5.0 61.134777
    Adobe XMP Script 5.0 61.134777
    Adobe CAPS 3,0,116,0
    Adobe OOBE Launcher 1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00) 1.000000
    AFL 1.0
    AFlame 2010/10/04-23:36:11 64.443603 64.443603
    AFlamingo 2010/10/04-23:36:11 64.436825 64.436825
    AGM 2010/06/28-18:09:25 61.435133 61.435133
    AdobeHelp Dynamic Link Library 1,5,0,30
    AIPort 1.0 23.68434
    Adobe EPIC 3.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:47:08) 53.352460
    AMTLib 3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00) 1.000000
    AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00) 1.000000
    ARE 2010/06/28-18:09:25 61.435133 61.435133
    Adobe Illustrator 1.0
    AsnEndUser Dynamic Link Library 1, 7, 0, 1
    Unknown Name
    AXE8SharedExpat 2010/02/23-17:27:33 61.421978 61.421978
    AXEDOMCore 2010/02/23-17:27:33 61.421978 61.421978
    AXSLE 2010/02/23-17:27:33 61.421978 61.421978
    BIB 2010/06/28-18:09:25 61.435133 61.435133
    BIBUtils 2010/06/28-18:09:25 61.435133 61.435133
    DVA Product 5.0.0
    DVA Product 5.0.0
    DVA Product 5.0.0
    DVA Product 5.0.0
    DVA Product 5.0.0
    DVA Product 5.0.0
    DVA Product 5.0.0
    CoolType 2010/06/28-18:09:25 61.435133 61.435133
    DVA Product 5.0.0
    DVA Product 5.0.0
    DVA Product 5.0.0
    DVA Product 5.0.0
    ExtendScript 2010/03/05-08:21:15 61.423205 61.423205
    Adobe XMP FileInfo 5.0 61.134777
    FilterPort 1.1 61.435133
    Microsoft® Windows® Operating System 6.1.7601.18120
    International Components for Unicode 2009/12/05-11:25:03  Build gtlib_main.11277
    International Components for Unicode 3, 4, 0, 0
    International Components for Unicode 2009/12/05-11:25:03  Build gtlib_main.11277
    International Components for Unicode 2009/12/05-11:25:03  Build gtlib_main.11277
    International Components for Unicode 3, 4, 0, 0
    International Components for Unicode 2009/12/05-11:25:03  Build gtlib_main.11277
    JP2KLib 2010/02/24-17:43:58 61.131544 61.131544
    Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler 10.0
    LogSession 2, 0, 1, 11
    MPS 2010/02/24-17:43:58 61.421978 61.421978
    Microsoft (R) Visual C++ 6.00.8168.0
    Microsoft® Visual Studio .NET 7.10.3077.0
    Microsoft® Visual Studio® 2005 8.00.50727.42
    Microsoft® Visual Studio .NET 7.10.3052.4
    Microsoft® Visual Studio® 2005 8.00.50727.42
    Microsoft® Visual C++ 2.10.000
    Microsoft® Visual C++ 4.00.5270
    PDFPort 2010/06/28-18:09:25 61.435133 61.435133
    Adobe PDFSettings 1.04
    Adobe Photoshop CS5 CS5
    Adobe(R) CSXS PlugPlug Standard Dll (32 bit) 2.0.1.127
    Adobe India Sangam Core Code 2010/02/03-18:48:35 61.129109 61.129109
    Adobe India SangamML Import from Sangam 2010/02/03-18:48:35 61.129109 61.129109
    ScCore 2010/03/05-08:21:15 61.423205 61.423205
    Microsoft® Windows® Operating System 6.00.2600.0000
    SVGExport 6, 0, 0, 0 1.0
    SVGRE 6, 0, 0, 0 1.0
    Adobe Updater Notifications Library 1.0.0.68 (BuildVersion: 1.0; BuildDate: BUILDDATETIME) 1.0.0.68
    WRServices Thursday January 21 2010 12:13:3 Build 0.11423 0.11423
    ATE
    OS: Windows
    Version: 6.1
    System Architecture: x86
    Built-In Memory: 4043 MB
    Application Folder:
    C:\Program Files (x86)\Adobe\Adobe Illustrator CS5\Support Files\
    Primary Scratch Folder:
    C:\AITEMP\
    Secondary Scratch Folder:
    D:\AITEMP\
    Plug-ins:
    Live Menu Item
    Adobe AI Application Plugin
    Control Groups
    Color Conversion
    Composite Fonts
    New Cache Plugin
    AdobeLicenseManager
    ZStringTable
    Window Menu
    Main Filters
    Main File Formats
    File Format Place EPS
    AI File Format
    Debug Menu
    SLO Text Tool
    Mesh Object
    Document Window Plugin
    Sweet Pea 2 Adapter Plugin
    ADM Plugin
    ASLib
    AdobeActionManager
    AILocalized Resources Plugin
    FrameworkS
    Art Converters v2
    FlattenTransparency
    FO Conversion Suite
    Pathfinder Suite
    PDF Suite
    BRS Pencil Tool
    Rasterize 8
    AdobeSlicingPlugin
    AdobeActionPalette
    BeautifulStrokes Suite
    AdobeBrushMgr
    Adobe Color Harmony Plugin
    Control Palette Plugin
    Adobe Deform Plugin
    AdobeLayerPalette
    Adobe Planar Edit Plugin
    AdobePaintStyle
    PathConstruction Suite
    AdobeSwatch_
    AdobeToolSelector
    Adobe Tracing Object
    Adobe Custom Workspace
    AdobeDiffusionRaster
    Snapomatic
    Adobe Geometry Suite
    Flatten Suite
    ShapeConstruction Suite
    ExpandS
    SWFExport
    Photoshop Plugin Adapter Targa
    Photoshop Plugin Adapter PNG
    Photoshop Plugin Adapter Pixar
    Photoshop Plugin Adapter PCX
    Photoshop Plugin Adapter BMP
    Photoshop Plugin Adapter Unsharp Mask...
    Photoshop Plugin Adapter Smart Blur...
    Photoshop Plugin Adapter Radial Blur...
    Photoshop Plugin Adapter Pointillize...
    Photoshop Plugin Adapter NTSC Colors
    Photoshop Plugin Adapter Mezzotint...
    Photoshop Plugin Adapter Gaussian Blur...
    Photoshop Plugin Adapter De-Interlace...
    Photoshop Plugin Adapter Crystallize...
    Photoshop Plugin Adapter Color Halftone...
    Photoshop Plugin Adapter Texturizer...
    Photoshop Plugin Adapter Stained Glass...
    Photoshop Plugin Adapter Patchwork...
    Photoshop Plugin Adapter Mosaic Tiles...
    Photoshop Plugin Adapter Grain...
    Photoshop Plugin Adapter Craquelure...
    Photoshop Plugin Adapter Glowing Edges...
    Photoshop Plugin Adapter Water Paper...
    Photoshop Plugin Adapter Torn Edges...
    Photoshop Plugin Adapter Stamp...
    Photoshop Plugin Adapter Reticulation...
    Photoshop Plugin Adapter Plaster...
    Photoshop Plugin Adapter Photocopy...
    Photoshop Plugin Adapter Note Paper...
    Photoshop Plugin Adapter Halftone Pattern...
    Photoshop Plugin Adapter Graphic Pen...
    Photoshop Plugin Adapter Cont^e Crayon...
    Photoshop Plugin Adapter Chrome...
    Photoshop Plugin Adapter Charcoal...
    Photoshop Plugin Adapter Chalk && Charcoal...
    Photoshop Plugin Adapter Bas Relief...
    Photoshop Plugin Adapter Ocean Ripple...
    Photoshop Plugin Adapter Glass...
    Photoshop Plugin Adapter Diffuse Glow...
    Photoshop Plugin Adapter Sumi-e...
    Photoshop Plugin Adapter Sprayed Strokes...
    Photoshop Plugin Adapter Spatter...
    Photoshop Plugin Adapter Ink Outlines...
    Photoshop Plugin Adapter Dark Strokes...
    Photoshop Plugin Adapter Crosshatch...
    Photoshop Plugin Adapter Angled Strokes...
    Photoshop Plugin Adapter Accented Edges...
    Photoshop Plugin Adapter Watercolor...
    Photoshop Plugin Adapter Underpainting...
    Photoshop Plugin Adapter Sponge...
    Photoshop Plugin Adapter Smudge Stick...
    Photoshop Plugin Adapter Rough Pastels...
    Photoshop Plugin Adapter Poster Edges...
    Photoshop Plugin Adapter Plastic Wrap...
    Photoshop Plugin Adapter Palette Knife...
    Photoshop Plugin Adapter Paint Daubs...
    Photoshop Plugin Adapter Neon Glow...
    Photoshop Plugin Adapter Fresco...
    Photoshop Plugin Adapter Film Grain...
    Photoshop Plugin Adapter Dry Brush...
    Photoshop Plugin Adapter Cutout...
    Photoshop Plugin Adapter Colored Pencil...
    Photoshop Plugin Adapter Filter Gallery...
    Twirl v2
    AdobeBuiltInToolbox
    Adobe Symbolism
    Simplify
    ShapeTool
    Segment Tools
    Adobe Scatter Brush Tool
    Reshape Tool
    Magic Wand
    Liquify
    Lasso
    Knife Tool
    Adobe Flare Plugin
    AdobeTextDropper
    Adobe Eraser Tool
    Adobe dBrush Brush Tool
    Adobe Crop Tool
    Adobe Calligraphic Brush Tool
    BoundingBox
    AdobeArtBrushTool
    Smart Punctuation
    TxtColumns
    Spell Check Dictionary
    Spell Check UI
    Find Replace UI
    TextFindFont
    TypeCase
    Adobe PSD File Import
    Adobe PSD File Export
    Photoshop Adapter
    PerspectiveUI
    TIFF File Format
    PNG File Format
    MPSParser
    MPSExport
    MPSCommon
    Mojikumi UI
    FXG UI
    FXG
    Adobe DXFDWG Format
    ZigZag v2
    Scribble v2
    TextWrap Dlg
    ShapeEffects v2
    Adobe Scribble Fill
    Saturate
    Round v2
    Roughen v2
    Punk v2
    AdobePathfinderPalette
    Overprint
    OffsetPath v2
    AI Object Mosaic Plug-in
    MaskHelper v2
    Inverse
    FuzzyEffect v2
    Distort v2
    Find
    Expand
    DropShadow
    TrimMark v2
    Colors
    Cleanup
    Adjust
    AddArrowHeads v3
    Add Anchor Points
    Adobe Welcome Screen
    AdobeTransparencyEditor
    AdobeTransformObjects
    Transform v2
    Adobe Tracing UI
    Adobe Symbol Palette Plugin
    SVG Filter Effect v2
    Stroke Offset v2
    Services
    SeparationPreviewPlugin
    Scripts Menu
    ScriptingSupport
    Print Plugin
    Adobe Perspective Guides
    Adobe Nudge
    AdobeNavigator
    Adobe Path Blends
    AdobeLinkPalette
    Kinsoku Dlg
    KBSC Plugin
    GradientMeshPlugin
    Flattening Preview
    FileClipboardPreference
    DocInfo
    Character and Paragraph Styles
    AI Bottlenecks Plugin
    Asset Management
    AdobeArtboardPanel
    Adobe Art Style Plugin
    Adobe App Bar Controls Host
    Alternate Glyph Palette
    AdobeAlignObjects
    3D v2
    PDF File Format
    ADMEveParser Plug

    Hi Mylenium,
    The program just loads useless to use your words when I try to pass a file from Illustrator to Photoshop and when I click anywhere in Illustrator I get Program "Not responding" it doesn't crashes (stops) it stais opened but it doesn't do anything so I need to close it by force from task manager because I can't do anything with it.... Once I left it over night to save an important file and just in the morning I managed to do that so after a while it comes round but all the time there are different periouds of pending. Anyway this is not normal and I should be able to use the program in normal parameters with a powerful system. 
    I don't have any processor over load in the task manager I don't have anything unusual that indicates an over load of information, that's my problem. My guess is that I have a system incompatibility but I don't know where so that's why I asked for Adobe's help. Again I didn't had this problem using the same pack (CS5) with a less powerful system...
    If there are any creash logs pelase tell me where can I find them ?

  • AI CS6 is shutting down when I try to open a file

    System Info
    Components:
    ACE 2012/07/26-17:49:18 66.512941 66.512941
    Adobe APE 2012/01/25-10:04:55 66.1025012 66.1025012
    Adobe Linguisitc Library 6.0.0
    Adobe Owl 2012/08/14-22:22:39 5.0.3 79.514916
    PDFL 2011/12/12-16:12:37 66.419471 66.419471
    Adobe Product Improvement Program 6.0.0.1654
    AdobePSL 66.840950_13.810430 66.840950_13.810430
    Adobe Illustrator 1.0
    Adobe XMP Core 2012/02/06-14:56:27 66.145661 66.145661
    Adobe XMP Files 2012/02/06-14:56:27 66.145661 66.145661
    Adobe XMP Script 2012/02/06-14:56:27 66.145661 66.145661
    Adobe CAPS 6,0,29,0
    AFL 1.0
    AFlame 2012/01/20-14:36:51 66.493279 66.493279
    AFlamingo 2012/01/20-14:36:51 66.485582 66.485582
    AGM 2012/07/26-17:49:18 66.512941 66.512941
    AdobeHelp Dynamic Link Library 1,7,0,56
    AIPort 1.0 23.68434
    Adobe EPIC 3.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:47:08) 53.352460
    AMTLib 6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00) 1.000000
    ARE 2012/07/26-17:49:18 66.512941 66.512941
    AXE8SharedExpat 2011/12/16-15:10:49 66.26830 66.26830
    AXEDOMCore 2011/12/16-15:10:49 66.26830 66.26830
    AXSLE 2011/12/16-15:10:49 66.26830 66.26830
    BIB 2012/07/26-17:49:18 66.512941 66.512941
    BIBUtils 2012/07/26-17:49:18 66.512941 66.512941
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    CoolType 2012/07/26-17:49:18 66.512941 66.512941
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    DVA Product 6.0.0
    ExtendScript 2011/12/14-15:08:46 66.490082 66.490082
    Adobe XMP FileInfo 2012/01/17-15:11:19 66.145433 66.145433
    FilterPort 1.1 66.512941
    Microsoft® Windows® Operating System 5.2.6002.23084
    International Components for Unicode 2011/11/15-16:30:22  Build gtlib_3.0.16615
    International Components for Unicode 2011/11/15-16:30:22  Build gtlib_3.0.16615
    International Components for Unicode 2011/11/15-16:30:22  Build gtlib_3.0.16615
    International Components for Unicode 2011/11/15-16:30:22  Build gtlib_3.0.16615
    JP2KLib 2012/11/05-11:16:34 66.246493 66.246493
    Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler 10.0
    LogSession 2.1.2.1640
    MPS 2012/10/12-13:31:12 66.521571 66.521571
    Microsoft (R) Visual C++ 6.02.3104.0
    Microsoft® Visual Studio .NET 7.10.3077.0
    Microsoft® Visual Studio® 2005 8.00.50727.42
    Microsoft® Visual Studio .NET 7.10.3052.4
    Microsoft® Visual Studio® 2005 8.00.50727.42
    Microsoft® Visual C++ 2.10.000
    Microsoft® Visual C++ 4.00.5270
    PDFPort 2012/07/27-12:07:51 66.512941 66.512941
    Adobe PDFSettings 1.04
    Adobe Photoshop CS6 CS6
    Adobe(R) CSXS PlugPlug Standard Dll (32 bit) 3.0.0.383
    Adobe India Sangam Core Code 2012/02/07-10:51:05 66.240342 66.240342
    Adobe India SangamML Import from Sangam 2012/02/07-10:51:05 66.240342 66.240342
    ScCore 2011/12/14-15:08:46 66.490082 66.490082
    ScriptUIFlex 2011/12/14-15:08:46 66.490082 66.490082
    Microsoft® Windows® Operating System 6.00.2600.0000
    SVGExport 6, 0, 0, 0 1.0
    SVGRE 6, 0, 0, 0 1.0
    Intel(R) Threading Building Blocks for Windows 3, 0, 2010, 0406
    Adobe Updater Notifications Library 6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME) 6.0.0.24
    WRServices Friday January 27 2012 13:22:12 Build 0.17112 0.17112
    ATE
    OS: Windows
    Version: 5.1
    System Architecture: x86
    Built-In Memory: 2039 MB
    User Name: Gabriella Gyorffy
    Serial Number: 9097027491442785
    Application Folder:
    C:\Program Files\Adobe\Adobe Illustrator CS6\Support Files\
    Primary Scratch Folder:
    C:\Documents and Settings\ggyorffy\Local Settings\Temp\
    Secondary Scratch Folder:
    Plug-ins:
    Live Menu Item
    Adobe AI Application Plugin
    Control Groups
    Color Conversion
    Composite Fonts
    New Cache Plugin
    AppAnnotators
    AdobeLicenseManager
    ZStringTable
    Window Menu
    Main Filters
    Main File Formats
    File Format Place EPS
    AI File Format
    Debug Menu
    SLO Text Tool
    Mesh Object
    Document Window Plugin
    Sweet Pea 2 Adapter Plugin
    AdobeActionManager
    AILocalized Resources Plugin
    Adobe Illustrator User Interface
    FrameworkS
    Art Converters v2
    FlattenTransparency
    FO Conversion Suite
    Pathfinder Suite
    PDF Suite
    BRS Pencil Tool
    Rasterize 8
    AdobeSlicingPlugin
    AdobeActionPalette
    BeautifulStrokes Suite
    AdobeBrushMgr
    Adobe Color Harmony Plugin
    Control Panel Plugin
    Adobe Deform Plugin
    AdobeLayerPalette
    Adobe Planar Edit Plugin
    AdobePaintStyle
    PathConstruction Suite
    AdobeSwatch_
    AdobeToolSelector
    Adobe Variables Palette
    AdobeDiffusionRaster
    SvgFileFormat
    Snapomatic
    Adobe Geometry Suite
    ShapeConstruction Suite
    ExpandS
    SWFExport
    Photoshop Plugin Adapter Unsharp Mask...
    Photoshop Plugin Adapter Crystallize...
    Photoshop Plugin Adapter Pointillize...
    Photoshop Plugin Adapter Pinch...
    Photoshop Plugin Adapter Extrude...
    Photoshop Plugin Adapter Fibers...
    Photoshop Plugin Adapter Lens Flare...
    Photoshop Plugin Adapter Ripple...
    Photoshop Plugin Adapter Shear...
    Photoshop Plugin Adapter Twirl...
    Photoshop Plugin Adapter Polar Coordinates...
    Photoshop Plugin Adapter Smart Blur...
    Photoshop Plugin Adapter Spherize...
    Photoshop Plugin Adapter Wind...
    Photoshop Plugin Adapter ZigZag...
    Photoshop Plugin Adapter Mezzotint...
    Photoshop Plugin Adapter Radial Blur...
    Photoshop Plugin Adapter Wave...
    Photoshop Plugin Adapter Crop and Straighten Photos Filter
    Photoshop Plugin Adapter De-Interlace...
    Photoshop Plugin Adapter Displace...
    Photoshop Plugin Adapter Tiles...
    Photoshop Plugin Adapter BMP
    Photoshop Plugin Adapter CompuServe GIF
    Photoshop Plugin Adapter PNG
    Photoshop Plugin Adapter Targa
    Photoshop Plugin Adapter IFF Format
    Photoshop Plugin Adapter Paths to Illustrator...
    Photoshop Plugin Adapter OpenEXR
    Photoshop Plugin Adapter Color Halftone...
    Photoshop Plugin Adapter Pixar
    Photoshop Plugin Adapter PCX
    Photoshop Plugin Adapter NTSC Colors
    Photoshop Plugin Adapter Legacy Gaussian Blur...
    Photoshop Plugin Adapter Filter Gallery...
    Photoshop Plugin Adapter Colored Pencil...
    Photoshop Plugin Adapter Cutout...
    Photoshop Plugin Adapter Dry Brush...
    Photoshop Plugin Adapter Film Grain...
    Photoshop Plugin Adapter Fresco...
    Photoshop Plugin Adapter Neon Glow...
    Photoshop Plugin Adapter Paint Daubs...
    Photoshop Plugin Adapter Palette Knife...
    Photoshop Plugin Adapter Plastic Wrap...
    Photoshop Plugin Adapter Poster Edges...
    Photoshop Plugin Adapter Rough Pastels...
    Photoshop Plugin Adapter Smudge Stick...
    Photoshop Plugin Adapter Sponge...
    Photoshop Plugin Adapter Underpainting...
    Photoshop Plugin Adapter Watercolor...
    Photoshop Plugin Adapter Accented Edges...
    Photoshop Plugin Adapter Angled Strokes...
    Photoshop Plugin Adapter Crosshatch...
    Photoshop Plugin Adapter Dark Strokes...
    Photoshop Plugin Adapter Ink Outlines...
    Photoshop Plugin Adapter Spatter...
    Photoshop Plugin Adapter Sprayed Strokes...
    Photoshop Plugin Adapter Sumi-e...
    Photoshop Plugin Adapter Diffuse Glow...
    Photoshop Plugin Adapter Glass...
    Photoshop Plugin Adapter Ocean Ripple...
    Photoshop Plugin Adapter Bas Relief...
    Photoshop Plugin Adapter Chalk && Charcoal...
    Photoshop Plugin Adapter Charcoal...
    Photoshop Plugin Adapter Chrome...
    Photoshop Plugin Adapter Cont^e Crayon...
    Photoshop Plugin Adapter Graphic Pen...
    Photoshop Plugin Adapter Halftone Pattern...
    Photoshop Plugin Adapter Note Paper...
    Photoshop Plugin Adapter Photocopy...
    Photoshop Plugin Adapter Plaster...
    Photoshop Plugin Adapter Reticulation...
    Photoshop Plugin Adapter Stamp...
    Photoshop Plugin Adapter Torn Edges...
    Photoshop Plugin Adapter Water Paper...
    Photoshop Plugin Adapter Glowing Edges...
    Photoshop Plugin Adapter Craquelure...
    Photoshop Plugin Adapter Grain...
    Photoshop Plugin Adapter Mosaic Tiles...
    Photoshop Plugin Adapter Patchwork...
    Photoshop Plugin Adapter Stained Glass...
    Photoshop Plugin Adapter Texturizer...
    Twirl v2
    Adobe Symbolism
    Simplify
    ShapeTool
    Segment Tools
    Adobe Scatter Brush Tool
    Reshape Tool
    Magic Wand
    Liquify
    Lasso
    Knife Tool
    Adobe Flare Plugin
    AdobeTextDropper
    Adobe Eraser Tool
    Adobe dBrush Brush Tool
    Adobe Crop Tool
    Adobe Calligraphic Brush Tool
    BoundingBox
    AdobeArtBrushTool
    Advanced Select
    Smart Punctuation
    TxtColumns
    Spell Check Dictionary
    TextFindFont
    TypeCase
    Adobe PSD File Import
    Adobe PSD File Export
    Adobe PSL Filter Adapter Plugin
    Photoshop Adapter
    ZigZagUI
    VectorizeUI
    VariablesPaletteUI
    TwirlToolUI
    ScribbleUI
    TransformUI
    TIFF File Format UI
    TextExportUI
    SWFExport UI
    SvgFileFormatUI
    Spell Check UI
    AdobeSlicingUI
    ShapeEffectUI
    ScribbleFillUI
    ScatterBrushToolUI
    SangamFormatsUI
    RoundUI
    RoughenUI
    RasterizeUI
    PuckerAndBloatUI
    PSLFilterAdapterUI
    Adobe PSD File Import UI
    Adobe PSD File Export UI
    AIPreferenceUI
    PlanetXUI
    PerspectiveUI
    PDF File Format UI
    PathfinderUI
    ParticleSystemUI
    OffsetPath UI Plugin
    ObjectMosaicUI
    LiveBlendsUI
    LiquifyToolUI
    JPEGFormatUI
    IllustratorUI
    GlobAdjToolUI
    FXG UI
    FuzzyEffectUI
    FlattenTransparencyUI
    FlareUI
    Find Replace UI
    ExpandUI
    DxfDwgUI
    DropShadowUI
    DistortUI
    DeformUI
    Adobe dBrush Brush Tool UI
    AdobeBrushMgrUI
    BRSPencilToolUI
    ArtOnPathBrushToolUI
    AI Toolbox UI Plugin
    AddArrowUI
    TIFF File Format
    TextExport
    AISangamMapper
    PNG File Format
    MPSParser
    MPSExport
    MPSCommon
    Mojikumi UI
    JPEG Plugin
    JPEG2K Plugin
    IdeaFileFormat
    GIF89a Plugin
    FXG
    Adobe DXFDWG Format
    Save4Web
    ZigZag v2
    Scribble v2
    TextWrap Dlg
    ShapeEffects v2
    Adobe Scribble Fill
    Saturate
    Round v2
    Roughen v2
    Punk v2
    AdobePathfinderPalette
    Overprint
    OffsetPath v2
    AI Object Mosaic Plug-in
    MaskHelper v2
    Inverse
    FuzzyEffect v2
    Distort v2
    Find
    Expand
    DropShadow
    TrimMark v2
    Colors
    Cleanup
    Adjust
    AddArrowHeads v3
    Add Anchor Points
    Adobe Custom Workspace
    Vectorize
    AdobeTransparencyEditor
    AdobeTransformObjects
    Transform v2
    Adobe Symbol Palette Plugin
    SVG Filter Effect v2
    Stroke Offset v2
    Services
    SeparationPreviewPlugin
    Scripts Menu
    ScriptingSupport
    Print Plugin
    Adobe Perspective Guides
    Package
    Adobe Nudge
    AdobeNavigator
    Adobe Path Blends
    AdobeLinkPalette
    Kinsoku Dlg
    KBSC Plugin
    GradientMeshPlugin
    Flattening Preview
    FileClipboardPreference
    DocInfo
    Character and Paragraph Styles
    AI Bottlenecks Plugin
    Asset Management
    AdobeArtboardPanel
    Adobe Art Style Plugin
    AppBarControls
    Alternate Glyph Palette
    AdobeAlignObjects
    3D v2
    PDF File Format

    All files
    Sent from my iPhone

  • How to fix Width of column in classic report.

    Dear Friends
    i am using Apex 3.2.
    i have created Clasic Report and i have summary column in my report that column have description of issue so i want to fix width of that column nn Classic report .
    i have try some code in html expression
    <span>style="width: 480px; display: block; white-space: normal; font-size: 11px;">#ACTIVITY_SUMMARY#</span>
    {code
    after apply abovemention code that display me in my summary like this and not manage width of column.
    style="width: 480px; display: block; white-space: normal; font-size: 11px;">Dear Cherryl, Greetings !! Thank you very much for the new query and we are pleased to confirm the availability of one single cabin in all the three categories of cabin on M.V. Mahabaahu. We would like to inform you that both the departures 15th Oct 2013 & 29th Oct 2013 (Golden triangle with Cruise) are operational and attached are the prices for your kind consideration. As a special promotion for the 15th Oct 2013 departure only, we are offering USD 100 per person reduction on the Golden triangle portion combined with the cruise. Kindly review and advise us to block the accommodation accordingly. Regards...pankaj
    How to fix Width of column in classic report.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    I'm working an example in APEX 4.2 so YMMV (your milage may vary!).
    For Classic Reports, where the Column Attributes "Display As" is set to Display as Text (escape special characters ...:
    1) I find that Column width and Element Width setting have no effect to make the column smaller or larger.
    2) Here is one way that works:
    - In the Region's Region Definition, under Attributes give the Static ID a name (no spaces), say, class-report.
    - In the columns you want to affect, place "&#60;div>#ENAME#</div&#62;" in the columns Column Formatting "HTML Expression". Where "ENAME" here is the actual column name.
    I'm using the EMP table as an example.
    - Finally, in the page's HTML Header put, for example
    <style>
    #classic-report td.data[headers="ENAME"] div {
      width: 200px;
      color: blue;
    #classic-report td.data[headers="JOB"] div {
      width: 50px;
      white-space: nowrap;
      word-wrap: break-word;
    </style>This makes the ENAME column wider and the JOB column smaller and wraps it.
    Much more could be said. If you tweak you will find you can also affect spacing above, below and right/left of the data.
    #classic-report .report-standard th.header {
      border-left: #9fa0a0 1px solid;
      padding: 2px 3px 4px 5px;   /* top right bottom left margins */
      font-size: 11px;
      font-weight: bold;
      vertical-align: bottom;
    #classic-report .report-standard td.data {
      border-left: #9fa0a0 1px solid;
      padding: 3px 4px 5px 6px;
      font-size: 9px;
    }Does this help?
    Howard

  • Version: 6.1 crashes saving and printing on windows 7

    Tried to do an update to see if that would fix the issue it stops the update at 35.4%
    OS: Windows 7 64 bit
    Version: 6.1
    System Architecture: x86
    Built-In Memory: 3793 MB
    Application Folder:
    C:\Program Files (x86)\Adobe\Adobe Illustrator CS6\Support Files\
    Primary Scratch Folder:
    C:\Users\tapsega\AppData\Local\Temp\
    Secondary Scratch Folder:
    Plug-ins:
    Live Menu Item
    Adobe AI Application Plugin
    Control Groups
    Color Conversion
    Composite Fonts
    New Cache Plugin
    AppAnnotators
    AdobeLicenseManager
    ZStringTable
    Window Menu
    Main Filters
    Main File Formats
    File Format Place EPS
    AI File Format
    Debug Menu
    SLO Text Tool
    Mesh Object
    Document Window Plugin
    Sweet Pea 2 Adapter Plugin
    AdobeActionManager
    AILocalized Resources Plugin
    Adobe Illustrator User Interface
    FrameworkS
    Art Converters v2
    FlattenTransparency
    FO Conversion Suite
    Pathfinder Suite
    PDF Suite
    BRS Pencil Tool
    Rasterize 8
    AdobeSlicingPlugin
    AdobeActionPalette
    BeautifulStrokes Suite
    AdobeBrushMgr
    Adobe Color Harmony Plugin
    Control Panel Plugin
    Adobe Deform Plugin
    AdobeLayerPalette
    Adobe Planar Edit Plugin
    AdobePaintStyle
    PathConstruction Suite
    AdobeSwatch_
    AdobeToolSelector
    Adobe Variables Palette
    AdobeDiffusionRaster
    SvgFileFormat
    Snapomatic
    Adobe Geometry Suite
    ShapeConstruction Suite
    ExpandS
    SWFExport
    Photoshop Plugin Adapter Unsharp Mask...
    Photoshop Plugin Adapter Crystallize...
    Photoshop Plugin Adapter Pointillize...
    Photoshop Plugin Adapter Pinch...
    Photoshop Plugin Adapter Extrude...
    Photoshop Plugin Adapter Fibers...
    Photoshop Plugin Adapter Lens Flare...
    Photoshop Plugin Adapter Ripple...
    Photoshop Plugin Adapter Shear...
    Photoshop Plugin Adapter Twirl...
    Photoshop Plugin Adapter Polar Coordinates...
    Photoshop Plugin Adapter Smart Blur...
    Photoshop Plugin Adapter Spherize...
    Photoshop Plugin Adapter Wind...
    Photoshop Plugin Adapter ZigZag...
    Photoshop Plugin Adapter Mezzotint...
    Photoshop Plugin Adapter Radial Blur...
    Photoshop Plugin Adapter Wave...
    Photoshop Plugin Adapter Crop and Straighten Photos Filter
    Photoshop Plugin Adapter De-Interlace...
    Photoshop Plugin Adapter Displace...
    Photoshop Plugin Adapter Tiles...
    Photoshop Plugin Adapter BMP
    Photoshop Plugin Adapter CompuServe GIF
    Photoshop Plugin Adapter PNG
    Photoshop Plugin Adapter Targa
    Photoshop Plugin Adapter IFF Format
    Photoshop Plugin Adapter Paths to Illustrator...
    Photoshop Plugin Adapter OpenEXR
    Photoshop Plugin Adapter Color Halftone...
    Photoshop Plugin Adapter Pixar
    Photoshop Plugin Adapter PCX
    Photoshop Plugin Adapter NTSC Colors
    Photoshop Plugin Adapter Legacy Gaussian Blur...
    Photoshop Plugin Adapter Filter Gallery...
    Photoshop Plugin Adapter Colored Pencil...
    Photoshop Plugin Adapter Cutout...
    Photoshop Plugin Adapter Dry Brush...
    Photoshop Plugin Adapter Film Grain...
    Photoshop Plugin Adapter Fresco...
    Photoshop Plugin Adapter Neon Glow...
    Photoshop Plugin Adapter Paint Daubs...
    Photoshop Plugin Adapter Palette Knife...
    Photoshop Plugin Adapter Plastic Wrap...
    Photoshop Plugin Adapter Poster Edges...
    Photoshop Plugin Adapter Rough Pastels...
    Photoshop Plugin Adapter Smudge Stick...
    Photoshop Plugin Adapter Sponge...
    Photoshop Plugin Adapter Underpainting...
    Photoshop Plugin Adapter Watercolor...
    Photoshop Plugin Adapter Accented Edges...
    Photoshop Plugin Adapter Angled Strokes...
    Photoshop Plugin Adapter Crosshatch...
    Photoshop Plugin Adapter Dark Strokes...
    Photoshop Plugin Adapter Ink Outlines...
    Photoshop Plugin Adapter Spatter...
    Photoshop Plugin Adapter Sprayed Strokes...
    Photoshop Plugin Adapter Sumi-e...
    Photoshop Plugin Adapter Diffuse Glow...
    Photoshop Plugin Adapter Glass...
    Photoshop Plugin Adapter Ocean Ripple...
    Photoshop Plugin Adapter Bas Relief...
    Photoshop Plugin Adapter Chalk && Charcoal...
    Photoshop Plugin Adapter Charcoal...
    Photoshop Plugin Adapter Chrome...
    Photoshop Plugin Adapter Cont^e Crayon...
    Photoshop Plugin Adapter Graphic Pen...
    Photoshop Plugin Adapter Halftone Pattern...
    Photoshop Plugin Adapter Note Paper...
    Photoshop Plugin Adapter Photocopy...
    Photoshop Plugin Adapter Plaster...
    Photoshop Plugin Adapter Reticulation...
    Photoshop Plugin Adapter Stamp...
    Photoshop Plugin Adapter Torn Edges...
    Photoshop Plugin Adapter Water Paper...
    Photoshop Plugin Adapter Glowing Edges...
    Photoshop Plugin Adapter Craquelure...
    Photoshop Plugin Adapter Grain...
    Photoshop Plugin Adapter Mosaic Tiles...
    Photoshop Plugin Adapter Patchwork...
    Photoshop Plugin Adapter Stained Glass...
    Photoshop Plugin Adapter Texturizer...
    Twirl v2
    Adobe Symbolism
    Simplify
    ShapeTool
    Segment Tools
    Adobe Scatter Brush Tool
    Reshape Tool
    Magic Wand
    Liquify
    Lasso
    Knife Tool
    Adobe Flare Plugin
    AdobeTextDropper
    Adobe Eraser Tool
    Adobe dBrush Brush Tool
    Adobe Crop Tool
    Adobe Calligraphic Brush Tool
    BoundingBox
    AdobeArtBrushTool
    Smart Punctuation
    TxtColumns
    Spell Check Dictionary
    TextFindFont
    TypeCase
    Adobe PSD File Import
    Adobe PSD File Export
    PSLFilterAdapter
    Photoshop Adapter
    ZigZagUI
    VectorizeUI
    VariablesPaletteUI
    TwirlToolUI
    ScribbleUI
    TransformUI
    TIFF File Format UI
    TextExportUI
    SWFExport UI
    SvgFileFormatUI
    Spell Check UI
    AdobeSlicingUI
    ShapeEffectUI
    ScribbleFillUI
    ScatterBrushToolUI
    SangamFormatsUI
    RoundUI
    RoughenUI
    RasterizeUI
    PuckerAndBloatUI
    PSLFilterAdapterUI
    Adobe PSD File Import UI
    Adobe PSD File Export UI
    AIPreferenceUI
    PlanetXUI
    PerspectiveUI
    PDF File Format UI/0
    PathfinderUI
    ParticleSystemUI
    OffsetPath UI Plugin
    ObjectMosaicUI
    LiveBlendsUI
    LiquifyToolUI
    JPEGFormatUI
    IllustratorUI
    GlobAdjToolUI
    FXG UI
    FuzzyEffectUI
    FlattenTransparencyUI
    FlareUI
    Find Replace UI
    ExpandUI
    DxfDwgUI
    DropShadowUI
    DistortUI
    DeformUI
    Adobe dBrush Brush Tool UI
    AdobeBrushMgrUI
    BRSPencilToolUI
    ArtOnPathBrushToolUI
    AI Toolbox UI Plugin
    AddArrowUI
    TIFF File Format
    PNG File Format
    MPSParser
    MPSExport
    MPSCommon
    Mojikumi UI
    IdeaFileFormat
    FXG
    Adobe DXFDWG Format
    Save4Web
    ZigZag v2
    Scribble v2
    TextWrap Dlg
    ShapeEffects v2
    Adobe Scribble Fill
    Saturate
    Round v2
    Roughen v2
    Punk v2
    AdobePathfinderPalette
    Overprint
    OffsetPath v2
    AI Object Mosaic Plug-in
    MaskHelper v2
    Inverse
    FuzzyEffect v2
    Distort v2
    Find
    Expand
    DropShadow
    TrimMark v2
    Colors
    Cleanup
    Adjust
    AddArrowHeads v3
    Add Anchor Points
    Adobe Custom Workspace
    Vectorize
    AdobeTransparencyEditor
    AdobeTransformObjects
    Transform v2
    Adobe Symbol Palette Plugin
    SVG Filter Effect v2
    Stroke Offset v2
    Services
    SeparationPreviewPlugin
    Scripts Menu
    ScriptingSupport
    Print Plugin
    Adobe Perspective Guides
    Adobe Nudge
    AdobeNavigator
    Adobe Path Blends
    AdobeLinkPalette
    Kinsoku Dlg
    KBSC Plugin
    GradientMeshPlugin
    Flattening Preview
    FileClipboardPreference
    DocInfo
    Character and Paragraph Styles
    AI Bottlenecks Plugin
    Asset Management
    AdobeArtboardPanel
    Adobe Art Style Plugin
    AppBarControls
    Alternate Glyph Palette
    AdobeAlignObjects
    3D v2
    PDF File Format

    And what do the actual crash logs say?
    Mylenium

Maybe you are looking for

  • PO Version Log report....Urgent

    Hi Experts, I have to create a PO version log report, which should display old values and  new values for each version of PO. Values we can get using tables CDHDR and CDPOS but it table CDHDR is not saving version number. Version Number we can get fr

  • Data generator for NVARCHAR2 doesn't work

    HI, I try to use data generator to populate the table Employees, it gives good values in the test run, but when I press "Create data as SQL" and run the query it gives an error: SQL> insert into SYSTEM.EMPLOYEES (EMPLOYEE_ID, FIRST_NAME, LAST_NAME, E

  • Se10 : transporting functiongroups and function modules

    We have a function group ZGROUP. In this group we have several function modules.(ZXX,ZXX1,ZXX2, etc) Now we have to make some changes : One Abap consultant (A) is changing one function module(ZXX) in the group zgroup. Another Abap consultant(B) is ma

  • Document Attachment functionality in Leave application page of ESS

    Hi All, I have a requirement where in i have to develop a functionality in standard leave application ( Time management) page of ESS / MSS.  Does SAP has any standard file type and any particular size limit to be considered while uploading the file.A

  • PAB Deprovisioning.

    Is their a utility to delete orphaned PAB's? Something similar to what is done for user mailboxes?