Tasklist sorting in AwesomeWM [SOLVED]

I just noticed that the tasklist will always put new windows on the left-most side. How can I get Awesome to put new windows to the right-most?
Using the tile.left layout, a program window may be on the right but it will be on the left in the tasklist.
Last edited by anonymous_user (2010-10-25 02:22:19)

I uncommented this code and it seems to work like I want:
awful.client.setslave(c)

Similar Messages

  • How to sort in numbers 3.0 sort ascending is grayed out

    I tried to follow "how to sort" in numbers, but I am doing something wrong. My "sort ascending" and "sort descending" are grayed out.

    Hi Jerry,
    I suspect you have merged some cells in the table somewhere. This confuses it, as it has no way of keeping the rows containing the merge together while sorting.
    Unmerging solved it when I had the same problem.
    Best wishes.

  • File Name Changes, Sorting Problem

    Hi,
    iTunes 10.5.1
    MacBook Pro Snow Leopard
    I am attempting to add a series of lectures to iTunes. These number about 100 and are sequential over 3 volumes. I obtained them in simple forlders labeled vol1, vol2 and vol3 and each track is named with a prefix such as "V1 Ch03 Relation of Physics to other Sciences.mp3". Oddly about half actually retain the full name and sort out properly but the rest do not. For instance the example in question becomes " Relation of Physics to other Sciences.mp3" and not sorting tricks can get them in order.
    Before I starting fooling with the names is there somethign else I can do? I have turned off "automatically check for track names" option on iTunes but the same result. Are the spaces causing problems? I don't want to change the names as I would like to share these and others won't figure out the sequence.
    There doesn't seem to be an option for date created sorting which may solve the issue. Also iTunes seems to be reading some meta data as the "album name" changes. It seems the lectures were originally released in a different series and recently compiled in the order created, the latter being preferrable.
    Any help appreciated!
    Happy Holidays!
    Warren

    Oops, Just realised I put this n the wrong forum. Just to clarify this is prerecorded video files.

  • Batches not sorted properly

    Hi All,
    We configured Batch management recently.
    We are sorting the batches by Manufacturing Date and Shelf Life Expiration Date.
    Batches are sorted corrected based on Manufacturing Date,
    But we are not getting proper results when we sort based on Shelf Life Expiration Date.
    Based on SLED, system is taking even the batches with the past date.
    Please find the example below.
    Batch      Manufacturing date          SLED
    B0001     27.04.2015                         27.04.2015
    B0002     28.04.2015                         30.04.2014
    In the above exmple, as per Ascending sort, system will pick up the first record, but the SLED is expired.
    We want the system to consider the Batches with valid SLED. It should not take batches with expired SLED.
    How to achieve this. Please suggest.
    Regards,
    Raja Durai

    The sorting itself cannot solve this, you have to define in the system properly your condition.
    With the help of the remaining shelf life charatcerisitc (LOBM_RLZ) you can define e.g., that only the batches with >0 remaining shelf life should be selected. Please read OSS note 33396 or e.g. this link:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0caed4a-40f9-2c10-349a-96ec617a8161?overridelayout=t…

  • Interesting sort issue: URL changes but does not refresh

    Thanks everyone for you help on my sort problem! There is still one tiny issue remaining.
    When I hit the SORT button, nothing happens except the URL changes from http://localhost/jserv/Invoice3.jsp to http://localhost/jserv/Invoice3.jsp?valueCheckbox=3&valueCheckbox=4&order=ID&sort=DESC
    The ID's of the records and the sort order are being added to the URL, but the sort is not being performed.
    -Michael
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varCheckbox = "1";
    if (request.getParameter ("valueCheckbox") !=null) {rsBeachwear__varCheckbox = (String)request.getParameter ("valueCheckbox")   ;}
    %>
    <%
    //SORT VARIABLES:
    String rsBeachwear__name = "ID";//default sort value
    if (request.getParameter ("order") !=null) {rsBeachwear__name = (String)request.getParameter ("order");}
    String rsBeachwear__sort = "ASC";//default sort value
    if (request.getParameter ("sort") !=null) {rsBeachwear__sort = (String)request.getParameter ("sort");}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    String chkValues[]=request.getParameterValues("valueCheckbox");
    StringBuffer prepStr=new StringBuffer("SELECT ID, Item, Color, Size FROM Beachwear WHERE ID=");
    for(int x = 0; x < chkValues.length; ++x) {
    prepStr.append(chkValues[x]);
    if((x+1)<chkValues.length){
    prepStr.append(" OR ID=");
    }//end if
    }//end for loop
    prepStr.append(" ORDER BY '%" + rsBeachwear__name + "%' '%" + rsBeachwear__sort + "%'"); //NEW SQL SORT CODE:
    PreparedStatement StatementrsBeachwear=ConnrsBeachwear.prepareStatement(prepStr.toString());
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    Object rsBeachwear_data;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> </p>
    <p><br>
    INVOICE<br>
    </p>
    <%//FORM "GET" METHOD<%>
    <form name="form1" method="get" action="Invoice3.jsp">
    <p><br>
    </p>
    <%while(rsBeachwear.next()){   //LOOP; RELEVANT, NOT POINTLESS %>
    <table width="75%" border="1">
    <tr>
    <td width="13%">ID:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">ITEM:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">COLOR:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">SIZE:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%"> </td>
    <td width="87%">
    <input type="checkbox" name="valueCheckbox" value="<%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%>" checked> //NEW CHECKBOX ADDED WITH SAME CODE AS PREVIOUS (SEARCH) PAGE
    </td>
    </tr>
    </table>
    <%
    %>
    <p>  </p>
    <br>
    <table width="54%" border="1">
    <tr>
    <td width="29%">
    <div align="center">Parameter </div>
    </td>
    <td width="28%">
    <div align="center">1</div>
    </td>
    <td width="43%">
    <div align="center">2</div>
    </td>
    </tr>
    <%//TWO NEW PULL-DOWN MENUS FOR "ORDER BY" SQL SORT%>
    <tr>
    <td width="29%">
    <div align="center">
    <input type="submit" value="Sort Now">
    </div>
    </td>
    <td width="28%">
    <div align="center">
    <select name="order" size="1">
    <option value="ID" selected>ID</option>
    <option value="Item">Item</option>
    <option value="Color">Color</option>
    <option value="Size">Size</option>
    </select>
    </div>
    </td>
    <td width="43%">
    <div align="center">
    <select name="sort" size="1">
    <option value="ASC" selected>Ascending</option>
    <option value="DESC">Descending</option>
    </select>
    </div>
    </td>
    </tr>
    </table>
    </form>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>

    The sort problem is solved: Mission accomplished!
    The single quotes and percentage marks in the SQL logic were causing the problem! The sort works great now. Now I just need to program memory into the list boxes so they remember their last setting, but I know how I will do that.
    Thanks again for all your help!

  • Property for Sorting: created,- descending not work

    all my files openes as ascending sorting, how to solve this problem

    Hi Nikita,
    To modify the ascending/decending order, you  need to edit the Layout set you use to display the documents.
    In the collection renderer of the layout set, modify the below two properties
    Property for Sorting:  ex: name, modified by
    Sorting Mode:  ex: ascending/decending
    Regards,
    Siva
    Award pts for helpful answer.

  • IPAD youtube videos will not play on "base" wifi but play on "4G" wifi

    This problem affects my IPAD2 IPAD3, iphone 4s, iphone 4 with same presentation. All my devices on iOS 7.0.3 .. problem started a month ago about time first upgraded to iOS7  . my ISP at home upstream of my AP is ATT uverse .. ATT is also my provider of 4G wifi via my iphone ..  on my home network I use a higher end watchguard router / firewall appliance and for wifi the watchguard AP200s
    While connected to my home base wifi, I attempt to play youtube video (several different ways described below) the youtube opens and clearly finds the video but screen says “Playback error Tap to retry”
    Next if I turn on the hotspot from my iphone and connect all ipads etc via 4G WIFI then exact same steps result in the video loading and playing NORMALLY … ?? dns issue 
    Summary of troubleshooting steps so far;
    -my Microsoft surface tablet connected to base wifi .. if I run same exact link / video it runs perfectly .. so clearly the base  wifi is ok with surface tablet and youtube videos ..
    -all wired PCs etc at on network can run youtube videos with no issues ..
    -ipad - deleted youtube app and reinstalled … same problem
    -ipad - reset all settings  .. same problem
    -ipad - deleted all cookies and data on safari .. same problem
    -ipad – turned cookies to accept all cookies … same problem
    -ipad – deleted youtube app and forced to run from safari browser .. same problem
    -ipad – manually added 8.8.8.8 as alternative dns to the base wifi .. same problem
    -iphones have same behavior but the workaround is very easy here just turn off wifi .. forces down the 4G .. that works fine but for testing purposes I connect to base and all issues mentioned above on ipads are replicated
    -rebooted / power cycled ATT RG, WG router, WG AP200s … no change (did this near beginning of troubleshooting)
    Any ideas?

    Ok I will answer my own issue .. sort of
    Partially solved the problem. Seems there is a generalized problem with firewalls and the youtube / apple.
    Adding an exception to the firewall for AV scanning allowed the youtube app to start working but accessing the youtube via safari still does not work. Also after adding the exception I had to delete and reinstall the youtube app. 
    Again before adding this exception .. if I connected to to wifi via my ATT cellular hotspot .. both the app and the safari youtube videos played correctly.
    Here are other links that discuss
    http://productforums.google.com/forum/#!topic/youtube/4vyNLc41d34
    http://www.amixa.com/blog/2012/12/22/how-to-allow-the-youtube-app-to-play-throug h-a-watchguard-firewall-proxy/
    http://community.spiceworks.com/topic/113832-how-to-set-up-a-watchguard-firebox- firewall-to-allow-youtube-videos

  • Q10 bbm display is blurry

    Just got a BlackBerry q10 and found out each time I upload a picture on the bbm display is always blurry.
    Please what would the issue be and how can I sort it?
    Solved!
    Go to Solution.

    This is what I found..
    Should use around 128x128 or nothing bigger than 20KB for BBM Display picture
    http://forums.crackberry.com/blackberry-z10-f254/b​bm-profile-pic-question-772349/

  • Oracle OVD: adapter configuration - restrict bind by memberOf

    Hi, thanks for reading!
    I'm getting started with an Identity Management project whose first phase will involve OVD. One of the project's identity sources is ActiveDirectory. I've experimented with creating an adapter in OVD which connects to an AD source and uses the changeUserRDN plugin to convert an input of a sAMAccountName to the CN. I can authenticate to MSAD through this adapter with an ldap client - great stuff.
    I'd like to refine this a bit so a bind is only possible if an authenticating user is a memberof a certain group. Here's a little more detail - when I search the MSAD using an ldapsearch like:
    [me@localhost ~]# ldapsearch -x -h adhost -p -389 -b "OU=Domain Users,DC=TEST_DC" -D "CN=privuser\,,OU=Domain Users,DC=TEST_DC" -w [password] "memberOf=CN=Rec Center,CN=Users,DC=TEST_DC"ldapsearch will return entries from members of the Rec Center group (memberOf: CN=Rec Center,CN=Users,DC=TEST_DC). What I'd like is to send a bind request to OVD at a Base DN that this adapter recognizes and have binds succeed only for users who are a member of the Rec Center group.
    Is there an adapter mapping, plugin, filter, or other configuration that I should use to make that bind operation happen only for members of a specific group?
    Thanks!

    Hey friend,
    You are absolutely right. The issue is with DNS.
    Without specifying DNS in the entry, it is able to validate the Active Directory.
    Now, how can i resolve DNS issue in my system. Can you help me to sort out in solving this issue.
    Thanks in Advance,
    Sandy D

  • Webmail email list

    There is a spammy advert in my email list at the top which keeps being replaced by more spam - how do I remove it?
    Spam is not appreciated in emails nor is it appreciated displaying at the top of the email list.
    Also how do I sort by sender ?
    There seems to be only the default sort by date. Is this correct - there is no alternative of Sort by?
    Solved!
    Go to Solution.

    Thanks for offering assistance3,  but that link was a long conversation that had no answer on removal, so having dome some searching I located the answer.
    The only way is to go back to the old version which is far better.
    click on 'Sort by date' to get drop down.
    click on 'More settings'
    Select: 'Viewing email'
    Under 'Mail Version' select 'Basic'
    click on 'Save'
    This removes:
    Today, yesterday, last week etc. headings
    Removes the spammy advert shown at top of email list as if it were trying to pretend to be the newest unread email.
    I've also got the Sort by sorted.
    To be honest, the webmail is not very good. So it is best to keep it very basic.
    I choose to use Thunderbird email client, but every once in a while I check that the webmail Spam folder and other emails have been correctly deleted.

  • Lost Sub-Account on transfer to Thunderbird

    I set up Thunderbird email account but the transfer lost my sub-account and it has disappeared from BTMail, how do I get it back.
    Forget this post I've sorted it.
    Solved!
    Go to Solution.

    Hi Licquorice
    I wanted to set up Thunderbird email client as I might be leaving BT but after setting it up OK I found that on returning to BTMail the dropdown arrow option get to my sub-acc's. had disappeared, after the initial panic I logged off BT and re-started and it re-appeared.  Hopefully BT will give me a good reason to stay but at lest I've protected my important stuff.

  • Unwanted application interaction after deployment

    Hi,
    At the moment we have three small JHeadstart (10.1.2) applications deployed against a iAS 9.0.4 on a True64 server, let's say appl A, B and C. Appl A has got CDM ruleframe implemented and works fine. B and C do not have CDM ruleframe implemented, no Table API's or any other Designer/Headstart related objects.
    After deployment of B and C however, errors occur when DML-ing, related to CDM Ruleframe (??). Redeployment sometimes gets rid of the errors, sometimes not. So does restarting the OC4J container.
    The following errors occur:
    ORA-6550; line 1, column 7: PLS-00201: identifier 'QMS_TRANSACTION_MGT.OPEN_TRANSACTION' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored
    Another one:
    ORA-06550: line 1, column 13: PLS-00201: identifier 'CG$ERRORS.GETERRORS' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored
    These errors appear in the HTML page and do not occur when developing with JDeveloper, nor when deployed to the stand-alone OC4J container on the client developer machine.
    I'm a little confused here, don't know what or where to look for. It seems that the applications make use of the same object(s) in some way. Could it be that a wrong database connection is applied. If so, that's strange because querying data goes fine. Can anyone give me a hint what to check or where to look for?
    Greetings,
    Erik

    Hi Steven,
    First to answer your question, there is no java error stack, java thinks all's fine.
    But we solved the problem, there seemed indeed unwanted interaction between applications deployed on the same OC4J instance, caused by object sharing of some sort.
    We solved it by trial and error. As we could reproduce the problem, we just included/excluded a library to the view controller project and then redeployed the application.
    The errors were gone after we did the following:
    1) In the project properties of the view controller project we included the following libraries:
    BC4J Struts Runtime
    ADF Web Runtime
    Taglibs
    2) In the deployment profile properties - File Groups - WEB-INF/lib - Contributors, we checked the following libraries:
    ADF Model Runtime
    BC4J Oracle Domains
    BC4J Runtime
    ADF Web Runtime
    Hope to contribute a bit,
    Greetings Erik
    Message was edited by:
    vochte

  • Very-large-scale searching in J2EE

    I'm looking to solve a very-large-scale searching problem. I am creating a site
    where users can search a table with five million records, filtering and sorting
    independantly on ten different columns. For example, the table might be five million
    customers, and the user might choose "S*" for the last name, and sort ascending
    on street name.
    I have read up on a number of patterns to solve this problem, but anticipate some
    performance issues. I'll explain below:
    1) "Page-by-Page Iterator" or "Value List Handler"
    In this pattern, it appears that all records that match the search criteria are
    retrieved from the database and cached on the application server. The client (JSP)
    can then access small pieces of the cached results at a time. Issues with this
    include:
    - If the customer record is 1KB, then wide search criteria (i.e. last name =
    S*) will cause 1 GB transfer from the database server to app server, and then
    1GB being stored on the app server, cached, waiting for the user (each user!)
    to ask for the next 10 or 100 records. This is inefficient use of network and
    memory resources.
    - 99% of the data transfered from the database server will not by used ... most
    users flip through a couple of pages and then choose a record or start a new search
    2) Requery the database each time and ask for a subset
    I haven't seen this formalized into a pattern yet, but the basic idea is this:
    If a clients asks for records 1-100 first (i.e. page 1), only fetch that many
    records from the db. If the user asks for the next page, requery the database
    and use the JDBC API's ResultSet.absolute(int row) to start at record 101. Issue:
    The query is re-performed, causing the Oracle server to do another costly "execute"
    (bad on 5M records with sorting).
    To solve this, I've beed trying to enhance the second strategy above by caching
    the ResultSet object in a stateful session bean. Unfortunately, this causes a
    "ResultSet already closed" SQLException, although I ensure that the Connection,
    PreparedStatement, and ResultSet are all stored in the EJB and not closed. I've
    seen this on newsgroups ... it appears that WebLogic is forcing the Connection
    closed. If this is how J2EE and pooled connections work, then that's fine ...
    there's nothing I can really do about it.
    Another idea is to use "explicit cursors" in Oracle. I haven't fully explored
    it yet, but it wouldn't be a great solution as it would be using Oracle-specific
    functionality (we are trying to be db-agnostic).
    More information:
    - BEA WebLogic Server 8.1
    - JDBC: Oracle's thin driver provided with WLS 8.1
    - Platform: Sun Solaris 5.8
    - Oracle 9i
    Any other ideas on how I can solve this issue?

    Michael McNeil wrote:
    I'm looking to solve a very-large-scale searching problem. I am creating a site
    where users can search a table with five million records, filtering and sorting
    independantly on ten different columns. For example, the table might be five million
    customers, and the user might choose "S*" for the last name, and sort ascending
    on street name.
    I have read up on a number of patterns to solve this problem, but anticipate some
    performance issues. I'll explain below:
    1) "Page-by-Page Iterator" or "Value List Handler"
    In this pattern, it appears that all records that match the search criteria are
    retrieved from the database and cached on the application server. The client (JSP)
    can then access small pieces of the cached results at a time. Issues with this
    include:
    - If the customer record is 1KB, then wide search criteria (i.e. last name =
    S*) will cause 1 GB transfer from the database server to app server, and then
    1GB being stored on the app server, cached, waiting for the user (each user!)
    to ask for the next 10 or 100 records. This is inefficient use of network and
    memory resources.
    - 99% of the data transfered from the database server will not by used ... most
    users flip through a couple of pages and then choose a record or start a new search
    2) Requery the database each time and ask for a subset
    I haven't seen this formalized into a pattern yet, but the basic idea is this:
    If a clients asks for records 1-100 first (i.e. page 1), only fetch that many
    records from the db. If the user asks for the next page, requery the database
    and use the JDBC API's ResultSet.absolute(int row) to start at record 101. Issue:
    The query is re-performed, causing the Oracle server to do another costly "execute"
    (bad on 5M records with sorting).
    To solve this, I've beed trying to enhance the second strategy above by caching
    the ResultSet object in a stateful session bean. Unfortunately, this causes a
    "ResultSet already closed" SQLException, although I ensure that the Connection,
    PreparedStatement, and ResultSet are all stored in the EJB and not closed. I've
    seen this on newsgroups ... it appears that WebLogic is forcing the Connection
    closed. If this is how J2EE and pooled connections work, then that's fine ...
    there's nothing I can really do about it.
    Another idea is to use "explicit cursors" in Oracle. I haven't fully explored
    it yet, but it wouldn't be a great solution as it would be using Oracle-specific
    functionality (we are trying to be db-agnostic).
    More information:
    - BEA WebLogic Server 8.1
    - JDBC: Oracle's thin driver provided with WLS 8.1
    - Platform: Sun Solaris 5.8
    - Oracle 9i
    Any other ideas on how I can solve this issue? Hi. Fancy SQL to the rescue! If the table has a unique key, you can simply send a
    query per page, with iterative SQL that selects the next N rows beyond what was
    selected last time. Eg:
    Let variable X be the highest key value you've seen so far. Initially it would
    be the lowest possible value.
    select * from mytable M
    where ... -- application-specific qualifications...
    and M.key >= X
    and (100 <= select count(*) from mytable MM where MM.key > X and MM.key < M.key and ...)
    In English, this says, select all the qualifying rows higher than what I last saw, but
    only those that have fewer than 100 qualifying rows between the last I saw and them (ie:
    the next 100).
    When processing this query, remember the highest key value you see, and use it for the
    next query.
    Joe

  • Think i may have my internet traffic managed?

    Hello
    I'm on Bt Infinity 2, the contract was taken out a couple years ago.
    everything was good until september 13 when my internet speed dropped consideraby, this was sorted out and solved but when i download any files from teh net i average about 800kb
    my connection speed is 50mb down 15 up (so bt wholesale speed test says)
    i've contacted bt just before christmas and they sent me a new hub hopign that this will solve the issue, it has'nt.
    also asked bt about being traffic managed, which they say they dont do anymore although running glasnost test has confirmed that i am.
    also re-installed windows and attempted after install still the same results.
    have spoekn to their tech guys and there're going to send engineer out to confirm what i'm saying.
    had a call from bt soon after as a curtisy call then after explaining everything to them was told that there's nothing they can do for.
    anyone got any suggestions what going on?

    If you contracted before Feb 2013 you would be on Unlimited broadband. This means you have unlimited data upload and download limits. It does not mean that your connection will not be limited at peak times.
    If you contracted after Feb 2013 you should be on Totally Unlimited. This means you have unlimited data uploads and download and you will not be limited at peak times.
    If you re-contracted after Feb 2013 you may not have been automatically put onto Totally Unlimited unless you asked for it when you re-contracted.
    If you have not re-contracted and are on a rolling monthly contract you will be on what ever package you were last contracted on.
    Telephone the Options Team on 0800 800 030 and ask them what package you are on and if need be you may need to re-contract to put you on Totally Unlimited. If you have any problems post back here for further advice.

  • Change 'drive' that itunes looks on?

    Ok here is my problem. All my music, videos, and some other things are stored on an external HDD. I don't always turn it on but when I do it comes up on my computer as drive E: I just turned my drive on and for some reason it is showing up as drive F: not E: There is nothing else attached to my computer right now, the drives go C: (internal HDD), D: (CDRW/DVD combo), and then F: it totally skips E: for some reason which I don't see why.
    I have tried to reconnect the drive and restart my computer but the drive still comes up at drive F: Is there a way to change the drive itunes will look on since all my files are on the same one. Or does anyone know a way to change the drive designation within windows? Or do I have to reload everything, I would not like to do that since I would have to redo lots of settings on tons of videos and other stuff to get them to sort properly.

    problem solved, I found how to change the drive letter manually.

