Black color link change to something else

How can I replace the black link to some other link color from the process chains between the Start and the Load data objects? When I use the black links, I would get an error message to say that there are too many processes and not enough background processes: "Too many parallel processes for chosen server".
Can the blank color links be used between the Start and the Load Data objects? I have about 5 to 6 Data Load objects to connect between.

Hi,
The Link connecting Start Process and subsequent Load process will always be Black.
The Other Link colors defines as per the following
Green
A link is displayed in green if the event is triggered after the process that precedes it has been completed successfully.
Red
A link is displayed in red if the event is to be triggered when the process that precedes it has been completed with errors.
Gray(link with Both Red and Green Circles)
A link is displayed gray if the event is to be triggered after the process that precedes it was successful or not. When such a link originates from a process, only such links can originate from this process. Refer also here to Documentation for Possible Links.
Black
A link is displayed black when the event is triggered after the preceding process was completed and the system cannot tell whether the process was successful or not.
<b>You can change the Color by removing the Link(right click on link and remove) and again while connecting you will get all the Three Options(green, red, Grey(red and green) Except Black color)</b>
Hope this helps,
Sudhakar.

Similar Messages

  • How can I make multi-colored links change their rollover or hover color?

    I have made links with seperate colors using css, but the links with new colors have no hover property. I want these links to change color when the cursor hovers over them the same way the other links on my page do. I have tried making a new css rule for <hover> and tried writing the property into the css code but to no effect. I have searched the web and this forum for an answer and found notheing that works. Does anyone know how to give links with multiple colors a hover property that will make them change color? All of my other links change color as defined in the page properties, but the links with new color rules don't change color anymore. This is probably pretty basic. I'm new to DW, using CS6. If anyone can provide a step by step and show where the code should be inserted, this would be very helpful. Thank you in advance!

    Basic HTML5 Layout with Multi-colored menu.
    Copy & paste the code below into a new, blank document.  SaveAs test.html.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <!--[if IE]>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <![endif]-->
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    body {
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 62.50%;
        width: 900px;
        /**with width, this is centered**/
        margin: 20px auto;
        padding: 0;
        background: #CCC099;
        box-shadow: 3px 3px 12px #333;
        border-radius: 12px;
    /**TEXT LINKS**/
    a {
        text-decoration: none;
        font-weight: bold;
        color: #F63
    a:visited { color: #F93 }
    a:hover, a:active, a:focus { text-decoration: underline }
    header {
        margin: 0;
        padding: 0;
        min-height: 100px;
        border-radius: 12px 12px 0 0;
        color: #FFF;
        background: url(http://lorempixel.com/output/abstract-q-c-1056-100-7.jpg) no-repeat;
    /* Multi-colored Horizontal Drop-Menu */
    nav {
        float: right;
        padding: 4px;
        text-align: center;
        background: rgba(0,0,0,0.3)
    nav ul {
        margin: 0;
        padding: 0
    nav li {
        list-style: none;
        font-size: 12px;
        float: left;
        text-align: center;
    /**top level menu**/
    nav li a {
        display: block;
        text-decoration: none;
        margin-right: 0; /* space between links */
        width: 10em; /* adjust as needed or use auto */
        padding: 8px;
        font-weight: bold;
        line-height: 1.50em;
        border-top: none;
        color: #000;
    /**alternating background colors**/
    nav li:nth-child(odd) > a { background: #CAD3D3 }
    nav li:nth-child(even) > a { background: #FFCCCC }
    /**top menu style on mouse over**/
    nav li:hover > a {
        color: #FFF;
        background: #033D53;
    /**sub-menu**/
    nav li ul {
        display: none;
        text-align: center;
        margin: 0;
        padding: 0 1em;
        background: none;
    /**sub-menu, help for older IE**/
    nav li:hover ul, nav li.hover ul {
        display: block;
        position: absolute;
        padding: 0;
    nav li:hover li, nav li.hover li { float: none; }
    /**drop-menu style**/
    nav li:hover li a, nav li.hover li a {
        width: 10em; /* adjust width as needed or use auto */
        margin-top: 0;
    /**drop-menu style on mouse over**/
    nav li li a:hover {
        background: #D3E1B7;
        color: #004A43;
    /* Clear floated elements at the end*/
    nav:after {
        display: table;
        content: '';
        clear: both;
    /**END DROP-MENUS STYLES**/
    article {
        background: #FFC;
        padding: 3%;
        font-size: 125%;
    /**3-COLUMNS**/
    section {
        float: left;
        width: 33.33%;
        padding: 1%;
        background: #EAEAEA;
        min-height: 250px;
    /**alternating background-colors**/
    section:nth-child(even) { background: #DADADA; }
    footer {
        clear: left;
        color: #FFF;
        background: #033D53;
        font-size: small;
        font-weight: bold;
        text-align: center;
        padding: 1%;
        border-radius: 0 0 12px 12px;
    /**text styles**/
    p {
        margin: 0 0 1.5em 0;
        padding: 0;
        font-size: 1em;
    /**header text**/
    h1 {
        margin: 0;
        padding: 0.5em 1% 0;
    h2 {
        margin: 0;
        padding: 0 1%;
        font-style: oblique
    h3 {
        margin: 0;
        padding: 0;
        font-size: 1.5em;
        color: #09F;
    </style>
    </head>
    <body>
    <header> <h1>Site Name</h1> <h2>Some Pithy Slogan</h2>
    <!--begin top menu-->
    <nav>
    <ul>
    <li><a href="#">ABOUT US &#9660;</a>
    <ul>
    <li><a href="#">Videos</a></li>
    <li><a href="#">Newsletter</a></li>
    </ul>
    </li>
    <li><a href="#">PRODUCTS &#9660;</a>
    <ul>
    <li><a href="#">Broken Glass</a></li>
    <li><a href="#">Mosaic Tiles</a></li>
    <li><a href="#">Adhesives</a></li>
    <li><a href="#">Grout</a></li>
    </ul>
    </li>
    <li><a href="#">ACCESSORIES &#9660;</a>
    <ul>
    <li><a href="#">Gloves</a></li>
    <li><a href="#">Rubber Mallets</a></li>
    <li><a href="#">Sponges</a></li>
    <li><a href="#">Safety Glasses</a></li>
    </ul>
    </li>
    <li><a href="#">CONTACT</a></li>
    </ul>
    </nav>
    <!--end top menu-->
    </header>
    <article>
    <h3>Main Content goes here...</h3>
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi! Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.</p>
    </article>
    <!--3-columns-->
    <section> <h3>Heading 3</h3>
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi! Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.</p>
    <ul>
    <li><a href="#">some link</a></li>
    <li><a href="#">some link</a></li>
    <li><a href="#">some link</a></li>
    </ul>
    </section>
    <section>
    <h3>Heading 3</h3>
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.
    Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.
    Aenean tristique enim ut ante dignissim. </p>
    </section>
    <section>
    <h3>Heading 3</h3>
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis.  Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius.  Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </section>
    <!--end 3-columns-->
    <footer>
    <address>
    Company address . Phone . Fax
    </address>
    <small>&copy; 2014 SiteName. All rights reserved</small>
    <p> </p>
    <p> <a href="http://jigsaw.w3.org/css-validator/check/referer"> <img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
    alt="Valid CSS!"> </a> <img src="http://www.w3.org/html/logo/badge/html5-badge-h-css3-semantics.png" height="31" alt="Valid HTML5"></p>
    </footer>
    </body>
    </html>
    Nancy O.

  • My bookmark icon has changed to something else and I cannot get it back to normal

    When I went to these sites on a cruise it changed the icon to the side of my bookmarks. it now has these odd icons that do not fit what the bookmark links are and I cannot get them back to normal. Any ideas?

    You can use the following add-on to refresh the site icons for your bookmarks.
    * https://addons.mozilla.org/firefox/addon/faviconreloader/
    You can use the following add-on to replace the icons supplied by the sites with your own icons.
    * https://sites.google.com/site/sonthakit/bookmarkfaviconchanger

  • Preserving Black color values when converting color PDF to grayscale

    I opened a full colored PDF document (exported from InDesign using Profile: Euroscale Coated v2) in Photoshop and tried to convert it to grayscale (image > mode > grayscale) and noticed that the black color values changed. text for example that was 100% black in the PDF document became a screen of 91% black.
    is there a way to preserve color values when converting full color PDF documents to grayscale?
    or in other words WHICH is the correct way to convert full color PDF documents or full color InDesign files to grayscale?
    I am using Adobe CS 3, Acrobat 8 Professional, on Mac OS 10.5.5

    Before you open the PDF in Photoshop, set PS's Color Settings to Photoshop 5 Default Spaces. When you open the PDF set the Mode to Grayscale in the Import dialog. Just remember to reset your color settings when you're done.
    Edit: Also, if you want to match black percentages as well as 100% black, set the Photoshop Color Settings to Photoshop 5 Default Spaces with the Gray working space to Dot Gain 20%.

  • How can I change the BlackBerry Link Network Drive mapping from Z: to something else?

    Hello,
    I generally have a mapping to my NFS server on Z:, and my iTunes library has a relative path to Z: for all of my music - the fact that Link is automatically picking Z: as my network sync target for my device does not work for me to sync music, or anything really. I can't figure out how to change this value to something else.
    I found the registry key: \HKEY_CURRENT_USER\Software\Research In Motion\Device Manager\Device Settings\<DEVICENAME>\VolumeMapping with a default blank REG_SZ - can I use this key at all to manually change drive mappings for my device? If so, what is the key/value pair I need and will this mess up any assumptions taken inside the Link software for synching?
    ... Also, I have a Feature Enhancement Request to go along with this issue: Add a "Change drive map letter" button beside the "Turn on wireless connections to my computer" button in Link, and add the same option in the context menu to the 'Device Manager' for the mapping (which currently just says 'Explore').
    Thanks for the help,
     - Jeff

    I do not know a lot about this subject but since Device Manager is not a Device and the BlackBerry Phone is not recognized as a Device in Disk management unless Mass Storage is turned ON it looks as if by design you cannot change the Drive Letter.
    Also if Mass Storage is turned On in the Phone Settings File Manager and BB link will not work but the BB Phone will then be recognized as a Device in Disk Management and the Drive Letter can be changed, this has no effect on the Drive Letters for Device Manager.
    Normally to change the Drive Letter and Paths of a Device once the Device is plugged you would go to Administrative Tools, Computer Management, Disk Management, right click the Device and choose "Change Drive Letter and Paths"
    Changing the Registry or Uninstalling Device Manager but keeping BB Link or looking for a Utility that can change the Drive Letter such as the one that many XP users had called TweakUI (only worked in XP) or changing the Drive Letter for your Network may be the only way.

  • When creating a fillable form and saving it as a pdf, the default color of the data fields is a light blue. How do I change the color to something else that will copy better, e.g. a light yellow?

    When creating a fillable form and saving it as a pdf, the default color of the data fields is a light blue. How do I change the color to something else that will copy better, e.g. a light yellow?

    It's probably the fields highlight color of the application, which you can change via Edit - Preferences - Forms.

  • How do you change the "read more ..." in the Blog page to something else?

    I'd like to change the "read more ..." in the Blog page to say something more relevant to my site. How can this be done?
    I searched the forums and found an earlier response to this question, but I don't quite understand it:
    Find index.xml.gz file (open: Macintosh HD ->
    Applications -> iWeb -> Contents -> Resources -> e.g.
    English.lproj -> Templates -> Blog -> e.g. White
    Blog.webtemplate -> index.xml.gz).
    Open file and edit it in TextEdit. Replace all "read
    more..." with your own text. Delete index.xml.gz file.
    I'm a little confused by this reply. To open the index.xml.gz file within the app, do you navigate there with Terminal.app, unzip it, edit the file with Text Edit, then re-gzip it?
    Second, why do you delete index.xml.gz afterwards?
    And third, will this need to be redone each time iWeb is upgraded?
    Has anyone tried this and know if this is the correct way to change the words, or is there some other way?

    This tedious process actually edits the template xml file within the iWeb application, so that it becomes the default with the template. I haven't done this before, so I'm the wrong person to advise on this.
    I tend to like to do things that are on a simpler scale. You can always make a text box with an opaque background color that matches the blog template background. Then type something else into that text box, like "click here to see more of me" Then position this text box over the standard "read more" and link the text to the blog entry.
    The downside....you'll have to do this (at least position the text box and change the link) each time you add an entry.

  • Is it possible change path /apex to something else

    Hi,
    Is it possible change default path /apex to something else when using Apex listener?
    Regards,
    Jari

    Hi,
    When I remove policy for Apex listener I can see this
    SEVERE: Error listenerStart
    Aug 23, 2011 10:12:40 AM org.apache.catalina.core.StandardContext start
    SEVERE: Context [/htmldb] startup failed due to previous errors
    Aug 23, 2011 10:12:40 AM oracle.jdbc.driver.OracleDriver registerMBeans
    WARNING: Error while registering Oracle JDBC Diagnosability MBean.
    java.security.AccessControlException: access denied (javax.management.MBeanServerPermission createMBeanServer)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:374)
         at java.security.AccessController.checkPermission(AccessController.java:546)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.management.ManagementFactory.getPlatformMBeanServer(ManagementFactory.java:500)
         at oracle.jdbc.driver.OracleDriver.registerMBeans(OracleDriver.java:320)
         at oracle.jdbc.driver.OracleDriver$1.run(OracleDriver.java:199)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.jdbc.driver.OracleDriver.<clinit>(OracleDriver.java:195)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at sun.misc.Service$LazyIterator.next(Service.java:271)
         at java.sql.DriverService.run(DriverManager.java:664)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.sql.DriverManager.loadInitialDrivers(DriverManager.java:506)
         at java.sql.DriverManager.initialize(DriverManager.java:612)
         at java.sql.DriverManager.getDrivers(DriverManager.java:356)
         at org.apache.catalina.loader.WebappClassLoader.clearReferences(WebappClassLoader.java:1581)
         at org.apache.catalina.loader.WebappClassLoader.stop(WebappClassLoader.java:1499)
         at org.apache.catalina.loader.WebappLoader.stop(WebappLoader.java:734)
         at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4398)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4246)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
         at org.apache.catalina.core.ContainerBase.access$0(ContainerBase.java:744)
         at org.apache.catalina.core.ContainerBase$PrivilegedAddChild.run(ContainerBase.java:144)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:738)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:544)
         at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:825)
         at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:714)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:490)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1022)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:448)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.commons.daemon.support.DaemonLoader.start(DaemonLoader.java:177)But I'm not sure about does my logging work ok. See below link about Ubuntu 8.04 and Tomcat 5.5 logs
    http://serverfault.com/questions/73626/missing-logs-tomcat-5-5-ubuntu-8-04
    Regards,
    Jari
    Edited by: jarola on Aug 23, 2011 10:48 AM
    I did find this also from /var/log/tomcat5.5/localhost-XXXX-XX-XX.log
    Aug 23, 2011 10:12:40 AM org.apache.catalina.core.StandardContext listenerStart
    SEVERE: Exception sending context initialized event to listener instance of class oracle.dbtools.rt.web.SCListener
    java.security.AccessControlException: access denied (java.util.PropertyPermission apex.home read)
            at java.security.AccessControlContext.checkPermission(AccessControlContext.java:374)
            at java.security.AccessController.checkPermission(AccessController.java:546)
            at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
            at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1285)
            at java.lang.System.getProperty(System.java:650)
            at oracle.dbtools.apex.config.ApexConfigFile.choose(ApexConfigFile.java:53)
            at oracle.dbtools.apex.config.ApexConfig.init(ApexConfig.java:154)
            at oracle.dbtools.rt.web.SCListener.contextInitialized(SCListener.java:33)
            at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3764)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:4216)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
            at org.apache.catalina.core.ContainerBase.access$0(ContainerBase.java:744)
            at org.apache.catalina.core.ContainerBase$PrivilegedAddChild.run(ContainerBase.java:144)
            at java.security.AccessController.doPrivileged(Native Method)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:738)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:544)
            at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:825)
            at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:714)
            at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:490)
            at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
            at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
            at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
            at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1022)
            at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
            at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
            at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
            at org.apache.catalina.core.StandardService.start(StandardService.java:448)
            at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
            at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.apache.commons.daemon.support.DaemonLoader.start(DaemonLoader.java:177)

  • When I am in firefox and I go to google and click on a link, it pops up as something else randomly. The only way it works is by coping the link into address bar

    When I am in firefox and I go to google and click on a link, it pops up as something else randomly. The only way it works is by coping the link into address bar. I thought it might be google so I went to bing and it did the same thing. it will not go to the link but instead change to livesearchnow or ihavenet.com
    It is really a pain as I search google ALOT. So please someone help. I reset firefox once and even reinstalled it once as well as updated it once. Nothing works.

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Visited links change color.

    Visited links change color (to something pretty similar to
    the page background :(
    Even though in the page properties all the states of links
    (Color, Rollover, Visited, and Active) are set to the same color -
    yellow.
    It is an upper part of a frame-set, but when I open it in a
    browser or in DW by it self (without a frame-set), it still does
    the same changing to that uncolled color. I really don't know what
    to do with it.
    Please help.
    Anna

    The decision to use frames should be based on a) your site's
    needs, and b)
    your willingness to accept the potential problems that frames
    can create for
    you as developer and maintainer of the site and for your
    visitors as casual
    users of the site.
    I am down on frames because I believe that they create many
    more problems
    than they solve.
    Judging from the posts here, and the kinds of problems that
    are described,
    the kind of person most likely to elect to use frames is also
    the kind of
    person most likely ill-prepared fo solve the ensuing problems
    when they
    arise. If you feel a) that you understand the problems and b)
    that you are
    prepared to handle them when they occur, and c) that you have
    a need to use
    frames, then by all means use them.
    As far as I know, the most comprehensive discussions of
    frames and their
    potential problems can be found on these two links -
    http://apptools.com/rants/framesevil.php
    http://www.tjkdesign.com/articles/frames/
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Anna2257" <[email protected]> wrote in
    message
    news:fmdm37$6mj$[email protected]..
    > Visited links change color (to something pretty similar
    to the page
    > background
    > :(
    > Even though in the page properties all the states of
    links (Color,
    > Rollover,
    > Visited, and Active) are set to the same color - yellow.
    > It is an upper part of a frame-set, but when I open it
    in a browser or in
    > DW
    > by it self (without a frame-set), it still does the same
    changing to that
    > uncolled color. I really don't know what to do with it.
    > Please help.
    > Anna
    >

  • Change the Black Color to BufferedImage?...or change size later of created?

    Cordial Greetings...
    I want to change the black color of BufferedImage later of Created and change the size too?
    Can I to
    Sorry, There are several questions about BufferedImage...
    As I can put in a Panel (or Canvas) a BufferedImage?
    Thank you....

    joseluisbz.hotmail wrote:
    I want to change the black color of BufferedImage later of CreatedThat is not as easy as it sounds. Perhaps this link can help you.
    [http://helpdesk.objects.com.au/java/changing-the-colormodel-of-a-bufferedimage|http://helpdesk.objects.com.au/java/changing-the-colormodel-of-a-bufferedimage]
    and change the size too?That is not specific enough. "Change the size" - what will happen to the image itself? Will the image be stretched to the new size? Do you want to keep the original size add empty space around it?
    Sorry, There are several questions about BufferedImage...
    As I can put in a Panel (or Canvas) a BufferedImage?That at least is easy. Add a JLabel with as content an ImageIcon that holds your BufferedImage.

  • How can I change the Microsoft Office Click to Run from drive letter 'Q' to something else?

    How can I change the Microsoft Office Click to Run from drive letter 'Q' to something else?
    We have a legacy app that used drive letter 'Q' already, now the newer machines are coming in with 'Q' preassigned to Microsoft Office Click to Run, and it is causing problems.  There has to be a way to change the drive letter assignment to some
    other letter besides 'Q' 

    Hi,
    Office that is delivered by Click-to-Run is installed on the Q drive, this cannot be changed.
    To work around this problem, uninstall the Click-to-Run version of Office and then install with the traditional MSI-based installation.
    To switch to using an MSI-based Office edition, you can learn something useful from this link below:
    http://office.microsoft.com/en-us/excel-help/click-to-run-switch-to-using-an-msi-based-office-edition-HA101850538.aspx
    Regards,
    Melon Chen
    TechNet Community Support

  • My iphone 5c screen went out and its just a black screen ive tryed a hard reset and nothing still when i plug the charger in it dings and ive hooked it to itunes and restored it still nun do i need to buy a new screen or is something else wrong?

    My iphone 5c screen went out and its just a black screen ive tryed a hard reset and nothing still when i plug the charger in it dings every few secs and ive hooked it to itunes and restored it still nun do i need to buy a new screen or is something else wrong?

    If your iPod Touch, iPhone, or iPad is Broken
    Apple does not fix iDevices. Instead, they exchange yours for a refurbished or new replacement depending upon the age of your device and refurbished inventories. On rare occasions when there are no longer refurbished units for your older model, they may replace it with the next newer model.
    ATTN: Beginning July 2013 Apple Stores are now equipped to do screen repairs/replacements in-house on iPhone 5 and 5C. In some cases while you wait. According to Apple this is the beginning of equipping Apple Stores with the resources needed to do most repairs for iPhones, iPads, and iPod Touches that would not require major replacements. Later in the year the services may be extended as Apple Stores become equipped and staffed with the proper repair expertise. So, if you need a screen repaired or a broken screen replaced or have your stuck Home button fixed, call your local Apple Store to see if they are now doing these in-house.
    You may take your device to an Apple retailer for help or you may call Customer Service and arrange to send your device to Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes international calling numbers.
    You will find respective repair costs in the appropriate link:
    iPod Service Support and Costs
    iPhone Service Support and Costs
    iPad Service Support and Costs
    There are third-party firms that do repairs on iDevices, and there are places where you can order parts to DIY if you feel up to the task:
    1. iResq or Google for others.
    2. Buy and replace screen yourself: iFixit

  • How do I change/save the default font in mail from helvetica to something else?

    How do I change/save the default font in mail from helvetica to something else?

    Mail > Preferences > Fonts & Colors > Messages font:
    Click the "Select" button next to "Helvetica 13" textbox.
    Select your choice from the window that opens up.

  • I want to switch my user id with my rescue email address, how can i change my rescue email address to something else to free that up?

    i want to switch my user id with my rescue email address, how can i change my rescue email address to something else to free that up?

    Hi EllaBella0902,
    Welcome to the Support Communities!
    The information below may be able to answer your questions about how to change your rescue email address:
    Manage your Apple ID primary, rescue, alternate, and notification email addresses
    http://support.apple.com/kb/HT5620?viewlocale=en_US
    Before you make any changes, you may want to review the information in the Frequently Asked Questions section of this article:
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    This article explains how to update the information in the various services that use the Apple ID if you change it:
    Apple ID: What to do after you change your Apple ID
    http://support.apple.com/kb/HT5796?viewlocale=en_US&locale=en_US
    Cheers,
    - Judy

Maybe you are looking for

  • Problem verifying xml signature

    We have a problem with verifying XML Signatures which are part of a SOAP message. Thanks a lot for helping! Hope my problem is understandable - otherwise ask. We use the following enviroment: Java6 Axis 2 V1.2 with XML Beans Step 1: The Java 6 XML Si

  • Having problem with javax packages

    i had problem with compiling my program which is java servlet, and it is complaining that it does exist javax servlet * package , how can i solve this problem?

  • Graphical representation for ME1P

    Hi I need to create a line graph between date and price of a material using transaction ME1P. For this i need to add a button on the application toolbar (PF Status) for choosing graphical representation and then display the result as a graph. Are the

  • Can't activate iphone 5 ios7 connected to another apple id

    can't activate iphone 5 ios7 connected to another apple id (Old apple id was not mine)

  • Material availability check not consider the MMBE stock correctly

    Dear Experts, Thanks for your continuous support. I have one clarification ,at the time of process order raised COR1 - Click Material availability check after that massage had come in all material check available , but system wise some of the Bill of