Coloring a Font with a RGB etc. without adding the color to the document swatches.

Is there a way of coloring a font with a RGB, Lab or CMYK color without adding the color to the document swatches.
The only way I know is to add a color to the swatches or use one that already exists.
like
   app.selection[0].characters[0].fillColor=document.colors.add({colorValue: [255, 53, 160], space: ColorSpace.RGB});}
This has the undesired effect of cluttering up the swatches when using a lot of colors.
any ideas?

Good Morning Uwe!
After 3am by me 2am by you
I had tried the link and it did download but I have cs5 cs6 and cc but not cs5.5 and all the scripts worked on them may because of the file conversion.
So it looks like the following summary is all correct
All documents new contain
Swatches (Black, Registration, Paper and None) the index order will be the order that the swatches appear in the swatches panel
And colors in an alphabetical index order
named color "A" first "Z" last and then the unnamed colors.
A such all new documents colors[-1] will be an unnamed color which we can duplicated to produce other unnamed colors taking note that the duplication must be process and not spot colors.
So far so good, (not for long )
Unnamed colors are not read only so if we make a positive effort to remove them we can do that.
while (app.activeDocument.colors[-1].name == "") app.activeDocument.colors[-1].remove()
We now won't have any unnamed swatches to duplicate and will have to resort to John's tagged text file method in 3 above.
If there were no unnamed swatches and we try to duplicate colors[-1] and it was a color like "Yellow" then it seem's to crash indesign.
Anyway the below method should always work (for regular non tint etc. type colors).
// optimized for easy of use but not efficiency !!!
var doc = app.documents.add();
var p = doc.pages[0];
p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "0mm", "30mm", "30mm"], fillColor: addUnnamedColor([0, 0,255])}); // will be a RGB
p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "30mm", "30mm", "60mm"], fillColor: addUnnamedColor([0, 255,0], 1666336578)}); // will be a RGB because of value
p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "60mm", "30mm", "90mm"], fillColor: addUnnamedColor([65, 50, 102], ColorSpace.RGB)}); // will be a RGB
p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "90mm", "30mm", "120mm"], fillColor: addUnnamedColor([84, 90,40],"r")}); // will be a RGB
p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "120mm", "30mm", "150mm"], fillColor: addUnnamedColor([232, 0, 128],1)}); // will be a RGB
p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "0mm", "60mm", "30mm"], fillColor: addUnnamedColor([29.5, 67.5, -112])}); // will be a Lab because of -
p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "30mm", "60mm", "60mm"], fillColor: addUnnamedColor([100, -128, 127], 1665941826)}); // will be a Lab because of value
p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "60mm", "60mm", "90mm"], fillColor: addUnnamedColor([24.5, 16, -29], ColorSpace.LAB)}); // will be a Lab
p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "90mm", "60mm", "120mm"], fillColor: addUnnamedColor([36.8, -9, 27],"l")}); // will be a Lab
p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "120mm", "60mm", "150mm"], fillColor: addUnnamedColor([51, 78, 0], -1)}); // will be a Lab because of the 1
p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "0mm", "90mm", "30mm"], fillColor: addUnnamedColor([82, 72, 0, 0])}); // will be a CMYK because there are 4 color values
p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "30mm", "90mm", "60mm"], fillColor: addUnnamedColor([60, 0, 100, 0], 1129142603)}); // will be a CMYK because of value
p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "60mm", "90mm", "90mm"], fillColor: addUnnamedColor([84, 90,40, 0], ColorSpace.CMYK)}); // will be a CMYK
p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "90mm", "90mm", "120mm"], fillColor: addUnnamedColor([67, 53, 97.6, 21.7], "c")}); // will be a CMYK
p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "120mm", "90mm", "150mm"], fillColor: addUnnamedColor([0, 100, 0, 0], 0)}); // will be a CMYK
function addUnnamedColor (cValue, space, docToAddColor) {
    docToAddColor = app.documents.length && (docToAddColor || (app.properties.activeDocument && app.activeDocument) || app.documents[0]);
    if (!docToAddColor) return;
    var lastColor = docToAddColor.colors[-1];
    if (!cValue) cValue = [0,0,0,0];
    if (space == 1129142603 || cValue && cValue.length == 4) space = ColorSpace.CMYK;
    else if ((space && space < 0) ||  space && space == 1665941826 || (space && /L|-/i.test(space.toString())) || (cValue && /-/.test(cValue ))) space = ColorSpace.LAB;
    else if ((space && space > 0) || space && space == 1666336578 || (space && /R/i.test(space.toString())) || (cValue && cValue.length == 3)) space = ColorSpace.RGB;
    else space = ColorSpace.CMYK;
    app.doScript (
        var newUnnamedColor = (lastColor.name == "") ? lastColor.duplicate() : taggedColor();
        newUnnamedColor.properties = {space: space, colorValue: cValue};
        ScriptLanguage.javascript,
        undefined,
        UndoModes.FAST_ENTIRE_SCRIPT
     function taggedColor() { // need to use this if no unnamed exists
             var tagString = "<ASCII-" + ($.os[0] == "M" ? "MAC>\r " : "WIN>\r ") + "<cColor:COLOR\:CMYK\:Process\:0.1\,0.95\,0.3\,0.0><cColor:>"; // would make more sense to apply the correct value in the tagged text file but I can't be bothered !
             var tempFile = new File (Folder (Folder.temp) + "/ " + (new Date).getTime() + ".txt");
             tempFile.open('w');
             tempFile.write(tagString);
             tempFile.close();
             var tempFrame = docToAddColor.pages[-1].textFrames.add();
             $.sleep(250);
             tempFrame.place(tempFile);
             tempFrame.remove();
             tempFile.remove();
         return docToAddColor.colors[-1];
    return newUnnamedColor;
Shall apply the function to delete and replace swatch on the other thread at a more sane time
Regards
Trevor

Similar Messages

  • Hi. I clicked some snaps from my iphone and post that without copying it i restored the iphone with all apps etc available from the backup taken. How do i get back the photos which were clicked earlier. Is there a way to get it back?? Please help

    Hi. I clicked some snaps from my iphone and post that without copying it i restored the iphone with all apps etc available from the backup taken. How do i get back the photos which were clicked earlier. Is there a way to get it back?? Please help

    Yes i had not taken back up before restoring it. However i was just going through some links on the net and there is a software available for MAC to retrieve such lost data. But the point is will the said software work on iphone as the OS is not MAC..
    Will have to give a try to this. If successful will share it with all. Anyone else has any idea about this please so share.

  • How load swf file (flash 8) with adobe captivate 3 without enter the HTML?

    How load swf file (flash 8) with adobe captivate 3 without enter the HTML?

    Hi SaSQuaCh69247,
    Issue 1 :- Select the SWF file in library, right click, and
    select update.
    Issue 2 :- Actually it could be valid for Issue 1 also. It
    seems like SWF file you are trying to import, does some action
    like, importing another swf or connecting to server on the first
    frame itself. Captivate will try to play the first frame of SWF
    when you import them. Try creating a keyframe with the stop action
    as the first frame in your SWF, and see if you still have the
    issue.
    Issue 3 :- The approach I am mentioning over here is
    generally the last approach which I will take in such scenerios,
    but since you have already experimented a little, so try this.
    Go to C:\Documents and Settings\<user name>\Application
    Data\Adobe\Adobe Captivate
    Rename captivate_v20.dat as captivate_v20_org.dat.
    Restart Captivate Application.
    thanks

  • I have an Ipad, I activated the time capsule with no issues. I added the airport Utility application without issue.  However, I do not know how to access the hard drive with either my Windows computer or the Ipad.  Does someone know how?

    I have an Ipad, I activated the time capsule with no issues. I added the airport Utility application without issue.  However, I do not know how to access the hard drive with either my Windows computer or the Ipad.  Does someone know how?

    On windows load the airport utility .. latest correct version as possible.. there is no windows 8 but win7 works after a fashion.
    Make sure the TC is using SMB compatible names.. short no spaces and pure alphanumeric.
    Type the name directly into windows explorer.
    \\TCname or \\TCIPaddress
    If no luck turn off all the firewalls.. internal windows plus security software plus whatever other gargyoles and other rubbish AV software you have running.
    Ensure windows is able to at least ping the TC by IP address and name..
    Use the utility in windows to set file sharing to guest account on with full read and write access.. and set workgroup to WORKGROUP.

  • I want to merge difference disk with its parent online without turnoff the VM.

    Hi,
    I want to merge  difference disk with its parent online without turnoff the VM.
    It is NOT snapshot it was created while   using P2V

    Hi ,
    "It is NOT snapshot it was created while   using P2V "
    Do you mean the virtual disk which created by P2V is a parent disk , then you create a VM with a differencing disk connecting to the parent disk ?
    Now you want to merge them , right ?
    I'm afraid it is designed to shudown the VM and then edit the disk .
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Using a CC with a Balance Transfer without added interest cost

    I have several cards on 0% or low APR BT Offers, and those CC have also made me offers for cash back if I use the card for purchases. How can you do this, if the card is already on a BT, without destroying the low APR on the BT? Easy.  An important thing to understand about your credit card statement is that your statement balance can have multiple APR on several different portions of the balance. In this Bank of America example, I’ve got two separate 0% APR with different expiration dates, balance transfers left over from earlier at the purchase APR, and purchases at the standard purchase APR. The amounts shown are not the ending balance, but rather the average balance during the credit card statement period. (even this average balance isn’t exactly what the interest is charged on, because CC interest is charged on a daily percentage, resulting in daily compounding)Before Congress passed the CARD Act, most CC agreements would apply ALL payments to the lowest APR first, meaning in the above example the ~$8k on the two 0% APR would be paid first, all $8k, before even beginning to pay on the ~$500 at the purchase APR. This is a favorable purchase APR, but imagine if the purchase APR was at 19%? To make matters worse, the interest on the purchase APR items would usually add to the Purchase balance, and continue to compound the interest cost on the purchases until all the lower APR items were paid off however many months that took. Needless to say, in the old days it was not a good idea to use your credit card for regular purchases if you had a BT on the card.  That all changed with the CARD Act a few years ago. Since the credit reforms of the CARD Act, credit card issuers are allowed to apply the minimum payment to the lowest APR items first. However, after the minimum payment, they must apply payments to the highest APR items. The minimum payment depends on statement balance, but is often only 1% to 2% of that statement balance. In the example above, the statement balance of almost $8k required a minimum payment of only $82. This would be applied to the approximately $8k 0% APR balance first. Any additional payments above the $82 for the month would be applied to the highest APR items next. Actual interest charges usually fall into the higher APR buckets.  On the BofA cards, I get little offers for 10% cash back from certain national merchants. HairMasters, Starbucks, Buffalo Wild Wings, Papa Murphy’s, and several others are regularly available to add the offer to the card, use it at the merchant for one purchase, and get 10% cash back. With my Citi Diamond Preferred, I also had a $600 BT offer on the $1k CL, then got a 5% back on $500 of purchases in gas, groceries, restaurants and department stores. My Discover card had several thousand on a 0% BT, then they sent me a “spend $1,000, get $100 back” offer. My US Bank Cash+ has a low APR BT offer, and 5% categories for Department stores. How do you take advantage of the spend offers and not get interest charges? You usually have to accept / sign up for the spend offer, to add it to the card, so do that first. When you use the card for any of the offers, depending on the spend involved in the offer, just keep track of those as they post to your CC account online during the month. You have to wait until the charge amount actually posts to your credit card account, so it is no longer Pending. After it posts, it will be in the “Purchases” bucket of the daily interest charge calculations. Said differently, you cannot prepay these charges, you have to wait for the amounts to show up as Posted on your account online. It only takes a few days after you did the purchase, and you don’t have to wait until the statement cuts to see the amounts, but they do have to post to your account. After a few charges have posted, use the Make a Payment button on your credit card account to arrange an electronic payment from your checking account, to post the same day or in a few days. If you know when charges will hit, you can also schedule such a payment for a few days after, to allow time for the charges to post. Repeat this throughout the month if the spend offer is a long term thing. The amount of the payment you make must cover the Minimum Payment first. I’ll often just send over the minimum payment right after the statement prints, just to get it out of the way. I owe the amount, the BT needs to be paid off, and the Minimum Payment is a small amount anyway. I’ve also got Autopayments set up for all these accounts, which is intended to pay the BT offer over a schedule. I don’t use the Autopayment amount in my calculations of paying the purchase amount, although they would be applied to the purchase amounts. By paying the purchase soon after it posts, and after the minimum payment has been made, the interest rate clock never really gets started on the purchase amount. You may see a minimum interest charge of $0.50 if the card charges that, but often I don’t even get that amount if the payment is soon enough after the charge was posted. Chase Slate and Freedom cards are actually even easier. You can use the Blueprint Full Pay payment selector features to tell Slate the types of charges you want to include as pay in full, and they will add those new charges to your Blueprint payment to pay them above the minimum payment that is going toward the BT payment, and not accrue any additional Purchase interest. The Finish It allows you to set an additional amount you want to pay toward the BT (or purchase charges) principal over the minimum payment, to make the payments faster. So, the point of this is, if you have a BT offer on a card, you don’t have to effectively SD the card, it can be used for purchases to take advantage of special offers, or even for regular charges, without added interest cost.          

    tjhallow wrote:
    But since I don't have any interest on balance transfers and purchases on my discover card right now I usually just make whatever I was making (before the charge) and then I add the new charges in there.If you're 0% on BT's and purchases then this thread really isn't relevant.  This is for those that have 0% on BT and >0% on purchases. kdm31091 wrote:
    Basically, all this is saying, unless I am missing something, is that if you make purchases and pay them off before statement (i.e. don't carry the extra balance on top of the BT amount) you won't pay interest, which is the case with any CC, whether on a BT or not. I don't see how the rewards offers make any difference here. You're just paying charges as you go to avoid interest accruing.It is basically the same whether there's a 0% offer or not.  The OP started this thread to clarify for those that do have a 0% BT offer and still want to take advantage of rewards on the same card without impacting rewards by acrruing interest on new purchases.  If the card has no rewards as an incentive for new purchases then it's easy enough just to SD the card until the 0% offer balance is paid off. my-own-fico wrote:
    I'm not sure whether to agree, because if you pay the minimum following the statement date and then charge something that you soon pay off, we are talking about two different billing cycles. The billing cycles really don't matter aside from generating a new minimum payment as each cycle closes out.  Regardless of cycle the minimum has to be covered first and then new purchases within the given cycle need to be paid off as quickly as possible. The minimum applies to the prior cycle. Additional payment(s) need to be made for purchases in the current cycle.

  • Any way to power on macbook pro with external wired keyboard without opening the lid?

    i mainly use macbook pro with external display and i want to keep lid closed. is there any way i can power on/off the macbook without opening the lid, i know i can power off but powering on?
    Thanks in advance

    These Apple tech notes may help:
    How to use your PowerBook G4, MacBook Pro or MacBook with the display closed
    How to use your PowerBook G4, MacBook or MacBook Pro with the display closed and a Bluetooth keyboard or mouse
    Just a final question about Sleep mode - does this have any negative effects on the life or performance of the laptop? I'm so used to Shutting down the laptop each day that I worry about Sleep mode having some sort of drain on the components or something.
    There are only two practical differences between Sleep and Shut Down:
    1. Sleep will wake instantly, so you don't have to wait for startup.
    2. Sleep will drain a new, fully charged battery after several days without being woken or plugged in. If you shut down, the battery charge lasts much longer. Obviously, if you only sleep it overnight, you'll still have plenty of battery left in the morning.
    Don't sleep it more frequently than necessary, though. Frequently turning the backlight and hard drive off and on can shorten their life. Just do what's reasonable. I usually leave mine awake until I have to transport it in a bag, along with sleeping it overnight. On battery, I'll sleep it more often to preserve battery.

  • How to move an object with its animation path, without adding a new keyframe?

    Hi,
    If I create an object which has a keyframe animation, how can I change its location/scale without adding new keyframes? That is, I want to move the whole thing with all its animations & keyframes as a single entity.
    thanks
    Arun

    Hi,
    big thanks for that. Unless Im doing something stupid when I did that it made a new copy of the object but did allow me to place that new instance elsewhere.
    Is there any way just to move an object and its path without making a new copy?
    All the best
    Arun

  • My Iphone 4 with iOS 5 changes without touching the glass the windows!

    Since a few days my Iphone changes the windows forward and backward without touching the glass. It's very annoying because writing a new sms is very diffucult because the content is deleted an i have start again several times.
    What can I do? I still reseted my Phone and put on it the Backup. But there are no changes.

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these Steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step... Be sure to make an appointment first...

  • How to save a PDF in Acrobat XI after making changes without changing the document name

    Whenever I work in Adobe Acrobat XI, I am forced to 'save as' when trying to save the changes I have just made.  I am unable to save the document under the same name I have been working on it under (the way you can do in every other program).  This happens every time I create form fields, merge or extract pages, add text, etc.  This is extremely annoying because then I have to go into my documents, delete the old version, and then rename the document I was working on.  HELP! I work in Acrobat every day creating and editing documents and there HAS to be a better way!

    CTRL+F brings up the search bar within the document. When I go to File --> Save (or CTRL+S) I receive an error message that states "The document could not be saved.  The file may be read-only, or another user may have it open.  Pelase save the document with a different name or in a different folder". This message pops up for EVERY document I have modified that I try to save.

  • OpenXML Images added with AddImagePart not showing up in the document

    Did you solve this issue?
    I'm trying to add an image to an existing Word 2010 document using OpenXML SDK 2.5. But when I add the image the image does not get embedded. When I open the document, the image shows the placeholder with a red cross (as if the image cannot be found). I'm
    using the following code:
    string mimetype = String.Empty;
    //Find mime type of the image here
    imagePart = wpd.MainDocumentPart.AddImagePart(mimetype);
    using (FileStream stream = new FileStream(filename, FileMode.Open))
    image = new Bitmap(stream);
    cy = Convert.ToUInt32(image.PhysicalDimension.Height);
    cx = Convert.ToUInt32(image.PhysicalDimension.Width);
    imagePart.FeedData(stream);
    stream.Close();
    Paragraph para = FindParagraphInAppendix(....); //Find the paragraph to add
    if (para != null)
    AddImageToParagraph(para, wpd.MainDocumentPart.GetIdOfPart(imagePart),txt, filename,cx,cy);
    else
    wpd.MainDocumentPart.Document.Body.Append(GetImageWithPara(wpd.MainDocumentPart.GetIdOfPart(imagePart), filename, cx, cy));
    wpd.Package.CreateRelationship(imagePart.Uri, System.IO.Packaging.TargetMode.External,wpd.MainDocumentPart.GetIdOfPart(imagePart));
    wpd.MainDocumentPart.Document.Save();
    In the code for AddImageToParagraph I'm adding the image as follows:
    Pic.BlipFill blipFill1 = new Pic.BlipFill();
    A.Blip blip1 = new A.Blip() { Embed = relationshipid,
    CompressionState = A.BlipCompressionValues.Print };
    A.BlipExtensionList blipExtensionList1 = new A.BlipExtensionList();
    When I open the file generated using Winzip, the document.xml.rels file does not contain a relationship ID associated with the embedded image.
    When I open the using OpenXML Productivity tool and validate the XML I get the error : "The relationship 'R75a8cc179...' referenced by attribute 'hxxp://schemas.openxmlformats..../relationships:embed' does not exist
    But what strikes as odd is imagePart.AddImagePart is not creating a
    <Relationship> tag in the resulting document.xml.rels.
    Using a debugger and stepping through, I checked the output of wpd.GetReferenceRelationship(wpd.MainDocumentPart.GetIdOfPart(imagePart)) and it throws a System.Generic.Collections.KeyNotFoundException.
    Can you help?

    Hello,
    This is SQL Database froum. Since your question is related to Office Development, I suggest you post the question in the following froum.
    Word for Developers:
    http://social.msdn.microsoft.com/Forums/office/en-us/home?forum=worddev&filter=alltypes&sort=lastpostdesc
    It is more appropriate and more expert will assist you.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click
    here.
    Fanny Liu
    TechNet Community Support

  • Error with Adobe Acrobat X "error opening the document. The file is damaged and could not recover"

    Good morning,
    I have a problem when generating PDF files with Adobe Acrobat X.
    When I give print a Word document 2003 ... 2007 ... 2010 ... and select a network drive to save the PDF file, I get the following error "error opening the document. Thefile is damaged and not could recover."
    The file is saved on your drive well ... but I always get this error.
    Any ideas???
    Thank you.

    First of all thanks for responding.
    The installed version of Adobe's Adobe OS X and Windows XP machines is thelatest patch level.
    The local system .... works well ... Open Office 2010 ... create a new Word document and save it locally ... and all good.
    The problem is though that same machine ... it enters network (not Windows network. OES2 is a network with Novell network client) ... and to open and create a new document to WORD .... when printing the PDF printer ... select a network drive... and when the document is saved well ... but it shows the error.
    I have an amount of hours lost with this ... I hope you can help me find a solution.
    Thank you very much.

  • Send from an email address without adding the account

    I have a work email and a gmail account that forward to my icoud accout. In my mail app I only have the icloud account added to keep things clean. However, when sending email, I want to be able to send from either my company or my gmail address (not the @icloud.com or @me.com). This was very easy to do on the Mac version of Mail, but I don't see any way to do this on iphone or ipad.
    One work around I thought of was to add the accounts to my app, but then my inbox mail account is doubling up (accounting for the message in the work inbox and my icloud inbox) which is incredibly annoying. My plan was to filter the messages coming into my work/gmail accounts as "read" as soon as they came in. BUT I now can't find any way to add rules/filtering in the ipad mail app.
    Anyone have any insight or other workarounds. your help would be MUCH appreciate.

    Hi mmarenyi
    In short it impossible to send emails from Apple's mail from an account that is not added through settings.
    To provide some advice rather than adding the account due the amount of emails - I would suggest getting the Gmail app from the App store which will allow you to fetch your emails from your iPad without getting them in Apple's mail. If the other work email address is a common one such as: hotmail, gmail, big pond, yahoo ect, see if there is an app to download. Most email companies now have apps on the App store for download. You could if your work email does not have an app simply pick up your emails through safari.
    I am assuming that your iPad is using iOS 7 or later, however these instructions will work for iOS 5 or later.
    To get the Gmail app:
              1.          Go to the App store
              2.          Search for Gmail
              3.          Click on the free button
              4.          Wait for it to download
              5.          Put in your email and password
              6.          Then you will be able to access your gmail account without using Apple's mail
    Enjoy and Many Thanks
    iBenjamin Crowley

  • Is there a way to add a playlist to your itunes library without adding the songs to your library?

    All I want to do is add a playlist full of songs to my itunes so I can use it with djay, I don't want the songs forever in my library or automatically syncing with my ipods.

    No.

  • How to change the text color of a label by using RGB values without changing the background colour?

    xCode interface builder:
    When I try to change the color property of a label's text by using the RGB values, the background color also changes to the same value automatically.
    in other words:
    While setting the RGB values for text colour of labels, the background colour also changes unless we use the sliders.
    How to make sure that only the color of text changes and not the background?

    You can simply do this.
        [labelname setTextColor:[UIColor colorWithRed:38/255.0f green:171/255.0f blue:226/255.0f alpha:1.0f]];

Maybe you are looking for

  • Cannot print PDFs in any application except Adobe

    I upgraded to OS 10.5 recently (and now 10.5.1 on my laptop), and I am no longer able to print PDF files from Preview, nor am I able to produce PDF files from the printer dialog in any program. Printing PDFs in Adobe Reader works fine. Whatever other

  • DW8-Fine white line around images

    DW8 - On some of my images there is a very fine white line around the edge when the site is previewed in the browser. The site has an almost-black background color (181714), and I use the same color in making the image backgrounds (in Photoshop CS),

  • Flash player shows as installed but will not work and is not recognized by anything including adobe

    I hve installed flash player(several times) and it will not work.  programs using it tell me to install it...but it IS..I can see it in my programs list.  I have tried ev everything in adobes suggestions.  none work.  I cannnot acess my Exfintiy or a

  • Why do I have to "choose" the network every time?

    My old Linksys Router died recently so I replaced it with a Time Capsule, which has been largely fine. The only real issue that I have is that I cant find a way to keep my Mac and PC logged in to the network. Every time I open my PowwerBook G4 I have

  • Probleme de rapidité d'acquisition et vitesse de boucle

    bonjour, je souhaite avoir une aide labview a propos d'un probleme de rapidité de boucle et d'acquisition de signal: lorsque je lance mes programmes d'acquisition de signal je me retrouve avec moins d'une boucle d'acquisition du signal pour 2 seconde