Maybe you are looking for

  • Acrobat 8 Standard and Acrobat X Pro unable to install

    Hello, I have purchased Acrobat 8 Standard and Acrobat X Pro, and have both serial numbers.  I am unable to install either in my new computer.  I do not have a disc for Acorbat 8, but do have one for Acrobat X Pro.  I have tried downloading from Down

  • Logging out does not drop me to console but a black screen

    Recent pacman -Syu upgraded me to latest xorg-server and I have this problem: logging out does not drop me back to console but a black screen and after 30 seconds, a blinking cursor. Nothing works and I have to reboot. If I choose to reboot (instead

  • Problem converting long AVI to MOV

    I am trying to convert one hour AVI file into a MOV format using Quicktime PRO on a PC.If I try and convert a short AVI video of less than 5 minutes I can can convert it and change the settings of both Video and Audio to suit my specification.If howe

  • IMovie 10 imports the original photo from iPhoto rather than the cropped

    I am trying to make a video using iMovie 10 and iPhoto. iMovie is displaying the original versions of photos rather than the cropped ones that I edited in iPhoto. Is anyone else having this problem? Using a MacBook Pro, OS 10.9 Mavericks. When I used

  • Size of tables

    Hello, I am new to oracle. I need to find the size of all the tables in a schema. How can I go about doing that? I can do it thru TOAD but that will take me a long time. Any1 have an idea or maybe even a script I can use? Thanks in advance