Analtic function first window size

Hi
if i use the analtic functin max as
select max(sal) keep (dense_rank last order by empno) from emp;
what will the the window size in this case. what i mean is i dont specify the sliding window in this case what will be the default.
regards
Nick

Since neither PARTITION BY nor GROUP BY clause is
specified, the window size in this case will be
the entire set of data in the emp table.
HTH
isotopeActually, I think the default is unbounded preceeding and current row.
SQL> with t as (select rownum rn from dual connect by level <= 10)
  2  select rn, sum(rn) over (order by rn
  3    range between unbounded preceding and current row) cum_total
  4  from t;
        RN  CUM_TOTAL
         1          1
         2          3
         3          6
         4         10
         5         15
         6         21
         7         28
         8         36
         9         45
        10         55
10 rows selected.
SQL> with t as (select rownum rn from dual connect by level <= 10)
  2  select rn, sum(rn) over (order by rn) cum_total
  3  from t;
        RN  CUM_TOTAL
         1          1
         2          3
         3          6
         4         10
         5         15
         6         21
         7         28
         8         36
         9         45
        10         55
10 rows selected.

Similar Messages

  • Missing zoom function - Zoom image to fit window size?

    Hi
    Can anyone tell me if it's possible to zoom the image so it fits the current document window size? (Not Fit-To-Screen, as this will change the doc window size)
    Thanks
    Steve

    I don't think there is a button per se for this like there is for Fit to Screen, but can use any of the numerous zoom functions to make the document fit inside the document window.

  • Possible to change the window size of a CHM file, when first opened?

    Hi all,
    Anyone knows if this is doable? I know lots of chm files that
    open in different window sizes, suitable for their content. But
    right now when I compile, it opens quite narrow, that I have to
    resize manually.
    Take care,
    Tim

    Hi Tim,
    This is what I have done. In the Project Manager, expand the
    Windows folder and double click the default window for your chm
    file. This will open the window properties screen. There is a
    checkbox that says something like "Remember Window Size" which you
    can turn on. Regenerate your layout and view the resulting chm
    file. It will be small and narrow still, but after you resize it
    any subsequent builds in this layout will default to the size you
    set.
    Hope this helps and if there is a better way please let me
    know!
    Cheers
    darkagn

  • How can I switch off the automatic window size and set the size of the window manually

    I need to open the web-page in a window of a certain size. The javascript function window.resizeTo (w, h) does not work. If I open the window using the window.open ("", "", "width: w, height: h, ..."), there is another problem.
    The hyperlinks that have to be opened in a new tab in the same window or at least in the window of the same size, will open in another tab of the first window from which I called window.open().
    I do not know what it is, bug or as intended, but the normal full-featured window with the right size I cannot get.
    In Russian:
    Мне нужно открыть страницу в окне определенных размеров.
    Из консоли Firebug с помощью javascript пробовал window.resizeTo(w,h) - не работает. Если открывать окно с помощью window.open("", "", "width:w, height:h, ..."), то возникает другая проблема: ссылки, которые должны окрываться в новой вкладке в том же окне или хотя бы в окне того же размера, открываются в другой вкладке первого окна, из которого я выполнял команду window.open(), которое неправильного размера.
    Не знаю, что это. Баг или так задумано. Но открыть нормальное полноценное окно с нужными размерами не получается никак.

    You need an extension if you want to set the window dimensions to a specific value or you need to open a pop-up window with window.open and specify the width and height.<br />
    Otherwise a new window opens with some default dimensions as saved in localstore.rdf and you can't easily adjust the dimensions via JavaScript in that case.

  • Finding out about window size

    Hello
    I'm trying to find out the window size of the browser
    visiting my web site. There is several javascript codes but I'm
    wondering whether there is anything in CF? I checked CFlib and
    unfortunately didn't find anything....
    At the end I would like to have the width and height
    available for further use. My problem (because I'm a rookie) is to
    take this information out from javascript to a CF variable (or
    structure or whatever).... Thats why I prefer not to use javascript
    at all ;-)
    Is there an easy solution?
    Thank you very much

    >
    > Thanks for further inputs.
    >
    Play with this code a bit.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <script type="text/javascript">
    <!--
    function Box(){
    var viewportwidth;
    var viewportheight;
    // the more standards compliant browsers
    (mozilla/netscape/opera/IE7)
    use window.innerWidth and window.innerHeight
    if (typeof window.innerWidth != 'undefined')
    viewportwidth = window.innerWidth,
    viewportheight = window.innerHeight
    // IE6 in standards compliant mode (i.e. with a valid
    doctype as the
    first line in the document)
    else if (typeof document.documentElement != 'undefined'
    && typeof document.documentElement.clientWidth !=
    'undefined' && document.documentElement.clientWidth
    != 0)
    viewportwidth = document.documentElement.clientWidth,
    viewportheight = document.documentElement.clientHeight
    // older versions of IE
    else
    viewportwidth =
    document.getElementsByTagName('body')[0].clientWidth,
    viewportheight =
    document.getElementsByTagName('body')[0].clientHeight
    alert('Your viewport dimension is '+viewportwidth+' x
    '+viewportheight+' pixels');
    document.cookie =
    'windim='+viewportwidth+'|'+viewportheight+';
    expires=Fri, 24 Oct 2008 00:00:00 UTC; path=/';
    //-->
    window.onload = Box();
    </script>
    </head>
    <body>
    <cfoutput>
    <h1>Fun with window sizes</h1>
    Diminsion Cookie
    <cfif structKeyExists(cookie,"windim")>
    <p>Your viewport dimension is
    #listFirst(cookie.windim,'|')# x
    #listLast(cookie.windim,'|')# pixels</p>
    </cfif>
    <p><a href="#cgi.SCRIPT_NAME#">Click here to
    update windows
    diminsion.</a></p>
    </cfoutput>
    </body>
    It is important to note the order of things. When this page
    is first
    ran the JavaScript gets the dimensions and writes the
    cookies.
    When it is run again ColdFusion reads the cookies that from
    the previous
    request and then the client gets it and runs the JavaScript
    again
    updating the cookie.
    I.E. JavaScript is always outputting the current dimensions,
    ColdFusion
    is output the *last* dimensions. Play with this page by
    changing the
    browser size and then clicking on the link.
    If you wanted more immediate feed back replace the
    document.cookie line
    in the javascript with a call to a ajax function that sends a
    request
    immediately to the server.
    It'll have to wait for different day for me to have time to
    whip up an
    example like that.

  • Enlarge Window Size

    I opened the Terminal utility but for some reason the window opened very very small. Off the three color buttons normally in the upper left hand corner of a window (red yellow green), the window is so small only the red button shows. In fact, it is so small, I cannot grab the lower right hand corner to enlarge the window. All new windows open the same way.
    Going to the menu bar of Terminal > Window > Zoom (or Return to Default Size, etc) does not change anything.
    Going to Terminal > Terminal > Window Settings and changing the dimensions does not seem to change anything. What should these dimension settings be by the way?
    How can a window be enlarged in this situation?
    Is there a shortcut key that has the same function as the Green button -- i.e. enlarging a window to its maximum size?

    I had it search for known strings in Permissions (things that I know are in plist files, for instance) and it came up with no responses.
    Trouble is, some plist files use a binary format and the strings are only viewable in a plist Editor.
    So, what is the difference between accounts?
    /Users/YourUserName/Library/Preferences/
    /Users/YourUserName/Library/Preferences/ByHost/
    And some things in ...
    /Library/Preferences/
    /Library/Preferences/SystemConfiguration/
    Where else besides the Terminal plist could information be stored?
    The reason we can delete .plists & have them remade upon rebooting is that there are Defaults stored, sometimes in plists, sometimes other places, sometimes the App has the defaults in it or one of it's files.
    Did you look in...
    /Volumes/TigerOS9/Library/Preferences/ for com.apple.Terminal.plist
    Hey, maybe put a copy there & reboot!?
    As a workaround you might try an Applescript to resize that small one...
    tell application "Terminal"
    activate
    set the bounds of the first window to {100, 0, 480, 320}
    end tell
    See also...
    http://www.macosxhints.com/article.php?story=20080523040419784

  • AP Divs (layers) move when I open my website on different window size.

    First of all, this is my first time trying to make a website.
    I'm doing an assignment for my class and i found it difficult for me to fix. I have spend 4-5 hours researching online but nothing work for me.
    Well,the problem is the AP Divs (layers) move when I open my website on different window size(iphone,ipad).
    The website only look right on 1366 x 786 resolution. Please take a look at my 2 pics below:
    And I don't know how to make the website to fit on the iphone and ipad so that I don't have to scroll down or sroll to the right to view the whole thing.
    Please someone help me!
    The code:
    <!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" />
        <meta name="viewport" content="width=device-width" />
    <title>Boston Green Community College</title>
    <style type="text/css">
    <!--
    body {
        background-color: #3f7244;
        padding: 0;
        color: #8d0101;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 100%;
        line-height: 1.4;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #003702;
        text-decoration: NONE; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #028b66;
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
        width: 960px;
        background-color: #FFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
        background-color: #ADB96E;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
        padding: 0px 0;
    /* ~~ The footer ~~ */
    .footer {
        padding: 10px 0;
        background-color: #CCC49F;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    #apDiv1 {
        position: absolute;
        width: 251px;
        height: 101px;
        z-index: 1;
        left: 871px;
        top: 10px;
    #apDiv2 {
        position: absolute;
        width: 228px;
        height: 60px;
        z-index: 2;
        left: 9px;
        top: 1397px;
    #apDiv3 {
        position: absolute;
        width: 273px;
        height: 198px;
        z-index: 2;
        left: 851px;
        top: 383px;
    #apDiv4 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 3;
        left: 242px;
        top: 120px;
    #apDiv5 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 902px;
        top: 178px;
    #apDiv6 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 857px;
        top: 171px;
    #apDiv7 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 455px;
        top: 547px;
    #apDiv8 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 853px;
        top: 113px;
    #apDiv9 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 5;
        left: 853px;
        top: 246px;
    #apDiv10 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 6;
        left: 513px;
        top: 121px;
    #apDiv11 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 6;
        left: 511px;
        top: 123px;
    -->
    </style></head>
    <body>
    <div class="container">
      <div class="header"><a href="#"><img src="Pictures/34d-1.png" alt="Insert Logo Here" name="Insert_logo" width="619" height="90" id="Insert_logo" style="background-color: #C6D580; display:block;" />
        <div id="apDiv11"><font color="#f4f1f1">
    <script type="text/javascript">
    var d=new Date()
    var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
    document.write(weekday[d.getDay()] + " ")
    document.write(d.getDate() + ". ")
    document.write(monthname[d.getMonth()] + " ")
    document.write(d.getFullYear())
    </script></font>
    </div>
        <div id="apDiv1">
      <!-- Use of this code assumes agreement with the Google Custom Search Terms of Service. -->
      <!-- The terms of service are available at http://www.google.com/cse/docs/tos.html -->
      <form name="cse" id="searchbox_demo" action="http://www.google.com/cse">
      <input type="hidden" name="cref" value="" />
      <input type="hidden" name="ie" value="utf-8" />
      <input type="hidden" name="hl" value="" />
      <input name="q" type="text" size="40" />
      <input type="submit" name="sa" value="Search" />
    </form>
    <script type="text/javascript" src="http://www.google.com/cse/tools/onthefly?form=searchbox_demo&lang="></script>
                                  </div>
                                    </div>
      <div class="content">
        <center><img src="Pictures/DFDF11.png" width="959" height="556" longdesc="Pictures/junior-2-960x.jpg" /></h1></center>
      <!-- end .content --></div>
      <div class="footer">
         <img src="Pictures/RRR1.png" width="202" height="70" />
         <div id="apDiv3">
           <p> </p>
           <p><a href="Job.html">Jobs</a>         </p>
           <p><a href="Art Gallery.html">Art Gallery</a>         </p>
           <p><a href="Contact us.html">Contact Us </a></p>
        </div>
        <div id="apDiv4"><center>
    <P>About</P>
    <a href="visiting.html">visiting</a> | <a href="Map.html">maps </a>| <P><a href="About.html">about BGCC</a></P>
    <P>Academic</P>
    <P><a href="Courses.html">schools+courses</a></P>
    <P>Admissions  </P>
    <P><a href="cost & aid basics.html">cost & aid basics </a>| <a href="Apply now.html">join BGCC</a>
    <P>Studen Life</P>
    <P><a href="Athletics.html">Athletics</a></P>
    <P>Greenforce Education</P>
    <P><a href="Career.html">career center</a></P>
    </center> </div>
         <p><font size="2" color="black">BGCC | 99 GreenField | Boston, MA 02199 |617-0101-1000| TTY 617-0202-9944|</font></p>
        <div id="apDiv9"><a href="Donate.html" target="_blank"><a href="Donate.html"><img src="Pictures/three-green-logo.jpg" width="218" height="99" longdesc="Pictures/three-green-logo.jpg" /></div>
        <div id="apDiv8"><a href="Apply now.html" target="_blank"><a href="Apply now.html">
    <img border="0" src="Pictures/cxgvxdvxgd.jpg" alt="Apply Now" width="218" height="99"></a></div>
      <!-- end .footer --></div>
      <!-- end .container --></div>
    </body>
    </html>

    That's what APDivs do.  This is the single most common problem new people have with web page layouts.  DO NOT use positioning.  You don't need it.  Start over.  Learn to use CSS floats, margins and padding to align elements. 
    Below is a basic HTML5 Layout.  View source in browser to see the code.
    http://www.alt-web.com/sandbox/HTML5-BasicLayout.html
    Nancy O.

  • Window size for day, week, month

    In Tiger you could have a unique window size for the day view, week view, and month view. Is this option gone with Leopard? I liked viewing my day, week, and month in different size windows just by clicking on the buttons and having it go to that view.

    Hi..
    try below code.
      CALL FUNCTION 'FLTP_CHAR_CONVERSION_FROM_SI'
    EXPORTING
    char_unit       = <W_MMPT-ZYKL1>
    decimals        = 0
    exponent        = 0
    fltp_value_si   = <W_MMPT-ZEIEH >
    indicator_value = ‘X’
    masc_symbol     = ' '
    IMPORTING
    char_value      = <res__number_days>.
    regards.
    laxman

  • Creating a site without scroll bar and dependent of window size

    Hi,
    I want to create a site that appears in the browser window without a scrolling bar, so all content is shown in that window and you don't have to scroll down (unless window size is ridicrously small).
    Of course, there are contents that will not fit in the window like long texts but then I want this block of text to have its own scrolling bar so the only thing that scrolls is the text and not the other elements.
    at http://www.artofwalls.com/rosannawalls you can see my attempts.
    In the home page you can see how the background picture always adapts to the size and aspect of the browser window and how the menu keeps its position related to the lower left corner of the window. But if you click in "Biografia" (SEE BELOW) you can see a text that is too long so you have to scroll the screen to read it. What I want is this text appear inside the white transparent box and the height of this box end near the bottom of the window. To read the full text a scroll bar should appear inside this box and this scroll bar should scroll only the text inside the box, just like in the text box I'm writing this post now.
    EDIT: DUE TO A BUG IN MUSE I HAVE ALREADY REPORTED LONG AGO, YOU CAN'T SEE THE PAGE BIOGRAFÍA BECAUSE IT IS EXPORTED AS biografía.html AND THE SERVER DOESN'T RECOGNIZE THE INTERNATIONAL CHARACTER (THE SOLUTION PROPOSED BY ADOBE WAS TO UPLOAD THE SITE TO BUSINESS CATALYST BECAUSE THEIR SERVER HAS NO PROBLEM WITH INTERNATIONAL CHARACTERS, BUT ALMOST ANY OTHER SERVER IN THE WORLD DO)
    SO, TO SEE THE PAGE I'M TALKING ABOUT YOU HAVE TO GO TO http://www.artofwalls.com/rosannawalls/biograf%eda.html
    Another strange side effect is in this page the menu has disappeared completely. If you scroll down all the page you will see the menu is not there.
    Another thing I would like is to adapt the size of the white transparent box to the size of the browser window.
    Here: http://www.margomusic.com/ you can see a page I made in Flash where you can see what I mean with the scrolling text inside the box (just let the intro pass and you will see the text)
    And here: http://www.anemaecore.net is another page that adapts perfectly to the size of the browser window, but also made in Flash and also this site changes the size of the text instead of the size of the text container.
    Any help will be greatly appreciated

    Thanks for the replies. I guess I did not ask the question correctly so I will try to explain it better.
    What if I want to use the FTP client inside of Dreamweaver to just connect to my server. I can connect to the FTP (see image) but how can I drag a folder from my desktop into the server using Dreamweaver?
    I have downloaded a folder and I need to add it to my blog which is only on my server. I do not have a Dreamweaver site. Surely Dreamweaver isn't that archaic that you can't upload a file or folder to a server without having to create a site first. It was so much easier in GoLive.

  • Yosemite: How do I get back from full-screen to original window size?

    Okay, so today I used iPhoto for the first time since I reluctantly upgraded to Yosemite on Friday.
    iPhoto is one of the few apps I often take into full-screen mode, and so obviously I noticed today that they've kindly taken away the full-screen arrows in the top right-hand corner of the window in Yosemite.
    Posting a question about that in Support revealed the 'new improved' way to go full-screen, which is to click on the green traffic light in the top left-hand corner of the window.
    Fair enough, but how do I get my iPhoto window back to the size it was before I went full-screen? I tried clicking the green-button again, but that insists on the window being what I call 'maximised', ie. spread across the entire width of my desktop. I want to snap from full-screen back to the window size I had before going full screen.
    The arrows in the top right-hand corner used to do that perfectly well, but they're not there any more so I'm having to resort to laboriously re-sizing my window each time, which is far from ideal.
    Anyone able to advise me please?

    Do we know if it is iPhoto-specific, or do all app windows behave in this way?
    Actually, I suppose I could find that out for myself...

  • Mail 7.1- Reduce window size in a new email

    I'm having problems reducing the window size when writing a new email. Mail 7.1 does not let me reduce the window size once I introduce a email address.
    Thank you for your help.

    Sorry, I didn't mean maximized in the way the window is fullscreen. I have the window in a normal size 2/3 of the screen - then press CMD+H to hide it. When a mail comes in Mail goes back from hide mode to window mode - very strange. And it is only on emails on my first account. When an email on my MobileMe account arrives it stays hidden in the dock.
    Maybe it is because I installed FlagIt from http://www.tastyapps.com - a little addon to mark emails with colores and flags. Will check this.

  • Quicktime Plugin crashes and Window size not correct when running a course from an LMS (Coursemill)

    I am trying to run a course from an LMS (Coursemill) and a couple issues are occurring.
    First, the quicktime plugin crashes, therefore the mp3 sound of the course does not play. When I reload the page, I get an "Unable to find API adapter" error message and the page won't load.
    Also, the predetermined window size does not work properly and I end up with vertical and horizontal scroll bars which I do not want.
    These issues are of high importance and need a solution ASAP. Please contact me.

    If you haven't already visited the using QuickTime Plugin with Firefox KB article, I would recommend you first start there. If your problem still persists & no solution is found after referencing it just reply back to this response & we will go another route.
    See:
    [[Using the QuickTime plugin with Firefox]]

  • LabVIEW 2010 Window Size/Panel Size Run-Time VI properties - unexpected behavior

    I have used the VI Properties Windows Run-Time Position - Panel Size and VI Properties - Window Size to set the desired display size for use on the application PC.
    A strange thing happens, when I first open the application window, it is smaller than the specified Window Size and Panel Size (both set to 1064 x 728).  However, if I click on a horizontal border the window's vertical size snaps instantly to the 728 pixel value and the horizontal size in unchanged, still smaller than the 1064 value specified.  When I click on a vertical border, the horizontal size changes to the specified value.
    I don't believe this is how these properties were intended to work.  They should open the application in a window sized as specified.  
    Is this a known problem?  Is there a workaround.

    I regret that I cannot post my employers' proprietary code.  I have tried to duplicate the problem with a publicly distributed VI and been unable to do so.  
    I believe now that it is possible my VI was "straddling" two monitors when I made the initial changes.  
    Later compilations were made using different VI properties and do not show this problem.
    I have attached a file showing the relevant VI property settings used in the aberrant VI compilation.
    Attachments:
    vi properties used.JPG ‏58 KB

  • Cannot manually drag window size in 7.0 or now 12.0

    I have been using FF for some time. I seem to have lost the ability to drag the edges of the windows smaller. I also have IE, and can do it there...maybe I'm just confused, and never had the ability to do this in FF. Often, especially when typing in registration keys or serial numbers, I would drag the window up to read the data on the underlying window, if it would not allow copy and paste. Am I missing something?
    XP Pro, SP3, AMD processor.

    Hmm. Maybe. I have Snag-It somewhere.
    It's just that you run the cursor down to the bottom edge of the window, until you get the double arrow, click and drag....you don't get the double arrow.
    You can't click and drag.
    I opened a bunch of windows, found out I can do it on some, but not the first window or the last. In between, I can. When I was dealing with this earlier, I had two windows open, could not do either one.
    Is this a "feature"?
    I searched the options, could find nothing to set to operate this function differently.
    Snag-It won't show the bottom of the screen, and this software doesn't like .bmp files, I guess.
    Tried.

  • Popup window size problem

    Hi,
    For some reason, the popup window link in my Flash website
    opens up a popup which doesn't behave to the window size rules I
    set.
    The website is www.caveataudiens.net , click on the 'music'
    button, and then on the Jukebox button to see as example.
    The Jukebox button has the following actionscript:
    on (release) {
    //customize the window that gets opened
    // 0 equals NO.
    // 1 equals YES.
    address = "
    http://www.caveataudiens.net/music/mp3player.html";
    target_winName = "kirupa";
    width = 400;
    height = 300;
    toolbar = 0;
    location = 0;
    directories = 0;
    status = 0;
    menubar = 0;
    scrollbars = 1;
    resizable = 0;
    //sends data back to the function
    openWinCentre(address, target_winName, width, height,
    toolbar, location, directories, status, menubar, scrollbars,
    resizable);
    and in my main actionscript layer I have:
    stopAllSounds();
    forum_btn.onRelease = function() {
    getURL("
    http://www.flaccidsacks.co.uk/phpBB2/",
    "_blank");
    music_btn.onRelease = function() {
    gotoAndStop("music");
    links_btn.onRelease = function() {
    gotoAndStop("links");
    about_btn.onRelease = function() {
    gotoAndStop("about");
    news_btn.onRelease = function() {
    gotoAndStop("news");
    Movieclip.prototype.openWinCentre = function (url, winName,
    w, h, toolbar, location, directories, status, menubar, scrollbars,
    resizable) {
    getURL ("javascript:var myWin; if(!myWin ||
    myWin.closed){myWin = window.open('" + url + "','" + winName +
    "','" + "width=" + w + ",height=" + h + ",toolbar=" + toolbar +
    ",location=" + location + ",directories=" + directories +
    ",status=" + status + ",menubar=" + menubar + ",scrollbars=" +
    scrollbars + ",resizable=" + resizable +
    ",top='+((screen.height/2)-(" + h/2 +
    "))+',left='+((screen.width/2)-(" + w/2 + "))+'" +
    "')}else{myWin.focus();};void(0);");
    Can some kind soul help me figure out how to adjust the
    window size?
    Many thanks
    lyle

    Any ideas?
    When I change the settings for toolbar, status, etc, then the
    changes take effect, it seems though only the width and height
    don't work for some reason.
    I would be very grateful for any suggestions
    Thanks
    Lyle

Maybe you are looking for

  • My iPhone 4S appears to be using an old Apple ID.  How can I change this to my current one?

    My iPhone 4S appears to be using an old Apple ID and keeps asking for my sign in.  How can I change this to my current ID -this applied to iCloud only.

  • ITunes error message on installation

    whenever I try and install iTunes, an error message comes up: there is a problem with this windows installer package. a program required required for this install to complete could not be run. please contact your support personnel or package vendor.

  • WT rounding to nearest $

    I want to be able to add hours to a wage type as well as dollars for the recurring payments. The calculation needs to round up to the nearest dollar. I understand That in table T511 I need to put a "+" sign against amount and number both. For roundin

  • Internet slow on mac but not pc!

    My mac is loading pages a lot slower than my pc and they are all on the same network, even itunes seems to be slower on my mac then on my pc. I didn't used to have this problem. I have reset safari but i haven't done much else. Any suggestions would

  • How to import eEPC model into BPEL model of JDeveloper

    Hello All, Can any buddy please help me, I need to import EPC model from Oracle BPA architecture 11g, to BPEL Process in JDeveloper 11g, i am using Oracle BPA Suite 11g with Oracle 11g Backend database, and i have installed JDeveloper 11g Thanks Mili