Align bullets next to image....

I have an image with text next to it, http://mac.ysu.edu/test/MAC/microsoftpage.html i want to know how to align the bullets with the text, when i put the bullet it, it puts it at the bottom of the image to the left, its where the other bullets are just lower than the text pretty much as low as the picture is.  any help would be appreciated

Hi,
in this general way as I understand your question so I want to offer you a general solution first, here's the link:
http://www.smartwebby.com/web_site_design/bullets.asp,
it is worthwhile to work through this script.
Hans-Guenter

Similar Messages

  • What values are stored in the alignment region of an image and how can they be set?

    I am calling a number of C++ functions with different variable sized LabView images at rates in excess of 20 images per second. I need to tell the C++ code developer what values to expect in the alignment region of the image. Right now I am creating an image with a zero border that is 32 byte aligned, so there is no alignment region and everything works fine.
    I would like to move to using normal LabView images, as it saves sereval steps and allows me to use a combination of LabView and C++ operations. I do not want to re-write all the C++ functions to be aware of the LabView alignment and border areas. I just want the alignment area and border area to be zero and process them like they were part of the image.
    I can set the border region to zero using Fill Image but I am not clear as to what the values will be in the alignment region, or if I can set them. Does Fill Image also fill the alignment region? Since the C++ code is being developed on a system without LabView, and I do not have the means to debug it on my LabView system, it is tricky to know what is in this region.
    In the ideal world, I would like it to be zero or to be able to set it to zero.
    Thanks in advance.
    Andrew

    Hi Andrew,
    The function IMAQ Fill Image allows you to set the border and all or part of your image to a certain pixel value that you define. One of the inputs to Fill Image is "Image Mask" which you can use to specify which pixels in your original image will be modified. This help document describes the Fill Image VI in detail and can provide some good information for you.
    Essentially, the locations of any non-zero pixels in your Image Mask are where the new pixel value will be set in your original Image. Does that make sense? So if you know where your alignment region is then you can use an image mask with Fill Image to set the alignment region and the border to zero. If you don't use an Image Mask, the Fill Image VI will assign the new pixel value to the entire original image. 
    Regards,
    Daniel H.
    Customer Education Product Support Engineer
    National Instruments
    Certified LabVIEW Developer

  • Internet Explorer's forward/backward for next/previous image

    In addition to right/left arrow to move to next/previous image I would like LR team to add this keyboard shortcut:
    Use Internet Explorer's forward for next image.
    Use Internet Explorer's backward for previous image.
    Here is the reason. I have ViewSonic mouse with five buttons. Extra two buttons I use for forward/backward command within Internet Explorer. It would be nice if the same two extra buttons I could use in LR.
    At the moment I have the two extra buttons programmed to function as right/left arrow. That allows me to use them to go next/previous image in LR. In order to use them as a forward/backward command within IE I have to press Alt key.
    It would be nice if LR team could add IE forward/backward to the list of keyboard shortcuts.
    Best regards,
    Ivan Kmecko

    This is a function of the mouse driver...you should be able to configure settings based on the current application so LR and IE can use the same keys but it'll mean different things in each app.

  • I want to call dynamically next 12 images by function on next button...

    my script is ........
    import mx.transitions.Tween;
    import mx.transitions.Zoom.*;
    import caurina.transitions.*;
    var myGalleryXML = new XML();
    myGalleryXML.ignoreWhite = true;
    myGalleryXML.load("gallery24.xml");
    myGalleryXML.onLoad = function() {
        _root.gallery_x = myGalleryXML.firstChild.attributes.gallery_x=100;
        _root.gallery_y = myGalleryXML.firstChild.attributes.gallery_y;
        _root.gallery_width = myGalleryXML.firstChild.attributes.gallery_width;
        _root.gallery_height = myGalleryXML.firstChild.attributes.gallery_height;
        _root.myImages = myGalleryXML.firstChild.childNodes;
        _root.myImagesTotal = myImages.length;
        _root.thumb_height = myGalleryXML.firstChild.attributes.thumb_height;
        _root.thumb_width = myGalleryXML.firstChild.attributes.thumb_width;
        _root.full_x = myGalleryXML.firstChild.attributes.full_x;
        _root.full_y = myGalleryXML.firstChild.attributes.full_y;
        callThumbs();
    function callThumbs() {           
        _root.createEmptyMovieClip("wall",_root.getNextHighestDepth());
        wall._x = _root.gallery_x=0;
        wall._y = _root.gallery_y=230;
    wall.addEventListener(MouseEvent.CLICK);
        var clipLoader = new MovieClipLoader();
        var preloader = new Object();
        clipLoader.addListener(preloader);
               /*myImagesTotal*/
    for (i=0; i<6; i++) {
            thumbURL = myImages[i].attributes.thumb_url;
            myThumb_mc = wall.createEmptyMovieClip(i, wall.getNextHighestDepth());
            myThumb_mc._x = _root.thumb_height*i;
            myThumb_mc._x = _root.thumb_position=-3260+i*765;
            clipLoader.loadClip("shop/"+thumbURL,myThumb_mc);
            preloader.onLoadStart = function(target) {
                target.createTextField("my_txt",target.getNextHighestDepth(),0,0,10,10);
                target.my_txt.selectable = false;
            preloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
                target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
            preloader.onLoadComplete = function(target) {
                new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
                target.my_txt.removeTextField();
                target.onRelease = function() {
                    callFullImage(this._name);
                target.onRollOver = function() {
                    this._alpha = 100;
                target.onRollOut = function() {
                    this._alpha = 100;
    for (i=6; i<12; i++) {
            thumbURL = myImages[i].attributes.thumb_url;
            myThumb_mc = wall.createEmptyMovieClip(i, wall.getNextHighestDepth());
            myThumb_mc._x = _root.thumb_height*i;
            myThumb_mc._x = _root.thumb_position=-7367+i*765;
            myThumb_mc._y = _root.thumb_position=180;
            clipLoader.loadClip("banner/"+thumbURL,myThumb_mc);
            preloader.onLoadStart = function(target) {
                target.createTextField("my_txt",target.getNextHighestDepth(),0,0,10,10);
                target.my_txt.selectable = false;
            preloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
                target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
            preloader.onLoadComplete = function(target) {
                new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
                target.my_txt.removeTextField();
                target.onRelease = function() {
                callFullImage(this._name);
                target.onRollOver = function() {
                    this._alpha = 100;
                target.onRollOut = function() {
                    this._alpha = 100;
    function callFullImage(myNumber) {
        myURL = myImages[myNumber].attributes.full_url;
        myTitle = myImages[myNumber].attributes.title;
        _root.createEmptyMovieClip("ajit",_root.getNextHighestDepth());
        ajit._x = _root.full_x=130;
        ajit._y = _root.full_y=32;
        /*by forum*/
        _root.onEnterFrame = function() {
       wall._alpha = 0;
       if(_root._currentframe==2)
          wall._alpha = 100;
    this.gotoAndStop(21);
        var fullClipLoader = new MovieClipLoader("ajit");
        var fullPreloader = new Object();
        fullClipLoader.addListener(fullPreloader);
        fullPreloader.onLoadStart = function(target) {
            target.createTextField("my_txt",ajit.getNextHighestDepth(),0,0,400,20);
            target.my_txt.selectable = false;
        fullPreloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
            target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
        fullPreloader.onLoadComplete = function(target) {
            new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
            target.my_txt.text = myTitle;
        fullClipLoader.loadClip("full_images/"+myURL,ajit);
    /*function for call next 12 images*/
    var gapX:Number=5;
    var nextX:Number = 13;
    var loadNum:Number=13;
    var preloader:Object={};
    var clipLoader:MovieClipLoader=new MovieClipLoader();
    clipLoader.addListener(preloader);
    function loadnextF(){
        thumbURL = myImages[loadNum].attributes.thumb_url;
            myThumb_mc = wall.createEmptyMovieClip(loadNum, wall.getNextHighestDepth())
    myThumb_mc._alpha=0;
            clipLoader.loadClip("shop/"+thumbURL,myThumb_mc);
            preloader.onLoadStart = function(target) {
                target.createTextField("my_txt",target.getNextHighestDepth(),0,0,10,10);
                target.my_txt.selectable = false;
            preloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
                target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
            preloader.onLoadComplete = function(target) {
    target._x = nextX;
    nextX += target._width+gapX;
    loadNum++;
    if(loadNum<12){
    loadnextF();
    } else {
    // all images loaded.  do whatever.
                new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
                target.my_txt.removeTextField();
                target.onRelease = function() {
                    callFullImage(this._name);
                target.onRollOver = function() {
                    this._alpha = 100;
                target.onRollOut = function() {
                    this._alpha = 100;

    This appears to be the same issue as your other post, just less meaningful information.  Please don't post twice for the same problem.

  • Cursor keys do not properly change to next/previous image

    Since a few days, one of my two Lightroom-computers shows a permanent, quite annoying bug, regarding the curser left/right key:
    It happens in loupe view:
    When I press the cursor-right key, Lightroom doesn't change to the next image
    Instead, it doesn't stop changing to the next image before it reaches the end of the folder .
    Correspondingly with cursor-left, which takes me always to the first image in of the folder...
    Browsing in loupe view is nearly impossible, just the mousewheel still allows to change to the next/previous image.
    This happens for all sets, catalogues, folders, etc. If I have selection, then it takes me to the first/last image of the selection, nothing in between possible.
    Any advice, what went wrong with my system? Everything was smooth a few weeks ago, and everything works fine on my other computer, which should just behave the same...
    Thanks for any hints!
    Harald

    After hours of testing, I identified the reason:
    The problem was raised by the service "skdaemon.exe".
    It's meant to be a keyboard enhancing utility, which was preinstalled (und later updated) on this computer.
    After deactivation (from autostart), LR works fine again, and I didn't notice any missing keyboard functions yet.
    Maybe, this helps someone else in getting around that problem, and thanks for the support.
    Harald

  • Problem with aligning buttons with background image.

    Dear all,
    Just an introduction, I am a newbie to dreamweaver and currently hopelessly lost in solving some problems, and wish to seek your advice and help here.
    I am creating a webpage with a background that shows a line across near the top of the site. I placed an image with the line as background under the page properties. I am placing buttons on that line, so when I mouse over the buttons, the part of the line above the buttons will darken, showing that the button has been selected.
    The image of the buttons include the darken lines and the words. I can align the button lines with the background line when viewing the site in 100%, but on other resolutions or if I zoom in 125% or 150%, the lines are not aligned.
    Here is a picture of my dreamweaver working area, where I manually adjust the buttons to align with the background line. The button lines are already not aligned here, but they look aligned on site in 100%.
    [IMG]http://i1126.photobucket.com/albums/l614/artbox11/pic1.jpg[/IMG]
    Here are how the lines look at 150%. The arrows show where the button lines are not aligned with the background image line.
    [IMG]http://i1126.photobucket.com/albums/l614/artbox11/pic2.jpg[/IMG]
    Can anyone advise how I can align the button lines with the background image line so that whichever resolution I view the lines will be aligned from side to side? Any tips and advice will be greatly appreciated, as I have been looking around DW for a day now and cannot find out how to fix this.
    Thank you!!

    Dear Murray, thank you for offering to help, much appreciated.
    Here are my codes. I did not write any of the codes though, I just use the design tab and built tables and insert images.
    <!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=iso-8859-1" />
    <title>Metamorfic</title>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <style type="text/css">
    <!--
    body {
    background-image: url(Metamorfic%20Site%20Files/BG.jpg);
    .style3 {font-size: xx-small}
    -->
    </style>
    <script type="text/javascript" src="/jwplayer/jwplayer.js"></script>
    </head>
    <body onload="MM_preloadImages('Metamorfic Site Files/Button - About 2.jpg','Metamorfic Site Files/Button - Contact 2.jpg')">
    <table width="800" border="0" align="center">
      <tr>
        <td> </td>
        <td> </td>
        <td> </td>
      </tr>
      <tr>
        <td height="187"> </td>
        <td> </td>
        <td> </td>
      </tr>
      <tr>
        <td width="116" height="32"> </td>
        <td width="552"> </td>
        <td width="110"> </td>
      </tr>
    </table>
    <table width="1100" height="50" border="0" align="center">
      <tr>
        <td width="1094" height="46"><table width="672" height="34" border="0" align="center">
          <tr>
            <td width="666" height="30" align="center" valign="bottom"><img src="Metamorfic Site Files/Button - About 1.jpg" width="122" height="28" id="Image3" onmouseover="MM_swapImage('Image3','','Metamorfic Site Files/Button - About 2.jpg',1)" onmouseout="MM_swapImgRestore()" /><img src="Metamorfic Site Files/Button - Contact 1.jpg" width="110" height="28" id="Image6" onmouseover="MM_swapImage('Image6','','Metamorfic Site Files/Button - Contact 2.jpg',1)" onmouseout="MM_swapImgRestore()" /></td>
          </tr>
        </table></td>
      </tr>
    </table>
    <table width="800" border="0" align="center">
      <tr>
        <td height="340"> </td>
      </tr>
    </table>
    <table width="800" border="0" align="center">
      <tr>
        <td width="300" align="center" valign="middle"> </td>
        <td width="25" align="center" valign="middle"> </td>
        <td width="25" align="center" valign="middle"> </td>
        <td width="25" align="center" valign="middle"> </td>
        <td width="25" align="center" valign="middle"> </td>
        <td width="25" align="center" valign="middle"> </td>
        <td width="25" align="center" valign="middle"> </td>
        <td width="25" align="center" valign="middle"> </td>
        <td width="25" align="center" valign="middle"> </td>
        <td width="300" align="center" valign="middle"> </td>
      </tr>
    </table>
    <p> </p>
    </body>
    </html>

  • Next Generation Image Compositing

    Some time ago, Adobe has shown at a presentation a new approach called "Next Generation Image Compositing"...
    For automatically extracting and "blending" the Images together...
    What has happenend to this?
    Will this implemented in Photoshop CS6?

    Yes, that's what I mean :-)
    But the Content-aware Move Tool, don't generate alpha-masks to etxract the Object!
    This Tool shown at Adobe MAX, generates Auto-Alpha-Masks, and make the best possible seperation between Foreground and Background to get a good looking Composite (with color matching etc.)...
    But the Content-aware Move Tool is useless, because it make no Separation or Alpha-Masks to blend/stitch Images together...

  • Form next to image

    I am trying to get my form next to my logo image. The form
    will not place correctly next to it but it goes below it.
    http://www.deliberateachievement.com/
    Here is the html.
    <div id="container" class="clearfix">
    <div id="wrapper">
    <p><img src="images/logo10.gif" width="298"
    height="104" />
    <form action="
    http://www.mcssl.com/app/contactsave.asp"
    method="post" name="form1"
    onsubmit="MM_validateForm('Name','','R','Email1','','RisEmail');return
    document.MM_returnValue">
    <input name="merchantid" type="hidden" id="merchantid"
    value="97833">
    <input name="ARThankyouURL" type="hidden"
    id="ARThankyouURL" value="
    http://www.everybodyhatesdebt.com/newsletter-thanks.html">
    Subscribe to our Free Deliberate Achievement
    Newsletter</p><br />
    <input name="copyarresponse" type="hidden"
    id="copyarresponse" value="1">
    <input name="custom" type="hidden" id="custom"
    value="0">
    <input name="defaultar" type="hidden" id="defaultar"
    value="268137">
    <input name="allowmulti" type="hidden" id="allowmulti"
    value="0">
    <input name="visiblefields" type="hidden"
    id="visiblefields" value="Name,Email1">
    <input name="requiredfields" type="hidden"
    id="requiredfields" value="Name,Email">
    <table>
    <tr>
    <td>Name</td>
    <td><input name="Name" type="text" id="Name"
    size="15"></td>
    </tr>
    <tr>
    <td>Email</td>
    <td><input name="Email1" type="text" id="Email1"
    size="15"></td>
    </tr>
    <tr align="center">
    <td colspan="2">
    <input name="cmdSubmit" type="Submit" value="Submit">
    </td>
    </tr>
    </table>
    </form>
    </div>
    <!-- End header -->
    Thanks!

    I have some extras, luckily. 8)
    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
    ==================
    "Ken Binney" <[email protected]> wrote
    in message
    news:[email protected]...
    >I just checked my cartridge and I was alarmed to see that
    I had run out of
    >quotation marks
    > :-)
    >
    >
    >
    >
    >
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Tsk....
    >>
    >> <img style="float:left;" src="images/logo10.gif"
    width="298"
    >> height="104">
    >>
    >>
    >> --
    >> 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
    >> ==================
    >>
    >>
    >> "Ken Binney"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Try this
    >>> <img style= float:left
    src="images/logo10.gif" width="298" height="104">
    >>>
    >>>
    >>>
    >>> "Ehd24" <[email protected]>
    wrote in message
    >>> news:[email protected]...
    >>>>I am trying to get my form next to my logo
    image. The form will not
    >>>>place
    >>>> correctly next to it but it goes below it.
    >>>>
    >>>>
    http://www.deliberateachievement.com/
    >>>>
    >>>> Here is the html.
    >>>>
    >>>> <div id="container" class="clearfix">
    >>>> <div id="wrapper">
    >>>> <p><img src="images/logo10.gif"
    width="298" height="104" />
    >>>>
    >>>> <form action="
    http://www.mcssl.com/app/contactsave.asp"
    >>>> method="post"
    >>>> name="form1"
    >>>>
    onsubmit="MM_validateForm('Name','','R','Email1','','RisEmail');return
    >>>> document.MM_returnValue">
    >>>> <input name="merchantid" type="hidden"
    id="merchantid" value="97833">
    >>>> <input name="ARThankyouURL" type="hidden"
    id="ARThankyouURL"
    >>>> value="
    http://www.everybodyhatesdebt.com/newsletter-thanks.html">
    >>>> Subscribe to our Free Deliberate Achievement
    Newsletter</p><br />
    >>>> <input name="copyarresponse"
    type="hidden" id="copyarresponse"
    >>>> value="1">
    >>>> <input name="custom" type="hidden"
    id="custom" value="0">
    >>>> <input name="defaultar" type="hidden"
    id="defaultar" value="268137">
    >>>> <input name="allowmulti" type="hidden"
    id="allowmulti" value="0">
    >>>> <input name="visiblefields" type="hidden"
    id="visiblefields"
    >>>> value="Name,Email1">
    >>>> <input name="requiredfields"
    type="hidden" id="requiredfields"
    >>>> value="Name,Email">
    >>>>
    >>>> <table>
    >>>> <tr>
    >>>> <td>Name</td>
    >>>> <td><input name="Name" type="text"
    id="Name" size="15"></td>
    >>>> </tr>
    >>>> <tr>
    >>>> <td>Email</td>
    >>>> <td><input name="Email1"
    type="text" id="Email1" size="15"></td>
    >>>> </tr>
    >>>> <tr align="center">
    >>>> <td colspan="2">
    >>>> <input name="cmdSubmit" type="Submit"
    value="Submit">
    >>>> </td>
    >>>> </tr>
    >>>> </table>
    >>>> </form>
    >>>> </div>
    >>>> <!-- End header -->
    >>>>
    >>>> Thanks!
    >>>>
    >>>
    >>>
    >>
    >
    >

  • Need to insert text next to image in popup.

    Hi there. I have picked up a free image wall here:
    http://tympanus.net/codrops/2011/08/30/automatic-image-montage/
    It works great, but now I am messing with it.
    I have managed to get the images, or at least the first one, to open in a popup, great. Trouble is I want to be able to have text next to the image in the popup window. I tried <title> to see if I could do it with a tooltip, which would have been crap, but didn't work anyway. I can't think where to put the text, and how? <h1> didn't work either, it flashed up before the imagewall opened.
    Here is the popup code:
    <!-- starts here--><script type="text/javascript">            function newPopup2(url) {        popupWindow = window.open(        url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes')        }        //]]>        </script><a href=                "JavaScript:newPopup2('images/1.jpg');"><img src="images/1.jpg"></img></a>
    I think I should use a caption of some sort but lord knows how. I think I could make a second image with the text included next to it as a the popup, but this is for a dress hire shop and that would involve photoshopping the second image every time a change was made. I want the text to be editable just in a text editor.
    I would also like to insert a link in the popup.
    Cheers folks

    The problem is that you are opening a .jpg image in the popup.
    <a href="JavaScript:newPopup2('images/1.jpg');"><img src="images/1.jpg">
    While that does work... all you get is an image.
    A better way to do the popup window is to create a new, small HTML Web page that contains your image as well as any text or other content you want. Because it's just a regular HTML page, you can style the text and page layout (including links) with CSS, just as you would any other Web page.
    so then you href would look something like this:
    <a href="JavaScript:newPopup2(my_popup.html)..........
    For working example:
    http://www.worldbarefootcenter.com/
    Scroll to very bottom of page and see multiple popups, each being a small HTML Web page simply displayed in a popup window rather than a new tab. View the source code if you need further info. I'm using a slightly different method to open the popup, but the idea is, use an HTML page rather than just an image.
    Best wishes,
    Adninjastrator

  • HP Color LaserJet CP1515n - Out of alignment, ghosting or blurred image.

    Dear Sir/Madam,
    I hope someone, possibly a member of HP staff is able to provide a solution for a problem with a Color LaserJet CP1515n printer, which has being asked quite a number of times, without a satisfactory solution, other than to replace the rather expensive toner cartridges, even if they are still usable for months after the page count is gone to zero. Where is the sense for the protection of our environment in that, having to replace near full cartridges??? I purchase only original and genuine HP cartridges, but I refuse to discard a near full unit, simply because the counter says so.
    Now to the issue at hand:
    Printer: HP CP1515n, model CC377A
    Firmware: date code 20080813
    Operating system Windows 7 Professional
    Printer used as a shared network printer and runs daily through the calibration routine when switched on.
    Issue present with all connected PC's, also running Windows 7.
    Problem: Currently it is impossible to print pages without a blurred edge on the right hand side of an A4 page. Alignment appears to be correct on the left hand side of the page. Was able to print Diagnostics Pages ( two), which shows a parameter settings matrix from 01 to 27 and A to X and there is also a second page with a large number of squares in colors, which also show the mis-alignment.
    As the "ToolboxFX" program, which is mentioned numerous times in the support pages, is not supported in Windows 7 anymore, the user has to make do with the web interface of the printer, which allows for a range of settings as well. I assume this web interface does not support the adjustment all settings on the printer.
    From the diagnostics page, I assume it might be possible to adjust the parameters set out in the parameters matrix, shown in the middle of the page. I would like to know, how can this be done or at least re-set, as I think these parameters show how askew the image is printing?
    I might be wrong, but I'm not convinced this mis-alignment issue is simply down to the cartridges.
    Looking forward to a reply or any suggestions.
    Thank you very much.

    Thanks for letting me know James_LAG.
    At this point it does look like a hardware issue with the printer. Please call our technical support and inquire about a replacement printer, at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. Contact HP.
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Next / previous image swap WITH larger image popup

    Very simply what I need to do is almost identical to what you
    see here:
    http://www.java-scripts.net/javascripts/Slide-Show-Script.phtml
    (scroll down to the animal pictures)
    When you click "next" and "previous" the images swap through
    a series
    called "img1.gif" "img2.gif" and "img3.gif"
    So far so good. However let us assume there is also a set of
    images called
    "img1_lrg.gif" "img2_lrg.gif" and "img3_lrg.gif" which are
    larger
    versions of those little thumbnails. I need for the
    appropriate associated
    large image to popup in its own window when the thumb is
    clicked.
    Has anyone a lead on something like that?
    Thanks very much.

    On Thu, 28 Sep 2006 17:59:37 +0000 (UTC), [email protected]
    (Clay)
    wrote:
    >Very simply what I need to do is almost identical to what
    you see here:
    >
    >
    http://www.java-scripts.net/javascripts/Slide-Show-Script.phtml
    >
    >(scroll down to the animal pictures)
    >
    >When you click "next" and "previous" the images swap
    through a series
    >called "img1.gif" "img2.gif" and "img3.gif"
    >
    >So far so good. However let us assume there is also a set
    of images called
    >
    >"img1_lrg.gif" "img2_lrg.gif" and "img3_lrg.gif" which
    are larger
    >versions of those little thumbnails. I need for the
    appropriate associated
    >large image to popup in its own window when the thumb is
    clicked.
    >
    >Has anyone a lead on something like that?
    >
    >Thanks very much.
    That sounds simple, where are you stuck? Do you not know how
    to open a
    popup? BTW, the JustSo Picture Window extension would be
    perfect for
    the popups.

  • Aligning Text next to Table in Dreamweaver CS4- Need Help

    Hello,
    I have created a table that will hold photos (1 Column). Just to the right of the table I want to add text (centered) next to each cell (row).  So far I have had no luck figuring it out.
    Can anyone assist me?
    Thanks,
    Stacey Mobley

    I firgured it out.  I just added a column next to it and this allowed me to align the text anyway I wanted.
    Thanks,
    Stacey

  • Align=right tag causes image to not print

    I inserted an image at the beginning of a paragraph. Then, I
    manually added the align=right parameter to the <img src>
    tag. However, now my image won't print when I generate my printed
    documentation layout.

    See Word Issues in this topic.
    http://www.grainge.org/pages/authoring/printing/print_issues.htm

  • Aligning two cross-dissolved images in Canvas

    I have two head-shot photos that are covered by a cross-dissolve. The effect creates sort of a "poor man's" morph between the two faces.
    After rendering the sequence, the overlapped images are easily distinguished in the Canvas at the mid point of the dissolve.
    However, when I move either image in the Motion tab, in order to better align the facial features from each photo, the Canvas images become double images of themselves and it is impossible to line the two up. Re-rendering makes them clear again until, of course, I move either image.
    Is there an easier/better way to reposition images while simultaneously checking their alignment during a cross-dissolve?

    I would try a hand-made cross dissolve. Instead of using the standard transition, in your case you have better control if you move either clip to a different video track (say: clip2 to v2), than drag the right hand of clip1 in v1 by say 0,5 sec to the right, and left hand of clip2 in v2 by 0,5 sec to the left. Now the two clips overlap by 1 sec and using the opacity keyframes you can fade down clip1 and fade up clip2 (1 sec each) to emulate cross dissolve.
    And now you can play with Motion on either clip without need for rendering (if you HW allows it...)
    Piero

  • Xml import with bullet list like images

    Hi!
    I have a xml file with data that i would like to import to indesign. ANd that works great.
    But i have a minor issue. I have a kind of a bullet list something like this:
    my xml looks like this:
    <mytext>
    1 some text
    2 some text
    3 some text
    <mytext/>
    the bullets is pictures (or perhaps numberd bullets if its possible to style them in my XML)
    is there any solution to make this possible?
    <mytext>
    [include my  1 image here] some text
    [include my  2 image here] some text
    [include my  3 image here] some text
    <mytext/>
    I have tried to use CDATA in my xml file and included the path for my images, but the result is that "<image src..." is written as text not as a image..
    PLS help me, before i go nuts!
    /MK

    Your XML is going to need to be formatted something like this:
    <image href="file:///../images/bullet.png"></image>
    <BulletText>Some text here...</BulletText>
    In order to get the images in. The above has the images in a sub-folder of the ID document. There is also a tab between the close image tag and the BulletText tag (which is why I included the screen shot.
    Mike

Maybe you are looking for