Positioning a JoptionPane left or right to the calling Frame

Hello everybody,
i builded a window and if the user made a choise a JOptionpane is started. The problem is this pane is centered in the middle of the main window hiding the information. So do anyone know how to position freely this JOptionpane?
Thanks

how do you mean this? because my code goes like this:
if(a<b){
int r =0;
if(r == JoptionPane.YES_OPTION){
r= Joptionpane.showConfirmDialog(this, etc..., JoptionPane.YES_NO_CANCEL_OPTION)
so how to start from hier the set position? with r or directly with JOptionPane.setLocation()?

Similar Messages

  • How do I move a page to a new location that is offscreen to the left or right on the planning screen

    When I'm in the planning screen mode, even though I have the thumbnails set on their smallest size, my website is so large that the  branches of the hierarchal layout of webpages and their various subpages stretch out to the left and right far distances off the screen. When I try to move one of the little rectangular webpage icons in the hierarchal layout in Plan Screen mode, I can't move it off screen to the left or right to change its position in my website's horizontal menu.  In other words, even at the smallest setting for the icon webpage thumbnails, there's so many icons that they go off page and I can't move a webpage icon to a position that is currently off-screen to the left or right in the menu layout.
    Any ideas how to do that?  Is there a non-graphical way to do it? Thanks!!!

    Your best bet is to reduce the thumbnail size to the smallest, then turn off thumbnails (to speed redraw), then drag in multiple steps, scrolling the Plan view each time. In the upcoming release of Muse (June 17th) you will be able to collapse vertical stacks of pages, which will means your Plan view won't be as wide. If you collapse each stack, you will only see the top level pages, and you won't have to scroll as many times. Or maybe they will all fit. What you really need is autoscroll in Plan view, which we don't currently have.
    Paul Sorrick
    Muse Engineering

  • Why do the sound balance settings change every time i start up my MacBook Pro OSX 10.8.4. I set balance to middle and it reappears way off to the left or right and the volume is at maximum.

    I set the balance and sound levels on my MacBook Pro 10.8.4 but when I start up again the balance has shifted to one channel or the other [left or right] and the volume has become maximum. Does not always happen but frequently does. Any ideas?

    It should remain the way you have adjusted them.  Delete the System Preferences.plist per these instructions:
    https://discussions.apple.com/docs/DOC-4301
    Ciao.

  • Is it possible to flip the multiple choice quiz "radio" button from left to right of the answers?

    Hello forum,
    I am using Captivate version 6.1.0.319 on a Windows 7 desktop PC and would like to know if it is possible to flip the multiple choice quiz "radio" button from left to right of the answers. I am working on a project that uses the "Require Right to Left composer" within the Global Preferences: General settings. The captions has been switched from left to right but the quiz answer radio buttons did not. Any help would be appreciated.
    Thanks, in advance. 

    Hello and welcome to the forum,
    I'm not aware of such a possibility. A workaround could be to create your own MCQ slides, using standard objects and widgets like the radiobuttons widget (there is an enhanced version created by Jim Leichliter) and advanced actions. These articles were written for previous versions, but can give you an idea about the work involved:
    http://blog.lilybiri.com/widgets-and-custom-questions-part-1
    http://blog.lilybiri.com/extended-widgets-for-custom-mcq-and-tf-questi
    Lilybiri

  • How can I write left and right in the same line of a richtextbox?

    I want to write, in the same line, text with a right aligment and other with left aligment. How can I do it?
    thanks

    I want to write, in the same line, text with a right aligment and other with left aligment. How can I do it?
    thanks
    As
    Viorel_ says "Perhaps there are other much easier solutions. For example, create two
    RichTextBoxes with no borders (if you only need two columns of text)" but the real issue would be saving the info in the RichTextBox's (RTB's) RTF or Text to two different RTF or TextFiles. Although I suppose if it was just going to
    a TextFile then you could somehow use a delimited text file so each same line number of each RTB is appended to the same line and delimited. That way you could probably load a split array with each line from the text file splitting on the delimeter per line
    and providing RTB1 with index 0 of the split array and RTB2 with index 1 of the split array. I'm not going to try that.
    This is some leftover code from a long time ago. It has three RTB's. RTB1 is there I suppose because the thread asking for this code wanted it. RTB2 is borderless as well as RTB3. The Aqua control in the top image below is the Panel used to cover RTB2's
    scrollbar. So RTB3's scrollbar is used to scroll both controls.
    I forgot to test if I typed past the scroll position in RTB2 if both would scroll as maybe RTB3 would not since it would not have anything to scroll to I suppose.
    Maybe this code can help or maybe not. The bottom two images are the app running and displaying nothing scrolled in RTB2 and RTB3 then the scroll used in the bottom image.
    Disregard the commented out code in the code below. It was there so I left it there. I suppose you should delete it. Also I didn't set the RTB's so one was left aligned and the other right aligned. I believe the Panel becomes a control in RTB2's controls
    when it is moved to cover RTB2's vertical scrollbar but don't remember although that seems the case since both RTB2 and RTB3 are brought to front so if the Panel was not one of RTB2's controls I would think it would be behind RTB2 and RTB2's vertical scrollbar
    would display but don't remember now. In fact I don't really remember how that part works. :)
    Option Strict On
    Public Class Form1
    Declare Function SendMessage Lib "user32.dll" Alias "SendMessageW" (ByVal hWnd As IntPtr, ByVal msg As Integer, ByVal wParam As Integer, ByRef lParam As Point) As Integer
    Const WM_USER As Integer = &H400
    Const EM_GETSCROLLPOS As Integer = WM_USER + 221
    Const EM_SETSCROLLPOS As Integer = WM_USER + 222
    Dim FixTheProblem As New List(Of String)
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.CenterToScreen()
    Panel1.BackColor = Color.White
    Panel1.BorderStyle = BorderStyle.Fixed3D
    RichTextBox2.BorderStyle = BorderStyle.None
    RichTextBox2.ScrollBars = RichTextBoxScrollBars.Vertical
    RichTextBox3.BorderStyle = BorderStyle.None
    RichTextBox3.ScrollBars = RichTextBoxScrollBars.Vertical
    RichTextBox3.Size = RichTextBox2.Size
    RichTextBox3.Top = RichTextBox2.Top
    RichTextBox3.Left = RichTextBox2.Right - 20
    Panel1.Size = New Size(RichTextBox2.Width * 2 - 16, RichTextBox2.Height + 4)
    Panel1.Left = RichTextBox2.Left - 2
    Panel1.Top = RichTextBox2.Top - 2
    RichTextBox2.BringToFront()
    RichTextBox3.BringToFront()
    FixTheProblem.Add("Curry: £6.50")
    FixTheProblem.Add("Mineral Water: £4.50")
    FixTheProblem.Add("Crisp Packet: £3.60")
    FixTheProblem.Add("Sweat Tea: £2.23")
    FixTheProblem.Add("Motor Oil: £12.50")
    FixTheProblem.Add("Coca Cola: £.75")
    FixTheProblem.Add("Petrol Liter: £3.75")
    FixTheProblem.Add("Shaved Ice: £.50")
    FixTheProblem.Add("Marlboro: £2.20")
    FixTheProblem.Add("Newspaper: £.25")
    FixTheProblem.Add("Spice Pack: £.75")
    FixTheProblem.Add("Salt: £.50")
    FixTheProblem.Add("Pepper: £.30")
    For Each Item In FixTheProblem
    RichTextBox1.AppendText(Item & vbCrLf)
    Next
    RichTextBox1.SelectionStart = 0
    RichTextBox1.ScrollToCaret()
    Dim Fix As String = ""
    For Each Item In FixTheProblem
    Fix += Item.Replace(":", "^:") & vbCrLf
    Next
    Fix = Fix.Replace(vbCrLf, "^>")
    Dim FixSplit() As String = Fix.Split("^"c)
    For i = 0 To FixSplit.Count - 1
    If CBool(i Mod 2 = 0) = True Then
    RichTextBox2.AppendText(FixSplit(i).Replace(">"c, "") & vbCrLf)
    ElseIf CBool(i Mod 2 = 0) = False Then
    RichTextBox3.AppendText(FixSplit(i) & vbCrLf)
    End If
    Next
    End Sub
    Dim RTB2ScrollPoint As Point
    Private Sub RichTextBox2_Vscroll(sender As Object, e As EventArgs) Handles RichTextBox2.VScroll
    Dim RTB2ScrollPoint As Point
    SendMessage(RichTextBox2.Handle, EM_GETSCROLLPOS, 0, RTB2ScrollPoint)
    SendMessage(RichTextBox3.Handle, EM_SETSCROLLPOS, 0, New Point(RTB2ScrollPoint.X, RTB2ScrollPoint.Y))
    'Me.Text = RTB2ScrollPoint.X.ToString & " .. " & RTB2ScrollPoint.Y.ToString
    End Sub
    Private Sub RichTextBox3_Vscroll(sender As Object, e As EventArgs) Handles RichTextBox3.VScroll
    Dim RTB3ScrollPoint As Point
    SendMessage(RichTextBox3.Handle, EM_GETSCROLLPOS, 0, RTB3ScrollPoint)
    SendMessage(RichTextBox2.Handle, EM_SETSCROLLPOS, 0, New Point(RTB3ScrollPoint.X, RTB3ScrollPoint.Y))
    'SendMessage(RichTextBox2.Handle, EM_SETSCROLLPOS, 0, New Point(0, 10))
    End Sub
    End Class
    La vida loca

  • I need to know how to delete downloaded videos and movies from iTunes when the instructions on the support page does not work.  I have swiped the selections from left to right on the phone and nothing happens.

    Hello.
    I need help deleting videos, tv shows, and movies downloaded from itunes.  I have followed the instructions to delete from the macbook, I selected the videos I wanted to delete and right clicked to delete.  Nothing happens.  When I double click on the video it still starts playing.  I also followed the instructions to delete the videos from the iphone by swiping from left to right with nothing happening.  I opened the videos on the ipad and there is no edit selection like in the instructions on the support page. Can you please tell me how to permanently remove this content so it doesn't try to copy from each device when I want to back up the Iphone and Ipad to my macbook.  Thank you.

    Hi Shawninglewood,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    How to delete content you've downloaded from the iTunes Store, App Store, iBooks Store, or Mac App Store
    http://support.apple.com/kb/HT5772
    Cheers,
    - Judy

  • I get noise when I combine left and right from the headphone output.

    I need to combine the left and right channels of a Macbook Pro at the output connector.  When I build the cable to do this, there is significant static noise introduced.  If I break the short between left and right, the noise goes away.
    (I'm doing this to put both channels of audio into a single side of a set of headphones, and I really don't want to buy a mixer.)

    Eddie,
    I just ran a test on my G5 Logic system (Logic 9.02) with an internal RME PCI 8in/8out Audio Card and I get perfect separation bouncing to a stereo audio file using standard panning. Click on one side and a couple of crunchy guitars on the other. Each side is completely separate.
    So, it seems to point to your hardware unless you have some other audio routing that we've missed.
    I'm re-doing my setup so I may try a couple of other tests as I go along.
    pancenter-

  • Why does my Menu Bar is scrolling from left to right when I call it and not stabilizing?

    I have an an XP Windows system and I use Firefox as my default Browser, I suddenly found that my browaer is hit by something that makes the Menu Bar when I try to use it scrolling all menus from left to right so quickly that I can't point to any choice and keep doing this till I end it by mouse, also the information in the Autocomplete are not accessible as they don't show when trying to get them either by mouse or by the down key. I don.t know what to do putting in consideration that I uninstalled firefox and reinstalled it and this did not solve the problem.

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • "Front Left", "Front Right" from the same speak

    I am having an issue I am hoping to get answered. I have Boston Acoustic speakers which I am currently using on a new computer with a SoundBlaster XiFi. I can only hear sound from the left channel (The speaker that plugs INTO the right speaker that plugs into the Subwoofer). When I go to run an diagnostics test, it says :
    Speaker : Front Left... Front Right
    Speaker 2: (Nothing)
    Speaker 3: Rear Left
    Speaker 4: Rear right.
    I know that this is not a problem with the hardware as I can plug these speakers into the computer right next to me & they work fine. I see that this problem crops up very often on these forums, I hope someone can point me in the right direction.
    Thanks

    No jack problem at all. I have also suffered myself some problems with "speaker switching" with the X-Fi. Only a full reinstall of all creative drivers has solved it, at least for me. I have posted it some times here, but I always get silence as a response. A common problem is that front right speaker dissapears when it was working perfectly.
    It's a bug, no matter what Creative says (unfortunately they say nothing), there are a lot of posts regarding this

  • Making "Home" always show first from left to right in the nav

    All of the users in the testing we have done are looking for the "Home" button to be in the upper left (In the non-logged in view)
    How do I make it so the Home button is first and "My communities" second.

    Sorry, my bad. Those two line should go after writeStartTable(); and before the for loop. Also, it is not a good idea to hardcode the my home URL since it could change. You should get the URL in the java/.net UI and generate javascript variables. Something like this. Add NavigationModel navModel = (NavigationModel) owner.GetModel(NavigationModel.STR_MVC_CLASS_NAME);ICPListEntryIterator cpList = navModel.GetMyHome();CListURLTemplateMediator mediator = new CListURLTemplateMediator(owner, cpList);if ( mediator.Next() ) {  String[] urlComp = (String[])mediator.GetEntry()}HTMLScript scriptHome = new HTMLScript(HTMLScript.TYPE_JAVASCRIPT);scriptHome.AddInnerHTMLString(" var gMyHomeLabel = '"+urlComp[CListURLTemplateMediator.TEMPLATEARR_INDEX_LABEL]+"'; \n")scriptHome.AddInnerHTMLString(" var gMyHomeURL = '"+urlComp[CListURLTemplateMediator.TEMPLATEARR_INDEX_URL]+"'; \n")result.AddInnerHTMLElement(scriptHome); to NavTypeJSPortalMenuDropDown.JavaScriptIncludes() before this line:
    // Send down localized string down to js for image alts in dynamic generated html Now you can use call the writeMandatoryTab function with gMyHomeLabel, which will be localized and gMyHomeURL.

  • Probably a simple answer; centered links with floating link descriptions, both left and right of the links?

    Attatched is an image of the requested result. I'm new to Dw so this might be an easy bit of code, but with research I haven't been able to find an answer.
    Ideally, the numbers in the middle are links (centered on the page); and the text is a description of the link which floats to either side of the links, but is not necessarily centered; nor linked.
    I would really appreciate the help of someone more knowledgeable. Thanks in advance.
    The code I'm working on follows the image.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>design communications</title>
    <style type="text/css">
    body,td,th {
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      font-style: normal;
      font-weight: lighter;
      font-size: 10px;
      color: #FB6145;
    body {
      background-color: #FFFFFF;
    .strike {
      text-decoration:line-through;
    .links {
      color: #FB6145;
      text-decoration: none
    a:visited {
      text-decoration: none;
      color: #FFA493;
    a:hover {
      cursor: none;
      text-decoration: none;
    a:active {
      text-decoration: none;
    .back-arrow{
      color: #FB6145;
      text-decoration: none;
      font-size: 14px;
    </style>
    <link rel="shortcut icon" href="images/e_rimoldi_favicon_02.ico" type="image/x-icon" />
    <style type="text/css">
    </style>
    </head>
    <body>
    <p><a href="question mark/prefix_0_0.html">? </a></p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <div class="links">
    <p align="center">| <a href="works_03_01_perspective.html" id="01"
    onmouseover=
    "document.getElementById('02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >01</a> |</p>
    <p align="center">| <a href="works_03_03_plan.html" id="02"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >02</a> |</p>
    <p align="center"> | <a href="works_03_02_section.html" id="03"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >03</a> |</p>
    <p align="center">| <a href="works_03_04_mapping.html" id="04"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('back-arrow').className='links';"
    >04</a> |</p>
    <div class="back-arrow">
    <p align="center"><a href="works index_1.0.html" id="back-arrow"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';"
    >«</a></p>
    </div>
    </body>
    </html>

    hey marty,
    Perhaps this updated code will help clarify. I want the links to be centered on the page. But the link descriptions to float to either side? Does that make sense?
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>design communications</title>
    <style type="text/css">
    body,td,th {
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      font-style: normal;
      font-weight: lighter;
      font-size: 10px;
      color: #FB6145;
    body {
      background-color: #FFFFFF;
    .strike {
      text-decoration:line-through;
    .links {
      color: #FB6145;
      text-decoration: none
    a:visited {
      text-decoration: none;
      color: #FFA493;
    a:hover {
      cursor: none;
      text-decoration: none;
    a:active {
      text-decoration: none;
    .back-arrow{
      color: #FB6145;
      text-decoration: none;
      font-size: 14px;
    </style>
    <link rel="shortcut icon" href="images/e_rimoldi_favicon_02.ico" type="image/x-icon" />
    <style type="text/css">
    </style>
    </head>
    <body>
    <p><a href="question mark/prefix_0_0.html">? </a></p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <div class="links">
    <p align="center">| <a href="works_03_01_perspective.html" id="01"
    onmouseover=
    "document.getElementById('02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >01</a> | meddling</p>
    <p align="center"> kongenshus | <a href="works_03_03_plan.html" id="02"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >02</a> |</p>
    <p align="center"> | <a href="works_03_02_section.html" id="03"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >03</a> | design communications</p>
    <p align="center"> green river | <a href="works_03_04_mapping.html" id="04"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('back-arrow').className='links';"
    >04</a> | utah</p>
    <div class="back-arrow">
    <p align="center"><a href="works index_1.0.html" id="back-arrow"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';"
    >«</a></p>
    </div>
    </body>
    </html>

  • What's that black bar to the right of the last frame of clips?

    That always shows up in Pr, but never in the final video. Is this supposed to resemble some kind of classic physical artifact of some kind?

    If you don't like it, feel free to add your voice to the chorus of fellow users who want an option to turn it off: Adobe - Feature Request/Bug Report Form
    Any one making a  request to have this "Optional"...please ask for it to be OFF by Default. I believe that will reflect the majorities opinion of its value.

  • My screen displays a shadow from left to right, being darker on the left and brighter on the right. Any advice about how to change this would be appreciated.

    My screen from the moment it starts any program appears to be shaded from left to right. The left hand side of the display appears to be darker than the right half of the screen. Can someone please advise what I can do to alter this. Have I pressed something I shouldn,t have? Or is there a problem with my display?
    Any help would be appreciated.
    Many thanks.

    Does not sound too healthy! You should take it to the Genius bar in the Apple store. May need the hardware looked at...
    It's most probably a backlight issue. Take some piccys of it while it isnt working now!!

  • How to toggle the CTI so it moves left to right on timeline rather than stay centered during playback?

    I'm working with Premiere Elements 7, so it's a little older.  In times past, the CTI simply moved left to right on the timeline during playback.  I got used to this for years, and it does have its advantages.
    However, I recently did a system restore and reinstall Elements 7 with an available patch offered via Adobe's website.  Now the CTI stays centered in the middle during playback and the timeline moves from right to left.
    Any way I can toggle this so I can use the original feature?  I've searched all over the internet to found out how to do this and can't find an answer.

    penguinrock
    You are dealing with Timeline Playback Auto-Scrolling Options - No Scroll versus Page Scroll versus Smooth Scroll.
    I wrote all about them in
    ATR Premiere Elements Troubleshooting: PE12/12.1: Timeline Playback Auto-Scrolling
    But to cut to the core of the matter....there is sort of a conflict in what you wrote....
    The default Timeline Playback Auto-Scroll option is Page Scroll for versions 12 through 9 and Smooth Scroll from
    versions 8 to 4.
    Smooth Scroll is the choice where the Timeline Indicator stops in the center of the visible timeline and then has the Work Area Bar and Timeline moving from right to left. You say you want the "original". If so, you have the original.
    If you want Page Scroll or No Scroll, go to Edit Menu/Preferences/General, try each of the 3 choices and decide which one you want.
    I suspect it is the Page Scroll option that you are now seeking.
    Please review and consider and then let us know the outcome.
    Need clarification on anything written, please do not hesitate to ask.
    Thanks.
    ATR

  • Will Apple ever put left and right arrows on the iOS keyboard?

    Sometimes when I want to go back and fix a typing mistake or to copy certain words, it is a hassle to select the intended area. So I think it would be great if there were left and right arrow keys, or something like holding down one of the existing keys and moving to the left and right to move the cursor. I think that the space bar could work for that, maybe something like holding down the shift(up arrow) key and sliding left and right on the space bar.

    http://www.apple.com/feedback/ipad.html

Maybe you are looking for

  • Itunes app wont open on my Iphone !!

    when i click the app it opens and then immeditely crashes. ive tried closing the app, shutting down and restarting my phone .What should i do

  • No thumbnails visible when doing file attach or insert picture from file

    Hi, Running OS X 10.4 (Tiger) on a MacBook Pro, I don't see image thumbnails when doing a file attach (or other similar "browse" dialog). I do see image thumbnails when changing the desktop background (until I go to Choose Folder) but not when doing

  • How to turn off battery percentage on iphone 4 ?

    Hi, Got the new iphone 4 recently. Since the initial set up the battery percentage icon is on. I tried to turn it off through settings- general-usage-battery percentage. But it still shows up. I even rebooted the phone by holding home button and powe

  • Third-Party SNMP Traps on SMC

    Is it possible to receive SNMP Traps from Third-Party applications on SMC(Sun Management Center) If possible, how can this be configured on SMC and how can I import the Third-Party SNMP MIB. Thanks Regards, Rauf Ghafur

  • Rating enigma: library recreated with all playlists but without any rating!

    Dear all, My external HD has crashed, but I got to recuperate all my music files (150 GB). The library files are intact, as they're stored in my internal Mac drive (users/my name/music/itunes folder). I already added all the files from the new drive