A Problem With Sorting via Applescript

Hello everyone. I have always lurked these forums and learnt many things along the way, but this is my first question, and I hope that someone can help me out. I apologise for the huge post.
I have created a spreadsheet in Numbers that I plan to use for a soccer tournament. There are 8 Groups of 4 teams in the competition, so I have set each Group up on its own sheet in order to record the results of the games. Group 1 is on Sheet 1, Group 2 is on Sheet 2 etc. These results are then fed into a second table on the each page in order to create a competition ladder for each group. So far so good, works beautifully. See image:
My next step is sorting these tables so that they form a proper "results table" with the best team on top. My wish is to sort the results table in this order:
Points
Diff
F
Although not very experienced with Applescript, I have written a script to sort all of the 8 sheets so that I don't have to do them one at a time. Unfortunately I find that every second sheet does not sort correctly, even though I am using the same instructions for each seet in my script.
See here, sheet two:
Sheet 3 sorts correctly but not sheet 4, sheet 5 is good but sheet 6 bad etc...
This is my script:
tell application "Numbers"
          tell table "Ladder1" of sheet "Group1" of document "Manu"
  sort by column "k" direction descending
          end tell
          tell table "Ladder1" of sheet "Group1" of document "Manu"
  sort by column "i" direction descending
          end tell
          tell table "Ladder1" of sheet "Group1" of document "Manu"
  sort by column "g" direction descending
          end tell
          tell table "Ladder2" of sheet "Group2" of document "Manu"
  sort by column "k" direction descending
          end tell
          tell table "Ladder2" of sheet "Group2" of document "Manu"
  sort by column "i" direction descending
          end tell
          tell table "Ladder2" of sheet "Group2" of document "Manu"
  sort by column "g" direction descending
          end tell
          tell table "Ladder3" of sheet "Group3" of document "Manu"
  sort by column "k" direction descending
          end tell
          tell table "Ladder3" of sheet "Group3" of document "Manu"
  sort by column "i" direction descending
          end tell
          tell table "Ladder3" of sheet "Group3" of document "Manu"
  sort by column "g" direction descending
          end tell
          tell table "Ladder4" of sheet "Group4" of document "Manu"
  sort by column "k" direction descending
          end tell
          tell table "Ladder4" of sheet "Group4" of document "Manu"
  sort by column "i" direction descending
          end tell
          tell table "Ladder4" of sheet "Group4" of document "Manu"
  sort by column "g" direction descending
          end tell
          tell table "Ladder5" of sheet "Group5" of document "Manu"
  sort by column "k" direction descending
          end tell
          tell table "Ladder5" of sheet "Group5" of document "Manu"
  sort by column "i" direction descending
          end tell
          tell table "Ladder5" of sheet "Group5" of document "Manu"
  sort by column "g" direction descending
          end tell
          tell table "Ladder6" of sheet "Group6" of document "Manu"
  sort by column "k" direction descending
          end tell
          tell table "Ladder6" of sheet "Group6" of document "Manu"
  sort by column "i" direction descending
          end tell
          tell table "Ladder6" of sheet "Group6" of document "Manu"
  sort by column "g" direction descending
          end tell
          tell table "Ladder7" of sheet "Group7" of document "Manu"
  sort by column "k" direction descending
          end tell
          tell table "Ladder7" of sheet "Group7" of document "Manu"
  sort by column "i" direction descending
          end tell
          tell table "Ladder7" of sheet "Group7" of document "Manu"
  sort by column "g" direction descending
          end tell
          tell table "Ladder8" of sheet "Group8" of document "Manu"
  sort by column "k" direction descending
          end tell
          tell table "Ladder8" of sheet "Group8" of document "Manu"
  sort by column "i" direction descending
          end tell
          tell table "Ladder8" of sheet "Group8" of document "Manu"
  sort by column "g" direction descending
          end tell
end tell
Can anybody see any obvious errors with the script? Any info would be greatly appreciated. Thanks!

First I would look at some items to simplify the script:
I did NOT run this.
tell application "Numbers"
          set LadderNumber to 1
          repeat 8 times
       set theLadder to "Ladder" & LadderNumber
       set theGroup to "Group" & LadderNumber
       tell table theLadder of sheet theGroup of document "Manu"
            sort by column "k" direction descending
            sort by column "i" direction descending
            sort by column "g" direction descending
                         end tell
                         set LadderNumber to (LadderNumber + 1)
          end repeat
