Issue with autoplay HTML animation

Hi guys, I have some troubles with HTML animation when preview my content on adobe viewer. Maybe you know how to fix this...
My Folio contains 1 atricle with 5 pages. The first page is a static one, the second one - page with animation that should be shown when that page is displayed (autoplay). the third and fourth ones - also auto play animation, the last - static page.
Seems that next page is cached when we preview the page in adobe viewer, so when we navigate directly to the second page that contains animation - the animation on the page is partially played, so we can see only the rest of animation or just the end point of animation. Navigate to the next page  - the same issue. But when we navigate from first page to the third - we can see animation from the beginning.
How this issue can be resolved?
PS: sorry for my English :")

the page is reflecting too slow, when i add the delay, so i've created a button to play animation.  But the other issue is appeared - i have an image that is fade in, and it's 'jump' in the end of animation. the page is reflecting too slow, when i add the delay, so i create a button, when click on the button - animation plays. But the other issue is appeared - i have a image (png) that is fade in, and it's 'jump' in the end of animation. How can I fix this?

Similar Messages

  • Adobe Bridge issue with index.html files

    Hi, I have a perplexing problem.... Three weeks ago, I created a web photo gallery in Bridge. I transferred it to my website via FTP and it worked like a charm. Three days later I created another web gallery transferred it to my website using my ftp and the address of what I uploaded takes me to a blank page. I contacted my web hosting support and was told it looks like an issue with my index.html file. Here is a link to the gallery that is working: www.janieblanchard/com/galleries/prettylights/index.html
    Here is the link to the site that is not working:
    www.janieblanchard.com/galleries/macrogallery/index.html
    Any advice would be so helpful, I've spend too many hours trying different galleries and uploading multiple times.
    Thanks!

    What exact camera make and model?
    What specific, exact version of Adobe Camera Raw (ACR) plug-in?
    What specific, exact versions of Bridge and of Yosemite?
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Font color issue with inserted HTML content in JTextPane (HTMLEditor)

    Hi everyone,
    I have a very serious issue with the HTMLEditor I'm developping. This editor is a little bit special since it is intended to edit blocks of HTML content that are loaded when the editor is initialized.
    You can in fact decide to keep this loaded HTML content or start a new HTML document from scratch. Alright, now my issue is the following :
    When text is loaded, it's properly rendered. I have a functionality which let's you see the HTML code from the HTML document used in the editor, so I can check and see if code is correct, and yes, it's correct.
    The problem is that when I try to change the color attribute of some text on my loaded content, nothing happens ! I don't know what's the matter with this bug, I only have it with the color attribute, with every other attribute everything's fine (font, size, etc.)
    The funny thing is that, after I change another attribute for loaded content, like font family, then changing color attribute funcionnality starts to work again !
    I've also noticed that I don't have any of these problems when I start my HTMLDocument from scratch (when I create a new HTML document and start typing text).
    Another weird thing, is that I have a feed-back feature in my editor which reflects attributes for text over which the caret is positionned. For example, if you put caret over red text, the color combo box displays a red value, you know, just like in MS Word. Well, with my loaded content if I have a red text color and I decide to put it in green, the color combo box displays the green value when I click over text for which I have changed color, but in my JTextPane it's still red !! And when I try to see the HTML code generated nothing has changed, everything is still red !
    There is something really strange here, this means that when I get the attributes of the loaded text from the HTMLDocument, color appears to be green, but when it gets rendered in the JTextPane it's still red and when it gets anlyzed to produce the corresponding HTML code, these changed attributes are not taken into account.
    But the most weird thing above all, is that I don't have this bug everytime, sometimes I start my HTML editor applet and it works fine, and some other times this color issue is bakc there. Is this a known bug for Swing API or not ?
    =============
    This is more or less my technique :
    //I declare a global reference to my HTMLDocument
    HTMLDocument _docHTMLDoc;
    //Create a JTextPane
    JTextPane _tpaEditor = new JTextPane( );
    //Set type content to automatically select HTMLEditorKit
    _tpaEditor.setContentType("text/html");
    //Get a referene to its HTMLEditorKit
    HTMLEditorKit _kitHTMLEditor = (HTMLEditorKit) _tpaEditor.getEditorKit( );
    //I then have a function to create new documents
    void newDocument(){
      _docHTMLDoc = (HTMLDocument) _kitHTMLEditor.createDefaultDocument();
      _tpaEditor.setDocument(_docHTMLDoc);
       //I do other stuff wich are not important to be shown here
    //I then have another function to load content
    void loadContent(){
       //I get content from a HashMap I initialized when I started my applet
       String strContent = (String)_mapInitParameters.get("html_content");
       //I set content for my editor
       _tpaEditor.setText(strContent);
    //Notice.. I have tried many other ways to load this text : via HTMLEditorKit and its insertHTML method, I
    //have also tried to store this content in some reader and make HTMLEditorKit read it... and nothing,
    // I always get the bug
    //To change color it goes like this :
    JComboBox _cboColor = new JComboBox();
    //I correctly initialize this combo with colors
    //then I do something like this
    ActionListener _lst = new ActionListener(){
       public void actionPeformed(ActionEvent e){
          Color colSel = (Color) _cboColor.getSelectedItem();
          MutableAttributeSet mas = new SimpleAttributeSet();
          StyleConstants.setForeground(mas,colSel);
          setAttributeSet(mas);
    _cboColor.addActionListener(_lst);
    //Set Attributes goes something like this
    private void setAttributeSet(javax.swing.text.AttributeSet atrAttributeSet) {       
            //Get current 'End' and 'Start' positions
            int intCurrPosStart = _tpaEditor.getSelectionStart();
            int intCurrPosEnd = _tpaEditor.getSelectionEnd();
            if(intCurrPosStart != intCurrPosEnd){
                //Apply attributes to selection
                _docHTMLDoc.setCharacterAttributes(intCurrPosStart,intCurrPosEnd - intCurrPosStart,atrAttributeSet,false);
            else{
                //No selection : apply attributes to further typed text
                MutableAttributeSet atrInputAttributes = _kitHTMLEditor.getInputAttributes();
                atrInputAttributes.addAttributes(atrAttributeSet);

    hi, friend!
    try this:
    void setAttributeToText(JTextPane pane, int start, int end, Color color) {
    MutableAttributeSet new_att = new SimpleAttributeSet();
    StyleConstants.setForeground(new_att,color);
    HTMLDocument doc=(HTMLDocument)pane.getDocument();
    doc.setCharacterAttributes(start,end,new_att,false);
    It works fine in my Application, hope will work in yours, too.
    good luck.

  • Issue with multiple Edge animations in the same article. Please help!

    We have 3 edge animations in our 3 page article, one in eache page. The first edge animation you view autoplays great, however when you swipe down or up the other animations just wont play. All of them set to autoplay 0.125 with transparent background. It seems that no matter which one you see first, it kills the other two. We tried importing HTML and DPS  from Edge with the same results.
    Thank you in advance!
    al3nai

    I just did a quick test and experienced mixed results. I placed a single edge animation on the first page of a horizontal article, then placed the same edge animation on three pages of the vertical orientation (dual-orientation folio). The edge animation shows up perfectly on the horizontal layout, but only displays on pages 1 and 3 of the vertical orientation. It does not load on page 2.
    I also placed an additional Web Content Overlay on page two connecting to a website which loads fine. The edge animation shows the spinning/loading icon but nothing loads.
    Sorry, not much help here just sharing similar bugs.

  • Issues with RoboHelp HTML Help and IE7

    I attempted to create a basic (one-topic) HTML Help file
    using RoboHelp X5 (5.0.2 update), with the topic tied to the TOC,
    index, and search navigation tools. I attempted to open the CHM on
    a PC running Windows XP / IE7, but it displayed the "page cannot be
    displayed" error.
    I tried to open the CHM file on another PC running Windows
    2000 / IE6, and it worked like a charm.
    Apparently, there is something about IE7 (or Windows XP, but
    I doubt it) that breaks RoboHelp HTML Help files. Does anyone have
    any information about this issue? Thanks!
    - Greg

    Welcome to the forum.
    The problem contrary to your belief originated under Windows
    XP.
    Click
    here for an explanation and the options.

  • Animated GIF files, anyone had issues with the selected animation delay not saving as specified?

    I am working on PSE 9 for Mac and have created my psd file with the layers.
    Selected 'Save for Web' and chose GIF as the file format.
    Ticked 'Animation', then from the bottom right hand corner under 'Animation' I have ticked 'loop' and in the 'delay' drop down selected 2.0 (so 2 seconds).
    When I check the file in 'preview in' web it shows the file flashing faster than 2 seconds a frame. I also checked it by uploading it onto my website and it is flashing faster than 2 seconds.
    I have saved the file several times to check. It appears that even though you are given a choice that is automatically saves the delay at the auto-populated delay speed of 0.2 seconds.
    Thoughts anyone?

    As far as i know, the frame delay has been broken
    for several versions on the mac pse.
    Since version 4 maybe?
    You can comment on this post and hopefully adobe will fix it in pse 10.
    http://feedback.photoshop.com/photoshop_family/topics/photoshop_elements_9_mac_frame_delay _in_save_for_web
    MTSTUNER

  • Issues with writing html coding and how safari interprets it

    Hi,
    I have been having a frustrating 24 hours with my basically brand new iMac.
    I have just started a course in web design and just doing a basic html unit. When I put the following in Textedit it comes up very strangely.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <title> Shifty Sam’s Saleyard</title>
    </head>
    <body bgcolor="blue">
    <h1 align = "center">
    <font color = "red" face = "verdana, arial">Shifty Sam's Saleyard</font>
    </h1>
    </body> </html>
    The h1 isnt centered, isn't in the correct font and comes up as green!
    I have tried using other text editors like the Notepad App in the App Store and Textwrangler with the same result. Then I thought I would try a different browser and downloaded Firefox with the same result.
    The frustrating this is that if I type out this html in Notepad on my Windows machine and open in IE it works perfectly.
    I just did an experiment and emailed the html doc to my windows machine and tried to open in Notepad and it came up very strangely.
    I have looked at other posts and changed around preferences in TextEdit.
    I hope someone can help - this is really doing my head in that I can't even do the most simple task on my brand new computer!
    Thanks

    Because i do
    Seriously, I've programmed all my adult life working in Unix until I switched to OS X.  I've been through the complete range of editors starting with ed to vi to emacs with a bit of teco thrown in.
    When I switched over to OS X I tried using TextEdit, trying to stay with all the native Apple tools and just found it to limiting for programming.
    While I was able to get it to be a plain editor and not throw in things I didn;t want in my files or change things in the files behind my back it never had the 'right feel' or the power I was looking for.
    I think if you're doing text TextEdit is fine but for programming tasks it's to limited. And why would you not want to use the best tool (or at least a better tool) for the job if it will make the job easier?
    No, for the user doing some programming and system work (looking at plist files and such) TextWrangler is the way to go. Good power and expandability but fairly easy to use for a new or casual user.
    regards

  • Issue with looping swf animation - conflicting settings

    I have a captivate project where I use a click box “stop” to inhibit the slide from moving to the next slide. (The click box set to no action, pause until user clicks.)
    This forces the user (using the player control) to click the “forward” button to advance to the next slide. This is by design.
    I have a Flash swf file embedded in one of the slides. This Flash file does not have a stop function. It is meant to continuously play (loop). I also have this Flash file set to loop in the Captivate project file.
    The problem is this…
    The click box “stop” (pause until user clicks) seems to be causing the SWF animation file to stop at the end of the slide. I want it to keep playing.
    Does anyone have any idea as to how to do this? Is it even possible since I am essentially giving conflicting commands?
    I suppose I could embed another SWF file (that would command the Captivate slide to stop) but I am unsure how to script the swf to pause the Captivate project. I could also use an animated gif, but I would like to use a swf file if possible.
    Any ideas?
    TPK

    Hi 1970Skylark,
    I still haven't been able to figure out the mechanism, but I have been able to determine something rather interesting (but mystifying).
    If I take and drop a SWF (set to loop) or animated gif (set to loop infinitely) directly on a Captivate slide, and include a click box "stop" like I usually do, then when the slide timeline reaches the "stop" both types of animations stop.
    However, if I first drop either of those animations and drop them in a PowerPoint slide, then import the slide into the Captivate project, then the animations continually play (even though the slide timeline might be at its end).
    I haven't a clue as to why importing the PowerPoint slide changes the play behaviors of the animation, but it does. The problem with this approach is that I want to keep the file size of the project files down. Importing PowerPoint slides seems to cause some serious file size increases that I want to avoid.
    TPK

  • Issues with dynamic text box formatting

    I'm running into issues with using HTML formatting for a dymanic text field. I know these are quirky and I cannot figure out how to get the formatting proper.
    I have on my stage a dynamic text box called "content_txt" inside of a movie clip instance "content_mc". When it enters the frame, I fade the "content_mc" from alpha 0 to 100 using a timeline animation. In order for this to work, I have to embed the font in my "content_txt" text field. However, the only way I get get the HTML formatting to work is if I do not embed the font.
    The dymanic text field is set to render as HTML. In my actions layer, I set the text:
    this.content_mc.content_txt.htmlText = "<b>Hello world,</b> it is me again."
    In summary:
    1. If I do not embed the font, the alpha fade does not work but the HTML formatting does.
    2. If I embed the font, the alpha fade works but the HTML formatting does not.
    How do I resolve this? It's driving me nuts!

    How do you embed just one style?
    I've tried typing three words in the text field and formatting each (regular, bold, italic) but the text field just defaults to whichever format is first.
    Also, I tried embeding the whole character list and did not have success.

  • Adobe Edge 3 animations issues with webview on Android v4.1.1 and v4.2.1

    I am developing an Android App using webview (using phonegap/cordova v2.8.1 ) . I used Adobe Edge 3 and generated few animations using SVG images and couple of html pages
    Query #1:    Scaling of image is continously increasing with every orientation change
                 On Nexus 5,  Nexus 7 and Nexus 4 (all with Android version v4.4.2)  the Adobe Edge animations work as expected in my App, however there is one issue when ConfigChanges option in Android manifest file is set to  "orientation|screenSize" used in the main activity of my App to allow it to automatically resize this screen/images when screen orientations between portrait and landscape. This works but image size keeps increasing (never reset to original size) every time change the orientation of my Android device from portrait to landscape and vice versa.
    Is there any issue with Adobe Edge based animations w.r.t to automatically resizing based changes to screen orientation on Android ?
    Query #2:  Images(i.e. symbols) are incorrectly loaded/shown and sometime stage itself is not loaded
        On Samsung Tab 2 (v4.1.1) and Samsung S3 (v4.2.1), the same Android App runs fine, however some images are not loaded randomly, sometimes the image  is blank and sometimes incorrect symbols are overlayed onto the stage1 and stage 2 screens.
      Has body faced similar issues while using Adobe Edge generated animations with webview/phonegap based Android applications ? if yes how it was fixed ?
    This Android  App uses only the two html pages (as stage 1 and 2) and then it loads different symbols (i.e svg images) using hide and show , load composition methods to create animations.
    Let me know if there are any Adobe Edge 3 related issues specific to different version of Android  ...in particular  Android v4.0,  v4.1 and v4.2  ..because the same App works fine on Android v4.3 and v4.4
    I suspect it is due to differences and support available in webview implementations in different versions of Android.
    Any help on this is greatly appreciated !
    thanks
    Padua

    Sadly I don't have answers either. I'm not sure what happened but as of the last few days i've been having the same problems. There are also times when my mac mini wont even connect to the base station.
    What I find strange is that my sister has the same airport firmware installed and her machine is unaffected. I'm on hold with apple atm, so we shall see what they can figure out.

  • Export indesign with html animation

    Hello everyone,
    I'm trying to include or link an html animation I've realised with Edge in an Indesign presentation.
    I tried to create a button that links to the html file, and export it as an interactive pdf, but then it will work on my pc only..... do you know how I can solve this issue?
    Ideally I'd like to see the animation within the pdf (now it will open in the browser), but most importantly I need to be able to share the whole package!
    Any solution will be really welcome!
    Many thanks
    M.

    Your best bet would be to host the file on a web server and link to it there. If you don't have access to such space, free hosting isn't that hard to find. Google "free file hosting."

  • Issue with HTML tags visible in Outlook emails

    Hi everyone, I'm having an issue with a website I'm working on.
    On our site, we have a page that generates emails after certain events occur. These are sent to a forwarding address on our mail server, which is then sent to several users on our mail server. These users have their accounts set up in Outlook (one in 2007,
    one in Mac 2011).
    We're are having an issue where these emails are displaying in Outlook with all of the HTML tags in the email visible. One of the users spoke to Microsoft support, and they remoted in and went through their Outlook settings and were not able to find any issues
    there.
    This issue is not global exactly. When one of the users added their email to their iPhone, the email displayed correctly. We added a Gmail account and my work account (which I also access through Outlook) to the forwarding list, and it displayed correctly in
    both. When we view these emails in the server's webmail client, the emails display fine. The issue seems to be with some discrepancy between Outlook and our email server.
    I spoke to our webhost about the issue, and they swore up and down the issue had nothing to do with them, and that it had to be an Outlook issue. I've had several professional web developers analyze the code that creates these emails, and they found nothing
    wrong with it. Something that several of my colleagues and our webhost suggested is that the issue could be with the email headers. This is the header for the email, as viewed through Outlook:
    Return-Path: <[email protected]>
    X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on clubcrown.com
    X-Spam-Level: *
    X-Spam-Status: No, score=1.5 required=7.0 tests=HTML_MESSAGE,MIME_HTML_ONLY,
    NO_DNS_FOR_FROM,NO_RELAYS autolearn=no version=3.3.1
    X-Original-To: [email protected]
    Delivered-To: [email protected]
    Received: by x.com (Postfix, from userid 30)
    id 50F7123D9E; Tue, 11 Feb 2014 14:20:00 -0500 (EST)
    X-Original-To: [email protected]
    Delivered-To: [email protected]
    Received: by x.com (Postfix, from userid 10000)
    id EC28323DA2; Tue, 11 Feb 2014 14:19:58 -0500 (EST)
    To: [email protected]
    Subject: A wholesale order has been placed
    X-PHP-Originating-Script: 10000:thanks.php
    MIME-Version: 1.0
    Any help would be greatly appreciated. Let me know if more information is needed. Thank you.

    Glad to hear that you have found the solution. And thank you for sharing the solution here, it will be helpful to other community members who have same questions.
    Cheers,
    Steve Fan
    TechNet Community Support

  • HTML Coding Issues with Dynamic Sites

    I am trying to create a button using the sliding doors technique and I think I have the correct css, but the issue comes with the HTML.
    Here is the CSS:
    .Button
    /* Sliding right image */
        background: transparent url('../Images/button_right_02.png') no-repeat scroll top right;
    display: block;
    float: left;
    height: 38px;
    margin-right: 6px;
    padding-right: 20px;
    text-decoration: none;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight:bold;
    .button span {
    /* Background left image */
    background: transparent url('../Images/button_left_02.png') no-repeat;
    display: inline;
    line-height: 22px; /* CHANGE THIS VALUE ACCORDING TO BUTTONG HEIGHT */
    padding: 7px 0 5px 18px;
    .button:hover span{
    text-decoration:underline;
    However the HTML is a little bit tricky.  I only get the right side of the image to show up on the button.  Here is the HTML:
    <td colspan=2 ALIGN=center class="button">
           <table BORDER=0  CELLPADDING=3>
    <tr>         
                      <td align=center><input name="Button" type=button class="Button" OnClick=submitScreen(&quot;AccountSummary&quot;) value="Back to Summary"></td>
                </tr>
           </table>
        </td>
    This is what I am ending up with:
    This is what I am trying to get to:
    The latter image I am able to get to with my own HTML that looks like this:
    <body>
    <a class="button" href="button2.css"><span>Account Summary</span></a>
    </body>
    But I need to incorporate that so it works in the above HTML (incorporated with an external database)
    Your help is appreciated.

    Dude I git you ... my template in html is giving me issues also ....
    how come I build it then a moth later it wont allow me to nuild pages from the template???
    also how do I add my picture logo to my account??

  • Display issue with HTML formatted text in report builder

    I am using the FCKeditor in my application to allow endusers
    the ability to create formated text on reports. We curently are
    experiencing 2 issues: 1. If you copy and paste from MS Word
    2003/2007 it will not display the text correclty in the report; 2.
    If you use the FCKeditor toolbar to insert bullets or a numeric
    list it will not align the text correctly on the report. We are
    using Coldfusion 8 with Hotfix 1 and Coldfusion Report Builder's
    lastest build release.
    Has one experiences this same issue with HTML fields not
    printing correctly using the Report Builder? What other HTML
    editors besides FCKeditor might we use?
    Thanks,
    Dan VanWieren

    Can you tell me how to use </td> for each values
    Give me your example report - using before or after report
    Thanks
    MT
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by fdenis:
    Hi Gavin,
    If I understand well, your HTML tags are coded directly in your fields in the database, right? Because if it was not the case, you could have use a format trigger checking for which destination you're generating your report...
    if UPPER(:DESFORMAT) = 'HTML' or
    UPPER(:DESFORMAT) = 'HTMLCSS'
    then
    -- insert your HTML code in the value
    -- of your field. something like...
    newValue := '<B>' | | :YOUR_FIELD | | '</B>
    srw.set_field_char( 0, newValue );
    else
    -- when generating to other format,
    -- you'd have to add the formatting as
    -- you want.
    end if
    return( true );
    Of course, if it's not acceptable to remove the HTML tag from your database fields, you could develop a procedure that would translate your HTML tags to the good formatting (eurk... ;-)
    Good luck... :-)
    Frederic
    <HR></BLOCKQUOTE>
    null

  • An issue with DigitalColor Meter and HTML codes

    First off, I apologize if this is in the wrong area; it seemed to be the one most closely related i could find.
    I've been using the Mac's DigitalColor Meter program for ages now to grab color codes for my web design work. Until recently, it was fine; find the color you need, shift-command copy it, then paste it into the HTML source code as appropriate. Simple as pie.
    Roughly a month or two ago, however, I realized I was having issue with it. I could still copy-and-paste the hex code as normal, but suddenly it wasn't showing up correctly when viewed in soem browser, but fine in others. After a lot of hair-wringing and experimentation, I discovered that (presumably) something had changed with the way DCM copied/pasted its hex code.
    When I paste the code, it is inserting invisible characters after each pair of letters. It took me forever just to figure this out, as they were, well, invisible. I couldn't see them in my text editor, but when I used the arrow keys to move along the hex code as pasted, it would pause appropriately each time I got to those points. A friend of mine looked at the code in his (PC-based) text editor, and clearly saw the extra characters, altho it doesn't show up in any of my mac-based ones.
    What he saw: "#ab cd ef "
    What I see: "#abcdef"
    This is, as best I can tell, a recent development, and I'm not sure what prompted the change? Since different browser are interpreting the 'invisible' characters differently, it's causing me to have to manually type in the hex code after finding it in DCM to ensure no extra characters sneak in. Not a big deal, but annoying nonetheless.
    Any ideas out there as to why this has started happening? Any way to correct it? DCM was a staple of my web-working tools, and it's disheartening to have to handle things in the current way.

    Unfortunately it seems that this issue is a "feature not a bug". In tiger it used to work fine: you could paste into photoshop or a css file and it would work. It got changed in Leopard because Apple engineering decided that it was better coding practice to treat each hex value as "word" thus delineating it with these infuriating invisible characters. If you copy and paste into BBEdit on leopard and tiger machines you will see the difference.
    There might be a way to make an automator action that can strip these characters out when pasting. Another option includes using the less graceful (though you can manipulate the colours further after selecting) built-in color chooser and the HexColorPicker extension to it (google for download). You can write a script and save as an application to run the apple colour chooser as a stand alone.
    Open script editor and type: choose color
    Save as app, add nice icon and that's it.
    Xscope looks a bit overboard for my taste, plus its mo' money! Better invested into Pathfinder or something.

Maybe you are looking for

  • CUCM - 8.6.2

    Hi All - Recently we have installed CUCM - 8.6.2 with PUB and SUB, After the installltion when we checked the DB Replication in CLI where it shows 2 for both PUB and SUB. When i check the GUI, It throws below Error. All necessary services are UP and

  • Touch no longer works with G5/Leopard

    My iTouch has worked GREAT between my G5 and MBPro until I updated the G5 to OS 10.5.4. The MBPro is still running 10.4.11 due to conflicts with some of my audio editing software. I've read the threads about possible conflicts with 3rd party USB/Fire

  • Cascade delete in CMP 1:M relationship

    All, I have 2 CMP entity beans with 1:M relationship and cascade delete option setup. All functions of Add/Mod are working fine. Even cascade delete is getting trigged but not executing properly every time. Out of more than 100 records in the child t

  • Cannot sort the managed metadata values in refinement panel

    1. I created a site column based on the managed metadata type named color. 2. I changed the managed property owstaxIdcolor to refinable:yes. 3. I added the managed property owstaxIdcolor in the refinement Web Part and request it to be sorted by name

  • CS2 Error Opening Illustrator

    "Could not complete your Request because there is not enough memory (RAM)" Cannot "place" pictures in the illustrator program. Students need to be able to scan drawings and place them into illustrator to digitize. Any solutions on how to fix this?