Drag AP Element Behavior Problem

I have a draggable ap element (calendardiv) on my page. To my knowledge it is set up correctly. I have created one of these before. For some reason now, when I preview the page in a browser...the ap div location shifts to the right side of the browser when I try to drag the element. As you can see I have a projector screen-type setup where all I want it to do is pull straight down centered in the page. What am I missing so that it stays in the middle rather shifting to the right side when I try to drag it? Code below (areas in bold)...
<!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>Advanced Computers</title>
<style type="text/css">
<!--
body {
    background-color: #333;
    background-image: url(Images/chalkboardbg.png);
    background-repeat: no-repeat;
    background-position: center top;
    font-family: Calibri;
#bannerdiv {
    position:absolute;
    left:50%;
    top:0px;
    width:400px;
    height:200px;
    z-index:1;
    background-image: url(Images/banner.png);
    margin-left: -500px;
#introimgdiv {
    position:absolute;
    left:50%;
    top:0px;
    width:600px;
    height:100px;
    z-index:1;
    background-image: url(Images/introimg.png);
    margin-left: -100px;
#paperdiv {
    position:absolute;
    left:50%;
    top:100px;
    width:300px;
    height:400px;
    z-index:1;
    background-image: url(Images/paper.png);
    margin-left: 200px;
#plannerdiv {
    position:absolute;
    left:50%;
    top:130px;
    width:245px;
    height:330px;
    z-index:3;
    margin-left: 225px;
#tape1div {
    position:absolute;
    left:50%;
    top:80px;
    width:150px;
    height:100px;
    z-index:2;
    background-image: url(Images/tape1.png);
    margin-left: 150px;
#tape2div {
    position:absolute;
    left:50%;
    top:80px;
    width:150px;
    height:100px;
    z-index:2;
    background-image: url(Images/tape2.png);
    margin-left: 400px;
#calendardiv {
    position:absolute;
    left:50%;
    top:-600px;
    width:800px;
    z-index:4;
    margin-left: -400px;
    height: 1050px;
    text-align: center;
#calbtn {
    height: 50px;
    width: 100px;
    visibility: hidden;
    margin-left: 350px;
    margin-right: 350px;
#googlecaldiv {
    height: 598px;
    width: 796px;
    border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -khtml-border-radius: 0px 0px 10px 10px;
    background-color: #FFF;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: #000;
    border-bottom-color: #000;
    border-left-color: #000;
-->
</style>
<script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<script src="SpryAssets/SpryEffects.js" type="text/javascript"></script>
<link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
-->
</style>
<script type="text/javascript">
<!--
function MM_effectAppearFade(targetElement, duration, from, to, toggle)
    Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
function MM_scanStyles(obj, prop) { //v9.0
  var inlineStyle = null; var ccProp = prop; var dash = ccProp.indexOf("-");
  while (dash != -1){ccProp = ccProp.substring(0, dash) + ccProp.substring(dash+1,dash+2).toUpperCase() + ccProp.substring(dash+2); dash = ccProp.indexOf("-");}
  inlineStyle = eval("obj.style." + ccProp);
  if(inlineStyle) return inlineStyle;
  var ss = document.styleSheets;
  for (var x = 0; x < ss.length; x++) { var rules = ss[x].cssRules;
    for (var y = 0; y < rules.length; y++) { var z = rules[y].style;
      if(z[prop] && (rules[y].selectorText == '*[ID"' + obj.id + '"]' || rules[y].selectorText == '#' + obj.id)) {
        return z[prop];
  }  }  }  return "";
function MM_getProp(obj, prop) { //v8.0
  if (!obj) return ("");
  if (prop == "L") return obj.offsetLeft;
  else if (prop == "T") return obj.offsetTop;
  else if (prop == "W") return obj.offsetWidth;
  else if (prop == "H") return obj.offsetHeight;
  else {
    if (typeof(window.getComputedStyle) == "undefined") {
        if (typeof(obj.currentStyle) == "undefined"){
            if (prop == "P") return MM_scanStyles(obj,"position");
        else if (prop == "Z") return MM_scanStyles(obj,"z-index");
        else if (prop == "V") return MM_scanStyles(obj,"visibility");
        } else {
          if (prop == "P") return obj.currentStyle.position;
        else if (prop == "Z") return obj.currentStyle.zIndex;
        else if (prop == "V") return obj.currentStyle.visibility;
    } else {
        if (prop == "P") return window.getComputedStyle(obj,null).getPropertyValue("position");
      else if (prop == "Z") return window.getComputedStyle(obj,null).getPropertyValue("z-index");
      else if (prop == "V") return window.getComputedStyle(obj,null).getPropertyValue("visibility");
function MM_dragLayer(objId,x,hL,hT,hW,hH,toFront,dropBack,cU,cD,cL,cR,targL,targT,tol,dropJS,et,d ragJS) { //v9.01
  //Copyright 2005-2006 Adobe Macromedia Software LLC and its licensors. All rights reserved.
  var i,j,aLayer,retVal,curDrag=null,curLeft,curTop,IE=document.all;
  var NS=(!IE&&document.getElementById); if (!IE && !NS) return false;
  retVal = true; if(IE && event) event.returnValue = true;
  if (MM_dragLayer.arguments.length > 1) {
    curDrag = document.getElementById(objId); if (!curDrag) return false;
    if (!document.allLayers) { document.allLayers = new Array();
      with (document){ if (NS) { var spns = getElementsByTagName("span"); var all = getElementsByTagName("div");
        for (i=0;i<spns.length;i++) if (MM_getProp(spns[i],'P')) allLayers[allLayers.length]=spns[i];}
        for (i=0;i<all.length;i++) {
            if (MM_getProp(all[i],'P')) allLayers[allLayers.length]=all[i];
    curDrag.MM_dragOk=true; curDrag.MM_targL=targL; curDrag.MM_targT=targT;
    curDrag.MM_tol=Math.pow(tol,2); curDrag.MM_hLeft=hL; curDrag.MM_hTop=hT;
    curDrag.MM_hWidth=hW; curDrag.MM_hHeight=hH; curDrag.MM_toFront=toFront;
    curDrag.MM_dropBack=dropBack; curDrag.MM_dropJS=dropJS;
    curDrag.MM_everyTime=et; curDrag.MM_dragJS=dragJS;
    curDrag.MM_oldZ = MM_getProp(curDrag,'Z');
    curLeft = MM_getProp(curDrag,'L');
    if (String(curLeft)=="NaN") curLeft=0; curDrag.MM_startL = curLeft;
    curTop = MM_getProp(curDrag,'T');
    if (String(curTop)=="NaN") curTop=0; curDrag.MM_startT = curTop;
    curDrag.MM_bL=(cL<0)?null:curLeft-cL; curDrag.MM_bT=(cU<0)?null:curTop-cU;
    curDrag.MM_bR=(cR<0)?null:curLeft+cR; curDrag.MM_bB=(cD<0)?null:curTop+cD;
    curDrag.MM_LEFTRIGHT=0; curDrag.MM_UPDOWN=0; curDrag.MM_SNAPPED=false; //use in your JS!
    document.onmousedown = MM_dragLayer; document.onmouseup = MM_dragLayer;
    if (NS) document.captureEvents(Event.MOUSEDOWN|Event.MOUSEUP);
    } else {
    var theEvent = ((NS)?objId.type:event.type);
    if (theEvent == 'mousedown') {
      var mouseX = (NS)?objId.pageX : event.clientX + document.body.scrollLeft;
      var mouseY = (NS)?objId.pageY : event.clientY + document.body.scrollTop;
      var maxDragZ=null; document.MM_maxZ = 0;
      for (i=0; i<document.allLayers.length; i++) { aLayer = document.allLayers[i];
        var aLayerZ = MM_getProp(aLayer,'Z');
        if (aLayerZ > document.MM_maxZ) document.MM_maxZ = aLayerZ;
        var isVisible = (MM_getProp(aLayer,'V')).indexOf('hid') == -1;
        if (aLayer.MM_dragOk != null && isVisible) with (aLayer) {
          var parentL=0; var parentT=0;
          if (NS) { parentLayer = aLayer.parentNode;
            while (parentLayer != null && parentLayer != document && MM_getProp(parentLayer,'P')) {
              parentL += parseInt(MM_getProp(parentLayer,'L')); parentT += parseInt(MM_getProp(parentLayer,'T'));
              parentLayer = parentLayer.parentNode;
              if (parentLayer==document) parentLayer = null;
          } } else if (IE) { parentLayer = aLayer.parentElement;      
            while (parentLayer != null && MM_getProp(parentLayer,'P')) {
              parentL += MM_getProp(parentLayer,'L'); parentT += MM_getProp(parentLayer,'T');
              parentLayer = parentLayer.parentElement; } }
          var tmpX=mouseX-((MM_getProp(aLayer,'L'))+parentL+MM_hLeft);
          var tmpY=mouseY-((MM_getProp(aLayer,'T'))+parentT+MM_hTop);
          if (String(tmpX)=="NaN") tmpX=0; if (String(tmpY)=="NaN") tmpY=0;
          var tmpW = MM_hWidth;  if (tmpW <= 0) tmpW += MM_getProp(aLayer,'W');
          var tmpH = MM_hHeight; if (tmpH <= 0) tmpH += MM_getProp(aLayer,'H');
          if ((0 <= tmpX && tmpX < tmpW && 0 <= tmpY && tmpY < tmpH) && (maxDragZ == null
              || maxDragZ <= aLayerZ)) { curDrag = aLayer; maxDragZ = aLayerZ; } } }
      if (curDrag) {
        document.onmousemove = MM_dragLayer;
        curLeft = MM_getProp(curDrag,'L');
        curTop = MM_getProp(curDrag,'T');
        if (String(curLeft)=="NaN") curLeft=0; if (String(curTop)=="NaN") curTop=0;
        MM_oldX = mouseX - curLeft; MM_oldY = mouseY - curTop;
        document.MM_curDrag = curDrag;  curDrag.MM_SNAPPED=false;
        if(curDrag.MM_toFront) {
          var newZ = parseInt(document.MM_maxZ)+1;
          eval('curDrag.'+('style.')+'zIndex=newZ');
          if (!curDrag.MM_dropBack) document.MM_maxZ++; }
        retVal = false; if(!NS) event.returnValue = false;
    } } else if (theEvent == 'mousemove') {
      if (document.MM_curDrag) with (document.MM_curDrag) {
        var mouseX = (NS)?objId.pageX : event.clientX + document.body.scrollLeft;
        var mouseY = (NS)?objId.pageY : event.clientY + document.body.scrollTop;
        var newLeft = mouseX-MM_oldX; var newTop  = mouseY-MM_oldY;
        if (MM_bL!=null) newLeft = Math.max(newLeft,MM_bL);
        if (MM_bR!=null) newLeft = Math.min(newLeft,MM_bR);
        if (MM_bT!=null) newTop  = Math.max(newTop ,MM_bT);
        if (MM_bB!=null) newTop  = Math.min(newTop ,MM_bB);
        MM_LEFTRIGHT = newLeft-MM_startL; MM_UPDOWN = newTop-MM_startT;
        if (NS){style.left = newLeft + "px"; style.top = newTop + "px";}
        else {style.pixelLeft = newLeft; style.pixelTop = newTop;}
        if (MM_dragJS) eval(MM_dragJS);
        retVal = false; if(!NS) event.returnValue = false;
    } } else if (theEvent == 'mouseup') {
      document.onmousemove = null;
      if (NS) document.releaseEvents(Event.MOUSEMOVE);
      if (NS) document.captureEvents(Event.MOUSEDOWN); //for mac NS
      if (document.MM_curDrag) with (document.MM_curDrag) {
        if (typeof MM_targL =='number' && typeof MM_targT == 'number' &&
            (Math.pow(MM_targL-(MM_getProp(document.MM_curDrag,'L')),2)+
             Math.pow(MM_targT-(MM_getProp(document.MM_curDrag,'T')),2))<=MM_tol) {
          if (NS) {style.left = MM_targL + "px"; style.top = MM_targT + "px";}
          else {style.pixelLeft = MM_targL; style.pixelTop = MM_targT;}
          MM_SNAPPED = true; MM_LEFTRIGHT = MM_startL-MM_targL; MM_UPDOWN = MM_startT-MM_targT; }
        if (MM_everyTime || MM_SNAPPED) eval(MM_dropJS);
        if(MM_dropBack) {style.zIndex = MM_oldZ;}
        retVal = false; if(!NS) event.returnValue = false; }
      document.MM_curDrag = null;
    if (NS) document.routeEvent(objId);
  } return retVal;
//-->
</script>
</head>
<body onload="MM_dragLayer('calendardiv','',375,600,50,400,false,false,0,600,0,0,false,false,0, '',true,'')">
<div id="bannerdiv"></div>
<div id="introimgdiv"></div>
<div id="paperdiv"></div>
<div id="plannerdiv">
Weekly Planner<br />
  <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
      <li class="TabbedPanelsTab" tabindex="0">Monday</li>
      <li class="TabbedPanelsTab" tabindex="0">Tuesday</li>
      <li class="TabbedPanelsTab" tabindex="0">Wednesday</li>
      <li class="TabbedPanelsTab" tabindex="0">Thursday</li>
      <li class="TabbedPanelsTab" tabindex="0">Friday</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
      <div class="TabbedPanelsContent">Monday's Content</div>
      <div class="TabbedPanelsContent">Tuesday's Content</div>
      <div class="TabbedPanelsContent">Wednesday's Content</div>
      <div class="TabbedPanelsContent">Thursday's Content</div>
      <div class="TabbedPanelsContent">Friday's Content</div>
    </div>
  </div>
</div>
<div id="tape1div"></div>
<div id="tape2div"></div>
<div id="calendardiv">
  <div class="googlecaldiv" id="googlecaldiv"></div>
<img src="Assets/screencord.png" width="50" height="400" onmouseout="MM_effectAppearFade('calbtn', 1000, 100, 0, false)" onmouseover="MM_effectAppearFade('calbtn', 1000, 0, 100, false)" /><br />
  <div class="calbtn" id="calbtn"><img src="Images/calendarbtn.png" width="100" height="50" alt="Calendar" /></div>
</div>
<script type="text/javascript">
<!--
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
//-->
</script>
</body>
</html>

hollowayolemiss wrote:
I have a draggable ap element (calendardiv) on my page. To my knowledge it is set up correctly. I have created one of these before. For some reason now, when I preview the page in a browser...the ap div location shifts to the right side of the browser when I try to drag the element. As you can see I have a projector screen-type setup where all I want it to do is pull straight down centered in the page. What am I missing so that it stays in the middle rather shifting to the right side when I try to drag it? Code below (areas in bold)...
The page is doing exactly what it is supposed to be doing.  Dragged absolute positioned divs is not a good way to start out with web design and will only lead you to further problems.  The divs are staying on the page, but they are positioned relative to the page edges. So as resolution changes so does the position of the div, especially since you even have some relative positions based on a percentage width.  If you want something centered on the page, you should first center a relative positioned div with a defined width and a margin attribute set to "margin: 0 auto;".  Then position your content in that and it will always be centered on a page.  This is not possible with absolute positioning.

Similar Messages

  • Help - JEditorPane drag selected text behavior/problem

    Hi All,
    I'm working at adding new functionality to the JEditorPane. Everything was going ok, but I noticed this interesting behavior that hopefully there is a solution to.
    When you select some text in the JEditorPane with the mouse and then drag the selected text to another location, the text moves just fine. However, depeding on when you drag the text, something interesting happens.
    Here is the senerio. While the text is already selected you noticed the cursor blinking.
    (1) If you drag the selected text while the blinking cursor IS visible, the cursor will continue to blink after you drag the text to its destination.
    (2) If you drag the selected text while the blinking cursor IS NOT visible, the cursor will be invisible after you drag the text to its destination.
    So (2) is really the problem. The only way I've been able to get the cursor to start blinking again is to issue a cut, copy or paste method from the JEditorPane object.
    Has anyone else found this problem and maybe a solution to it. I've disabled all the extra stuff I extended on the JEditorPane class, but it didn't seem to make a difference.
    Thanks.
    Justin Circelli

    There are several approaches. You can add FocusListener to the drop target or drag source and put your code in focusGained() or focusLost() accordingly.
    Another way is to return focus to the drag source if DnD failed as you tried. First check whether mouseReleased(0 is invoked. If it's invoked try to put your code into SwingUtilities.invokeLater()
    regards
    Stas

  • "write on" behavior problem

    I’ve drawn shapes many times with the “write on” behavior. All of a sudden, it’s not working. Here’s the problem. “Write On” completes drawing and then reverses a little bit on the last frame. I included frame shots. If anyone can help, I would appreciate it.
    Side note: I know I can do the same thing with key frames. However, I’d rather solve the “write on” behavior problem.

    Ah, nevermind! I think I may have solved the issue myself. It seems if you click on the Group tab to the left of the main timeline as opposed to the clip within the timeline, it allows you to change the group and scale it while also keeping different elements together. Could be helpful for anyone with a similar question.

  • Photoshop Elements 6 Problem

    habe unter "Anzeigen" die Taste:
    Fotos nebeneinander anzeigen und vergleichen - gedrückt und kann diese Funktion nicht mehr rückgänig machen. Es werden bei mir jetzt statt bisher
    18 000 Bilder weit mehr als doppelt so viele angezeigt - stört mich sehr !!!!
    bitte helfen Sie mir !
    D a n k e !!!

    Thema
    Photoshop Elements 6 Problem
    Ingrid237 - 07:34am Jun 10, 2008 Pacific
    habe unter "Anzeigen" die Taste:
    Fotos nebeneinander anzeigen und vergleichen - gedrückt und kann diese Funktion nicht mehr rückgänig machen. Es werden bei mir jetzt statt bisher
    18 000 Bilder weit mehr als doppelt so viele angezeigt - stört mich sehr !!!!
    bitte helfen Sie mir !
    D a n k e !!!

  • Opening Elements 12 problem

    I am running Windows 7. When I tried to access Photoshop Elements12 it looked as though it was starting to open, the icon was going round but then nothing. The same happened with Premiere Elements 12where it opened as far as the opening page but again when Organiser was selected the loading 'bar' rotated and then nothing else happened. I tried Adobe support who tried a variety of solutions including loading Application Manager and logging in under a new user name but that failed also. However I did manage to get a couple of error reports as follows:
    Premiere Elements Organiser 12
      Problem Event Name:                        APPCRASH
      Application Name:                             PhotoshopElementsOrganizer.exe
      Application Version:                           12.0.0.0
      Application Timestamp:                    52251254
      Fault Module Name:                          PhotoshopElementsOrganizer.exe
      Fault Module Version:                        12.0.0.0
      Fault Module Timestamp:                 52251254
      Exception Code:                                  c0000005
      Exception Offset:                                000956fd
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             2057
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:  0a9e372d3b4ad19135b953a78882e789
    Photoshop Elements 12
    Problem signature:
      Problem Event Name:                        APPCRASH
      Application Name:                             Photoshop Elements 12.0.exe
      Application Version:                           12.0.0.0
      Application Timestamp:                    52250ae1
      Fault Module Name:                          Photoshop Elements 12.0.exe
      Fault Module Version:                        12.0.0.0
      Fault Module Timestamp:                 52250ae1
      Exception Code:                                  c0000005
      Exception Offset:                                00053a5b
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             2057
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:  0a9e372d3b4ad19135b953a78882e789
    If anyone can help I'd be very grateful as it is driving me up the wall!!

    Hi kalle-veikka,
    If an organizer is not launching then try the steps mentioned in the given link :- https://forums.adobe.com/thread/1475087
    If the issue is with editor then share the log file, locate the log path from given link :- http://www.google.co.in/url?sa=t&rct=j&q=&esrc=s&source=web&cd=3&cad=rja&uact=8&ved=0CDcQF jAC&url=http%3A%2F%2Fhelpx.ado…
    Sarika

  • Elements 11 problem

    computer notice comes up saying "Display driver has stopped responding but has been recovered............then the editor viewing frame freezes but sound keeps going.............then entire program stops.............once whole software deleted!  PAID to have it retrieved!   Now it reloads but i lose the new work. Frustrating..........................has worked ok for 2 years,although i would like to push the contrast/bright/light effects further..............
    if anyone knows reasonably priced better edit software i would be interested! any thoughts?
    thanks.

    thanks v much ............saw computer guy today and he sent me in the device manager direction but without all the detail u mention............I may forward your email to him..............
    also there was a note from Dell to do a system check up which I did  but then it said overall result-not supported/system tests not successfully completed...........says to shut down and try again but now I can't see where to activate test!(icon is gone)
    also found an Adobe/elements 11 update device and that is currently being processed............
    seems like we may be heading in a good direction...............
    will have a closer read of your email.............
    again.thanks...............
    WEBSITE         www.kimmilesfilms.com      AND    www.innersense.com.au/mif/miles.html
    AND THE BLOG      http//www.kimmilesfilms.blogspot.com/ 
    Date: Mon, 3 Mar 2014 08:02:52 -0800
    From: [email protected]
    To: [email protected]
    Subject: Re: elements 11 problem elements 11 problem
        Re: elements 11 problem
        created by A.T. Romano in Premiere Elements - View the full discussion
    fixmyproblem
    Thanks for the reply and the information that your Premiere Elements 11 is running on Windows 8 (presumed 64 bit) computer.
    Because you come with a display issue, the first line of troubleshooting is targeted at the video card/graphics card that the computer uses.
    This information can be found in the computer under the Device Manager/Display Adapters. And then you tell us what is listed under Display Adapters...you may find one or two names listed. Please report what you find.
    In Windows 8, one way to Display Adapters listing
    a. From the Metro App Screen, type Control Panel in the Search that appears to the right of the screen, and then click on Control Panel in list below.
    b. In Control Panel, click on the header "Hardware and Sound"
    c. Under Device and Printers, click on the Device Manager choice
    d. In the Device Manager, open the Display Adapters category to find your video card/graphics card information.
    There may be a keyboard shortcut to Control Panel (I know it is there in 8.1 64 bit)...Windows Key + X and selecting Control Panel from pop up at right of the screen. You can be in the Desktop App or in the Metro Screen when you do the Windows Key + X.
    Once we know that, we will ask you to go to the web site of the manufacturer of the card and determine if you have the latest version of the card's driver installed.
    If all this is going to be too much for you to handle, then it might be a good idea to consult with the people who installed your Premiere Elements 11 for you.
    We will try to walk you through whatever we can.
    Please let us know how you wish to proceed.
    Thank you.
    ATR
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6174213#6174213
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: elements 11 problem
    To unsubscribe from this thread, please visit the message page at Re: elements 11 problem. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Premiere Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Open project in premiere elements trial problem.

    Unload the trial of photoshop and premiere elementens, the photoshop works correctly, but the premiere .. only the organizer works, when I try to open project or new project the program is closed automatic .....(window xp).gracias! (the proyect save correctly, buy not open after)

    Thank you very much Bill, these is the information of the card, I believe that probably this one expired, your diras ... thank you again!
    NVIDEA GeForce 8600 GP
    Fabricante:.........................NVIDEA
    Tipo de dispositivo:............Adaptadores de pantalla
    Ubicacion:.........................Ranura PCI 16 (Bus PCI 1, dispositivo 0, función 0)
    Version:...........................1.0.0.35
    Proovedor del controlador:NVIDEA
    Fecha del controlador:27-08-2007
    Version del controlador:6.14.11.6230
    Firmante digital:Microsoft Windows Hardware Compatibility Publ
    Date: Thu, 9 Aug 2012 14:06:33 -0600
    From: [email protected]
    To: [email protected]
    Subject: Open project in premiere elements trial problem.
        Re: Open project in premiere elements trial problem.
        created by Bill Hunt in Premiere Elements - View the full discussion
    Can you tell us all about your computer, and especially your computer's graphics card/chip? What is its make/model? What is the version and date of the installed video driver? When PSE runs, but PrE does not, it is usually an issue with the video driver being obsolete. Good luck, Hunt
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4610620#4610620
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4610620#4610620. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Premiere Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Premiere Elements 13 , Problems with new text/titles

    Premiere Elements 13, bisher keine Probleme. Nachdem die Filmlänge etwa 15 Minuten beträgt immer größere Probleme Titel/texte einzugeben. Wartezeiten sind extrem lange oder Programm stürzt ganz ab.

    High ATR,
    Computer running on Widows 7 ,64 Bit System, Service Pack 1, Processor AMD Phenom(tm) X4 945 3.00 Ghz;RAM 8 GB
    Grafikkarte: NVIDIA GeForce 8800 GT
    If the video on the timeline is longer than 10 minutes the problem will be remarkable. The response times adding a title is getting longer(2-15 seconds).
    As the video is now 18 minutes the response time is after each action(resizing of letters or any changes of the text) up to 30 seconds or the program crashes completely.
    Project settings are the following:
    General HD 1080i; 29,97frames/second; Video:1920v 1080 H, 30 fps
    Video: maximale Bittiefe, Dateiformat i-frame only mpeg, Kompressor MPRG i-Frame, Standbilder optimieren
    The video is a mixture  of full HD videos 1920x 1080 .mov and pictures up to 4608x3456 pixels.
    When the program crashes I remarked that the main memory RAM(8Gb) was fully used by the premiere program. Might there be a problem?
    Thank you for your service.
    thomasd
    Von: A.T. Romano 
    Gesendet: Sonntag, 1. Februar 2015 23:55
    An: Thomas Deschler
    Betreff:  Premiere Elements 13 , Problems with new text/titles
    Premiere Elements 13 , Problems with new text/titles
    created by A.T. Romano <https://forums.adobe.com/people/A.T.+Romano>  in Premiere Elements - View the full discussion <https://forums.adobe.com/message/7151822#7151822>

  • Cannot resolve elements 11 problems so must restart. Also must un start program. How to start?

    Cannot resolve elements 11 problems so must restart. Also must un start program. How to start?

    Are these the tool option problems in your other discussion? If so what happened after Resetting the tools? If that didn't help, try selecting Edit> Preferences> General> Reset Preferences on Next Launch and restart PSE.
    What do you mean by 'How to start'? Are you asking how to uninstall? If on Windows there will be an uninstaller in the Control  Panel Add / Remove Programs section.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Drag Layer behavior problem in IE 6

    I have created a simple page with a draggable layer. Works
    fine in FF but if you
    scroll to the bottom of the page in IE the layer is not
    draggable any more. I first noticed this behavior when I created
    layers with DW MX2004, so just to make sure, I dowloaded DW 8,
    installed on a clean Win XP virtual PC, and the problem remains.
    Please look at this example and tell me what I'm missing:
    Example of draggable
    layer

    I have found the culprit, it is this code that DW
    inserts at the top of the page:
    quote:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "http
    ://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    Now, in the first place, I am wondering why dozens of other
    users did not get the same problem, and secondly, what is the
    correct code to place at the top of the page???

  • Aperture 3 and Adobe Photoshop Elements 10 problems.

    I have installed Adobe Photoshop Elements 10, which I have setup as plugin for Aperture 3. In Aperture preferences the photos are exported as 8 bit TIFF 300 DPI, no profile and automatically stack new versions selected in general.
    I right click on selected image (version) in Aperture and select edit with Elements, this create another version of the same photo in Aperture but increasing size from say 5MB to around 40MB.   The Elements programme opens in Elements editor but the selected image is not there, I can only drag it in from Aperture.   I then edit the image, then click save, it open a box save as and to a wierd folder like Uwvo2vg  etc.   I click save, get message saying it will overwrite file of same name, click save  using a unique name.   When I go back to Aperture, the edited file is not there and when I search for the unique name, nothing comes up.

    I had somewhat similar problems running Elements 10 as external editor, but under 10.6.8. The simplest fix is to send .psd's instead of .tiff. You can change that in preferences.
    If you must use .tiff (I do, becaues PTLens doesn't like psd) you have to change the file extension to .tiff in the save dialog. Elements saves as .tif and Aperture saves as .tiff. Notice the number of 'f' at end of extension.
    Here's what was happening to me, which is a little different:
    • when you send to external editor, Aperture saves a .tiff and opens it in in Elements
    • you do your work and close the file
    • Elements saves as .tif, and so doesn't overwrite the Aperture tiff.
    • Aperture doesn't know the .tif exists so it shows you the un-edited .tiff that if made at the beginning
    I get around this at the save dialog in Elements. Basically Elements goes into a Save As kind of dialog, so if I add the extra 'f' at the end, Elements asks if I want to over-write the existing file, and when I say yes the changes show in Aperture.
    If you open Elements and go to 'Recent Files' (or something like that), you can see the .tif and .tiff files together. If you delete the .tiff and add the extra 'f' to the Elements .tif, the changes will show in Aperture.
    What you shouldn't be doing is changing the name of the file in Elements. For the edits to show in Aperture you need to save the file with the same name and change the extension to .tiff. The file that Elements saves must have exactly the same name as the one Aperture made, because that's the file that Aperture knows about.
    If you do a library database repair, Aperture will find these .tifs and add them to the library, but they won't be where they should be. The show up in a recovered file folder at the bottom.
    Note that Elements 8 didn't have this kind of trouble. And note that I'm not running Lion, so some of the behaviors I describe may be different that what Lion users see.

  • Can you drag photos/elements into PSE 9.0 on Mac

    hello, I just switched to a Mac and am using PSE 9.0. Can you drag photos or elements into the project bin? I can't seem to figure it out and it's frustrating me, I could just open my files in my computer on my PC and drag what I wanted in. How do you do this on a Mac or do I have to open each one separately? thanks!! I'm a digi scrapper and it's driving me nuts!!

    You can drag one photo into the workspace (not the project bin) if there's not another photo open, but for some reason in PSE 9 it stops working with additional photos. This is a PSE 9 bug, though, not the usual behavior of previous mac versions.

  • Premiere Elements 12 Problems  ... still quite buggy?

    Hi all,
    I used Premiere Elements 11 up to now. Currently testing Version 12 - which appears to be quite buggy to me... Now I just wanted to make sure that it's not me being too dump to find the correct settings...
    BTW: I'm using a MacBook w/ Retina from 2012 and most current OS X Maverics as well as a freshly updated APE 12 Testversion (...with German Language)...
    1. ...and most anoying one: scrolling in the Timeline left and right on (Apple Magic-)Mouse works now just the other way round than in APE 11 (...which was quite intuitive to me... :-( ) ...I've found some settings for the keyboard, but nothing regarding mouse wheel scroll direction. BTW: is it possible to use up and down scrolling to pan up and down the video-tracks instead of moving back and forth in the timeline (...again).
    2. Most interesting new feature of V 12 is the motion tracking (at least for me):
    a) I can only use motion tracking with those childish graphics and animation. I just want to use it for simple text as the help message suggests should be possible as well. But the button to place texts is disabled when motion tracking is enabled... is there another way to enable motion tracking on a existing text-and/or-graphic-overlay?
    b) I have a lot of videos filmed with a GoPro in upside-down-mode, meaning that I have to rotate the videos by 180 degree in Premiere. Motion tracking appears not to be able to handle that. While objects can be tracked (which is also not too easy as i had to find out) the motion track seems to be way more suitable for the non-rotated video... I've found no way, yet to rotate the track as well (without roating the graphic as well).
    So... unfortunately Version 12 is a bit frustrating up to now... Thanks for your help!
    Losty

    Sorry for your challenges, Losty. I'm having great success with version 12!
    Of course, Mac Retina displays are known for causing problems like the ones you're experiencing. I'd hoped Mac would have fixed this by now.
    You can certainly use your own text, graphic or even a picture-in-picture with Motion Tracking. I demonstrate how in tutorial on the left side of this page. http://Muvipix.com/pe12.php
    As for 2b, I have no idea why you're shooting your videos upside-down, but you certainly are adding an unnecessary level of complexity to your post production. I'd recommend that you first right-side-up your videos in Premiere Elements and then output the finished video using Publish & Share/Computer/AVCHD with the M2T 1920x1080 preset to output the fixed video. You can then use your righted videos in a new project and do all the Motion Tracking you want with it.

  • Photoshop Elements 13 Problem

    All of my photographs have a question mark(?) on them. When I want to sharpen the image I get a message saying "file missing
    . I can't do anything with the photo. How can I rectify this problem. I am a novice when it comes to working with Photoshop Elements 13.

    Hope these links help!
    Reconnect missing files | Photoshop Elements | Windows
    Tips and tricks for Photoshop Elements: Getting back your missing files using Reconnect feature in Elements Organizer
    Regards,
    vaishali

  • Adobe Photoshop Elements 8 Problem

              Ok so here is the problem. I have a windows vista. If that has anything to do with my problem. But the thing is everytime i try to download it i get a report saying i can acess it and it is already installed, but i can not find the file it is under. Could it be a computer error? Help if you can. Im not very good with computers my self so this would help alot. Thank you =)

    Check if there is an entry of Adobe Photoshop Elements 8.0 in your Add and Remove Programs wizard inside Control Panel. If not, it might be that due to some previous attempt PSE is installed on the system partly and for some reason did not rollback properly.
    Look at the below link and try removing the corresponding entries for PSE 8 from the machine, and then try to run the installer with admin user again:
    http://kb2.adobe.com/cps/405/kb405847.html
    Make sure that you are not running any Antivirus (Espscially Norton) while installing PSE. You can resume the protection later once the installation is done successfully.
    Regards,
    Ankush

Maybe you are looking for

  • Error while posting payroll to FI

    Hi Experts, When I run PC00_M99_CIPE - Execute run, I got the following error: Field Profit Ctr is a required field for G/L account CD01 100002 Message no. F5808 Diagnosis The value for field "Profit Ctr" in the interface to Financial Accounting is a

  • Storing Coordinates as integers in a Vector or ArrayList??

    Greetings all, I am trying to store a set of (x,y) coordinates in either a vector or an arraylist but don't really know which one is better or really the proper way to be doing it ... from my understanding firstly these numbers are stored as objects

  • IOS8 Family Sharing Limitations

    I have a really interesting problem, and wonder if anyone might be able to help. In short. We have 4 iOS devices (iPhone x2 for me and my wife, iPad x2 for home/kids - under 12 yrs). All devices used to all use my iCloud/iTunes account. This gives us

  • Append .00 to Calculated Amount of Booking

    When you need users to be able to book multiple seats at one time there is a great tutorial here: /booking-multiple-seats Based on the tutorial above my form works great. However, some users are having trouble submitting the form unless they manually

  • Why my dvd drive on MBPro doesn't recognize blank cd-r and dvd-r?

    Super drive on my MB Pro doesn't recognize blank CD's and DVD's.Both are ejected after 10-15 seconds.It reads all other CD's and DVD's.... That means I cannot burn new CD's and DVD's.Any sugestions?