end tell
I don't see a problem with the script.  I suggest adding a dummy table to each sheet and confirming you can set a value in the dummy table from the script (maybe after manually setting the value to some default value).  you can also add print dialogs at each step to see what's happening... like:
set aValue to <what ever>
display dialog "The value is: " & aValue
just some thoughts

Similar Messages

  • Problem with sorting involving user defined types and reports

    Hello!
    I have a problem with sorting involving Reports and user defined objet types.
    I have created the following object types
    CREATE TYPE type_balance_compte AS OBJECT
    NUM_CPT_SEQ NUMBER(8)
    ,NUM_CPT VARCHAR2(35)
    CREATE TYPE TB_type_balance_compte IS TABLE OF type_balance_compte
    At the reports query I use:
    SELECT ...
    FROM table(cast(test_pkg.balance_comptes(:P_num_soc) as TB_type_balance_compte)) c
    The procedure balance_comptes will retrieve data from various tables into the type.
    The report is ordered by a certain string field that usually contains characters and numbers.
    I need to have numbers always before characters, meaning the data should come in this order in the report for example:
    0
    1
    A
    B
    So, before the report query, I have placed a call to DBMS_SESSION.SET_NLS( 'nls_sort', 'binary' ) to guarantee NLS_SORT in case it is originally set to FRENCH.
    The problem here is that even after this call, I have the report ordered like this
    A
    B
    0
    1
    And not the numbers before as it should be.
    To try and find out where the problem was, I have created a table to use instead of the object type described above. In this case, it worked correctly. So all I know by now is that is has something to do with the type or cast, but what exactly? Does anybody now how to solve this without using a table?
    Many thanks
    Ariadne

    I have placed a call to DBMS_SESSION.SET_NLS( 'nls_sort', 'binary' ) why not order directly then:
    SQL> select *
          from table (sys.dbms_debug_vc2coll ('A', 1, '5', 'C', 'a'))
    order by nlssort (column_value, 'NLS_SORT = binary')
    COLUMN_VALUE                                                                   
    1                                                                              
    5                                                                              
    A                                                                              
    C                                                                              
    a                                                                              
    5 rows selected.?

  • Problems with sending via url

    Hi there, I've got a problem with sending via an URL. If I send and receive something I use a method called connect. This method works well, I construct a URL, connect and receive an ObjectStream.
    But as I only want to set some values in another use case I do not want to receive anything,
    But it doesn't work - my servlet does not receive any request.
    Could anyone please help me to solve this?
    Thank you.
    Regards
    Tarik
    private synchronized static void connectOneWay(String data)
                throws IOException, ClassNotFoundException {
            try {
                URLConnection connection = null;
                URL testServlet = null;
                Class classLock = ServletConnector.class;
                while (locked)
                    classLock.wait();
                locked = true;
                testServlet = new URL(servletURL + data);
                if (MMSCMSTree.debug)
                    System.out.println("Servlet URL: " + testServlet);
                connection = testServlet.openConnection();
                connection.setDoInput(false);
                connection.connect();
                locked = false;
                classLock.notify();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }

    Hi
    There was not a problem with this, the problem was on the server side, infinite loop ... :-)
    Regards
    Tarik

  • Problem with printing via HTC one

    Good morning
    I have a problem with my printer device (HP Photosmart 2575 All-in-One)
    When i try to print out from my cell phone i recieved a message at the printer lcd display "operator involvement".
    This happened after an upgrade to my mobile phone from sense5 to sense6. The type of my moblile is HTC One Mini.
    Before this upgrade everything work correct.
    can you help me with this?
    best regards

    Hello milosath,
    Welcome to the HP Support Forums!
    I would like to see if I can help out with the HTC printing issue. Ensure the printer is connected to the network via the Ethernet cable, download and install the HP ePrint App and try printing from there.
    Getting Started with HP ePrint Mobile Apps<---
    Cheers,
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Prime Infrastructure 2.1 problem with sorting devices in device groups

    Hi,
    I have a problem with prime infrastructure, namely prime is not doing appropriate sorting of devices in default device groups.
    Example: device type > routers > Cisco 2800 series integrated services routers - under shown results there are Cisco 2911 Integrated Service router, Cisco 2901 etc.
    Any solution? 
    Tnx

    Hi all:
    I have tried using Designing Monitoring Template to set the Health Check Polling time from default 15 minutes to 5 minutes and also tried also 1 minute.
    The result is 5 minutes is working but 1 minute is not working.
    May I know any one can help on this?
    Many thanks!
    Best regards,
    tangsuan

  • Still having problems with sorting playlists

    I asked these questions a couple weeks ago with no response.
    1. I am trying to create a playlist using the latest version of ITunes that is similar to the Today's Hit Music playlist I set up earlier this summer. The 90s music playlist that came with ITunes and this playlist work fine. However, any new playlists created since the upgrade to ITunes 11 do not. In the above scenario where I set up a playlist that only has one rule and that rule is year is greater than whatever, ITunes refuses to sort the playlist by year then by artist, instead sorting the entire playlist by artist. My Today's Hit Music playlist, on the other hand, sorts with the year on top, so every song that I have allowed in the playlist is sorted by year. For example, B.O.B, Pitbull, Taio Cruz and Usher have songs from 2010 in the playlist. Their songs are all sorted alphabetically by artist, then by album as they should be. Then Pitbull, New Boys, and Hot Chelle Ray all have songs from 2011. Under the old system, these would be right below the songs from 2010, but in the new system they are mixed in with the 2010 songs, so Pitbull could have 2 songs back to back that did not come out in the same year. How can I fix this?
    2. I have a playlist set up for songs that are not in any other playlist. I had to recreate this playlist the last time I reset my plays because my phone wouldn't remove the songs that were added to the playlist since its creation from the list when it was supposed to. Now however, I am having the same problem with it as I was having with the last playlist. With the old system before ITunes 11, if What I Want by Daudtrey was the first song in that playlist, it would always be the first song, creating a sound that sounded like it was on shuffle, which I thought was cool. Now, it just sorts alphabetically by artist regardless of when it was played. How can I tell ITunes to not rearrange this playlist and just add all new songs to the end?

    I don't know how to do this without using a mouse point.
    This may help, http://www.computerhope.com/issues/ch000542.htm
    As for question #2, you call tell how iTunes is sorting songs by the up or down arrow next to a header name.
    Even the original order that the songs were entered or date added or last played can be sorted.
    Much easier with a mouse or touch pad.

  • Outgoing email problem with Gmail via ATT

    I'm posting this on behalf of my mom, who's at her wit's end with her Mail program.
    She has AT&T DSL service, and uses Gmail for her mail. Also, she's running 10.5 on a Macbook. We've tried fiddling with things every since she got the system in the spring, but she's consistently had trouble connecting to the Gmail server, especially regarding outgoing email. Most of the time it takes forever for a message to send, if it ever sends at all.
    I use Comcast and Gmail and have never had any problems, which leads me to believe that this may have something to do with ATT(/Bellsouth). Any guidance would be greatly appreciated!

    I have same problem with Apple Mail at ATT as ISP. I used the program ATTYahoo!EmailSetup from their website. Now I can rarely send any email, from my work email or from my MobileMe email. I seems like that program messed up the entire Apple Mail client so it can no longer send mail. Emails I try to send just sit the in Outbox. Does anyone have a solution?

  • Problem with 'sort and filter' feature of embed codes in Excel Online Web App

    So my question has to do with the Excel Online feature where you can share a spreadsheet and embed it in a website with the option of allowing users to sort and filter the data. (The option is under the "Interaction" heading.)
    One of the options if you look closely is "Let people sort and filter" which is not checked off. In the embed code you can see "AllowInteractivity=False". The problem is that when I check "Let people sort and filter"
    the embed code changes completely - going from:
    <iframe width="700" height="900" frameborder="0" scrolling="no" src="https://onedrive.live.com/embed?cid=dontworryaboutitEDFD383&resid=6BAA9620AEDFD383%21107&authkey=AFj3X8xq2U3IfDE&em=2&wdAllowInteractivity=False&Item='Sheet1'!A1%3AI32"></iframe>
    to:
    <iframe width="700" height="900" frameborder="0" scrolling="no" src="https://onedrive.live.com/embed?cid=dontworryaboutitEDFD383&resid=6BAA9620AEDFD383%21107&authkey=AFj3X8xq2U3IfDE&em=2&Item='Sheet1'!A1%3AI32"></iframe>
    If I manually change 'false' to 'true' that doesn't do the trick so I'm not sure what to try next.
    Any thoughts?

    Hi,
    We support Office for Windows in the current forum, since this question is about Office Online, I suggest you post the question in Office Online forum:
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Problems with sort, search and write objects o an ArrayList

    Hi
    Lets say that i have two subclasses (the program is not finished so in the end it can be up to 34 classes) of an abstract superclass. I also got one class which basicly is a register in which i've created an ArrayList of the type <abstractClass>. This means that i store the two subclasses in the arrayList. no problems so far i think (at least eclipse doesn't mind).
    1. now, i want to be able to sort the arrayList aswell as search thorugh it. I've tried Collections.sort(arrayList) but it doesn't work. So i have no idea how to solve that.
    2.The search-method i made doesn't work as good as i hoped for either. I ask the user to first decide what to search for (choose subclass) and then input the same properties as the subclass we search for. I create a new object of the subclass with these inputs and try arrayList.contains(subClassObject)
    it runs but it returns +"false"+ even if i create an object with the exact same properties.
    3. If i want to write this arrayList to a txtFile so i can import it another time. Which is the best method? first i just thought i'd convert the arrayList to string and then print every single object to a textfile as strings. that worked but i have no good idea how to import that into the same arrayList later. Then i found ObjectOutputStream and import using inputStream.nextObject(). But that doesn't work :(
    Any ideas?
    Thank you!
    Anton

    lavalampan wrote:
    Hi
    Lets say that i have two subclasses (the program is not finished so in the end it can be up to 34 classes) of an abstract superclass. I also got one class which basicly is a register in which i've created an ArrayList of the type <abstractClass>. This means that i store the two subclasses in the arrayList. no problems so far i think (at least eclipse doesn't mind).
    1. now, i want to be able to sort the arrayList aswell as search thorugh it. I've tried Collections.sort(arrayList) but it doesn't work. So i have no idea how to solve that. Create a custom comparator.
    >
    2.The search-method i made doesn't work as good as i hoped for either. I ask the user to first decide what to search for (choose subclass) and then input the same properties as the subclass we search for. I create a new object of the subclass with these inputs and try arrayList.contains(subClassObject)
    it runs but it returns +"false"+ even if i create an object with the exact same properties.Implement hashCode and equals.
    >
    3. If i want to write this arrayList to a txtFile so i can import it another time. Which is the best method? first i just thought i'd convert the arrayList to string and then print every single object to a textfile as strings. that worked but i have no good idea how to import that into the same arrayList later. Then i found ObjectOutputStream and import using inputStream.nextObject(). But that doesn't work :(Depends on what your requirement is, but yes, Serialization might work for you. Your classes should in that case implement Serializable.
    Kaj

  • Problems with Layer via Cut

    Application: Testing color combinations on an image of a building facade. Have tried to layer the image using the Polygonal Lasso Tool followed by Layer via Cut. Using Elements 6. PSE does not recognize my selections in the layers, most of the time, but will do it occaisionally. Have not been able to identify why it works some of the time. PSE seems to view some layers as blank, even though it displays the layered selection. I think this has to do with the use of Layer via Cut on adjacent selections and a selection border landing on or near the transparent background.
    I have two books on Elements, but no mention of this problem. Should I have used Layer via Copy? That would require more work because each selection that is moved to a layer, has to be eliminated in the Background Copy, in order to view new color schemes. Are there any work arounds for my unrecognized layers? Is there a better way to accomplish this re-coloring?
    I have reviewed Adobe's Knowledge Base and the Forum listings. Is there any way to do a selective search on the vast amount of Forum listings? I have scanned a large number but could have easily missed a TIP.
    Thanks!
    Don

    A sample image may not be as informative as the creation and extraction process. Please refer to the following steps and observations.
    Create a New Blank File. In the image select a rectangle and use the Paint Bucket to fill it with blue. Select a second rectangle or square in the image that is not in contact with the blue rectangle. Fill this with yellow paint. Make a copy of the background layer and work only with that. Activate the Polygonal Lasso. Select a portion of the blue rectangle (approx. half). Create a New Layer - Layer via Cut. Now should have three layers (Bknd, Bknd Copy less layer 1 and Layer 1). Enable only the Background Copy - disable the remaining layers. Try to use the Clone Stamp to change the yellow to blue. Error message is: Could not use Clone Stamp because target layer is hidden. If yes to Unhide, layer 1 is enabled but does not show as such until the stamp is used. Clone Stamp still cannot tranfer blue to yellow or vice versa. Disable Layer 1. Try to select some portion of the remaining blue rectangle with or without the selection border adjacent to the transparent area created by layer 1. Again, try to extract this using New Layer via Cut. Error message is: Could not make a new layer because No Pixels are Selected.
    Why cant I edit individual layers? Why cant I continue to extract portions of the blue rectangle?
    Don

  • Problems with query via Database-Link (Oracle 7.3.4)

    I made the following simple query via database-link.
    select count (*) from [email protected]
    I got the result in about 200 miliseconds.
    Then I4ve tried the following query.
    select * from [email protected]
    It took about 2 hours end ended with an error message "ORA-03113: end-of-file on communication channel"
    So I made another choice
    select * from [email protected] where rownum <=1
    Took about 200 miliseconds.
    So I made the query again an changed only the number of rownums,until I was at rownum <=8
    then it went sleeping again(I've canceled the statement because I didn't want to wait 2 hours again).
    We made the same things from another server with the same database-link on the same remote server
    and we had no problems.
    Any Idea???

    No, network is OK!
    Other links are running, I have also no problems when I connect directly to the remote server.

  • Problems with sorting in cross tab.

    Hi,
    Can anybody help me? I use Oracle Discoverer Desktop 10.1.2
    The problem is:
    a have a cross tab in which at the left axis I have the items sorted by alternative sort. Among them there are two items with similar names, like "detail 1" and "detail 1", but with different recid and ordernumber.
    if I put only the 'name' of an item at the left axis - I see only one item with the name "detail 1", against both of them.
    if I put two colums at the left axis 'ordernumber' and 'name' - I see both, but there are additional lines with the same 'content' like:
    1     ;     100
    detail 1;     100
    2     ;     200
    detail 1;     200
    how can I avoid this and is there any way to see both item without ordernumber?
    Kate.

    Hi, Ott
    I use ordernumber only for creating alternative sort, not for publishing in the crosstab.
    Ordernumber only "prevent" me to publish the info I need correctly, if I put ordernumber in the table the duplicated rows appears.
    You see, the problem is:
    I need only the names of the details in the left axis, BUT the identical names of the details (with the different ordernumber) are displayed as one row, not as different. it is not correctly.
    what should I do to solve the problem?

  • Who is Who iView: Problem with sorting

    Hi out there,
    I have the following problem: I would like to have the
    Search result generated by the Who is Who iView sorted
    by two properties, that is first by ume:lastname and
    second by ume:firstname.
    The search result will be sorted if I add ume:lastname in
    the "Search Result Sort Property" parameter within the iView.
    The question is: How to provide the second sort property?
    Any hint is highly appreciated
    Thanks in advance
    Sabine

    Hello,
    I don't know if it will help but check the who is who manual.
    http://help.sap.com ->Documentation - SAP NetWeaver ->
    pick your version and look for
    "Configuration of the Who#s Who iView"
    please notice that the documentation for EP6 SP2 can be find under
    Knowledge Management - Collaboration - Administration Guide -     
    Making Services Available - iViews with Collaboration Services -> 
    "Configuration of the Who#s Who iView"                            
    Hope this manual give's you some insight. Sort parameters should be explained. I would suggest writing the two separeted by ,
    ume:lastname, ume:firstname
    Best Regards,
    Defour Frederik

  • Problem with downloading via wacom

    i bought a wacom bamboo tablet that included a free full photoshop elements 11, when i download photoshop elements from the website it downloads normally< however, after installing the software it appears that the editor isn't working.
    i did lots of checking in the adobe help fourms, nothing helped this far, after searching in the files myself, i found that the downloader doesn't download the editor file at all, thus the installer is only installing the organizer, i checked my wacom tablet box again and it sure has a full photoshop elements, i tried re-downloading many times, although i need 5 hours to complete the download, still to no avail.
    i hope you can help me with this problem.

    If you got a serial number from wacom, try downloading the trial from adobe's site and entering the number into that. It should work.
    Be sure to uninstall the bad version before installing the trial, either via control panel in windows or the uninstaller in applications>Adobe Photoshop Elements 11 on a mac.

  • Paul McCartney Pre-Order Problem with Sorting

    I pre-ordered the new McCartney album last week (at which point it downloaded the "Ever Present Past" single) and when it became available today I downloaded the rest fine, except "Ever Present Past" (which should be song number 2) had a different album title ("Ever Present Past Single" or something like that) and thus didn't sort correctly with the rest of the album... so I edited the track to match the same album name and correct track number (being very careful to make sure that all of the fields in the Get Info window match the other tracks, and that there are no invisible spaces throwing it off), but it refuses to sort with the rest of the album... even tried to rebuild the iTunes Library file but that didn't work either... just curious if anyone else has a similar problem and/or a possible solution. Thanks.

    This is ridiculous that this issue isn't being
    > addressed. Same problem here, and I guarantee that
    > I'm not alone.
    Check out the emails I got from Apple on this:
    "I understand that the single " Memory Almost Full" from the album you pre-ordered, will did not download with the album and now you're unable to listen to the album without it stopping to get to the single. Please note that re-downloading the album, will not resolve this issue. You are correct when you mentioned that this issue will happen because iTunes sees it as two different albums because it was downloaded separately. Don't worry. To resolve this issue, I recommend creating a playlist for the album itself. That way, you can arrange the contents of the album so that they will play without interruption.
    This article will show you how to do this:
    Organizing your music and video using playlists
    http://docs.info.apple.com/article.html?path=iTunesWin/7.0/en/517win.html
    I hope you continue to enjoy using the iTunes Store."
    Well, that's great...so not only do I have to isolate the album from the rest of my iTunes collection, it also does nothing to fix the issue on my iPod. So I responded to them as such, and got this response:
    "You did mention very valid points when stating your disappointment with the way pre-ordered albums are downloaded and Apple recognizes that no one is better qualified to provide feedback about iTunes than the people who use it.
    I encourage you to use the iTunes Feedback page to submit your comments:
    http://www.apple.com/feedback/itunesapp.html
    Your efforts to share your feedback are very much appreciated.
    I hope you continue to enjoy using the iTunes Store.
    Is this ridicuous or what? Unbelievable. If I bought a CD in a store and the tracks were incorrectly burned on the CD, the store would take it back or at least try to exchange it for a new copy that wasnt defective. This TECHNICAL ISSUE needs to be resolved.
    iMac 17" 1.83 GHz Intel, iBook G4 12.1"   Mac OS X (10.4.6)  
    iMac 17" 1.83 GHz Intel, iBook G4 12.1"   Mac OS X (10.4.9)  

Maybe you are looking for

  • How to create a invoice with invoice items in SRM?

    Hi experts, I am testing my BW custom code for SRM. My question is I have to create a invoice with line item 1 quantiy 20 in SRM - development. After this I have mark line item 1 with a deletion indicator X in SRM and create two more line items and l

  • How do I get a refund for money taken out of my Pa...

    Last year I signed on for a Skype number, Within an hour I found out I didn't need it and tried to cancel it. Of course there is no phone number to call and no email to communicate with these people. Plus, at that time  the site said the numnber coul

  • Can anyone that works wirth xml in InDesign help me

    I am trying to create a schema to get an Excel workbook into xml so I can take that information and make a member list in inDesign CS6 so I don't have to type it by hand. This is the schema: <?xml version="1.0"?> <schema xmlns:xsd="http://www.w3.org/

  • Firefox shuts down when I try to print, what can I do?

    When I try to print, Firefox freezes and the program stops responding and I have to shut it down and restart it. And the problem persists...

  • Video Codecs Affect iTunes?

    Hello, I have the same prob as haps below. I followed the instructions. But I was wondering, do video codecs affect iTunes at all? Because this problem has been happening for me since I've installed video codecs to watch video on my comp (not thru iT