Any way to improve FR?

After trying it for a few weeks, FR feels like the "other guys" developed it. Are there workarounds, alternatives, etc for any of the following (I've looked here and not found anything)
1. Takes several clicks on the remote to get FR started
2. You always have to go through the menu from the start -- no way to go directly to frequently used media directories
3. Menu font is way too large -- often can't tell one item from another.
4. FR often "waits" at some items when scrolling through lists, for no apparent reason.
5. Attempts to rapidly scroll up and down menu lists often result in a FR unexpected quit.
6. The level of control for FF and REW is not fine enough -- jumps in 30 second increments.
7. After leaving FR, it keeps running for up to 15 minutes, preventing ejection of media it used.
Can't shake the impression that FR is an interesting demo and Apple never got around to a production release. Does anyone have hacks, alternatives, etc. that add the funtions performance and control one might expect?

hi, John, thanx for your help
here is the query with the 'order by' clause which returns and order 200000 rows
select * from (
select /*+ FIRST_ROWS */ dc_id,SCORE(1)
from dublincore where
contains(xml,'l%,de% inpath(//dc:title)',1)>0
ORDER BY SCORE(1) DESC
) where rownum<11
with the statistics...
Transcurrido: 00:05:55.03
Execution Plan
0 SELECT STATEMENT Optimizer=HINT: FIRST_ROWS (Cost=2 Card=1 B
ytes=26)
1 0 COUNT (STOPKEY)
2 1 VIEW (Cost=2 Card=1 Bytes=26)
3 2 TABLE ACCESS (BY INDEX ROWID) OF 'DUBLINCORE' (Cost=2
Card=1 Bytes=2022)
4 3 DOMAIN INDEX OF 'DUBLINCORE_XML_IDX' (Cost=2)
Statistics
213882 recursive calls
2 db block gets
377436 consistent gets
30399 physical reads
0 redo size
843 bytes sent via SQL*Net to client
503 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
10 rows processed
here is another query which returns 150000 rows and has an 'order by' clause too, but this returns in 2 seconds...
select * from (
select /*+FIRST_ROWS(10)*/ dc_id,SCORE(1)
from dublincore where
contains(xml,'l%,de% inpath(//dcterms:isPartOf)',1)>0
order by SCORE(1) desc
) where rownum<11
with statistics
Transcurrido: 00:00:04.04
Execution Plan
0 SELECT STATEMENT Optimizer=HINT: FIRST_ROWS
1 0 COUNT (STOPKEY)
2 1 VIEW
3 2 TABLE ACCESS (BY INDEX ROWID) OF 'DUBLINCORE' (Cost=2
Card=1 Bytes=100)
4 3 DOMAIN INDEX OF 'DUBLINCORE_XML_IDX' (Cost=2)
Statistics
8358 recursive calls
2 db block gets
5979 consistent gets
64 physical reads
0 redo size
844 bytes sent via SQL*Net to client
503 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
10 rows processed

Similar Messages

  • Is There any way to improve the performance on this code

    Hi all can any one tell me how to improve the performance of this below code.
    Actually i need to calculate opening balance of gl account so instead of using bseg am using bsis
    So is there any way to improve this code performance.
    Any help would be appreciated.
    REPORT  ZTEMP5 NO STANDARD PAGE HEADING LINE-SIZE 190.
    data: begin of collect occurs 0,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
           TOT   LIKE BSIS-WRBTR,
    end of collect.
    TYPES: BEGIN OF TY_BSIS,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
    END OF TY_BSIS.
    DATA: IT_BSIS TYPE TABLE OF TY_BSIS,
          WA_BSIS TYPE TY_BSIS.
    DATA: TOT TYPE WRBTR,
          SUMA TYPE WRBTR,
          VALUE TYPE WRBTR,
          VALUE1 TYPE WRBTR.
    SELECTION-SCREEN: BEGIN OF BLOCK B1.
    PARAMETERS:  S_HKONT LIKE WA_BSIS-HKONT DEFAULT '0001460002' .
    SELECT-OPTIONS: S_BUDAT FOR WA_BSIS-BUDAT,
                    S_AUFNR FOR WA_BSIS-AUFNR DEFAULT '200020',
                    S_BELNR FOR WA_BSIS-BELNR.
    SELECTION-SCREEN: END OF BLOCK B1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-NAME = 'S_HKONT'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      SELECT MONAT
             HKONT
             BELNR
             BUDAT
             WRBTR
             SHKZG
             SGTXT
             AUFNR
             FROM BSIS
             INTO TABLE IT_BSIS
             WHERE HKONT EQ S_HKONT
             AND   BELNR IN S_BELNR
             AND   BUDAT IN S_BUDAT
             AND   AUFNR IN S_AUFNR.
    *  if sy-subrc <> 0.
    *    message 'No Data' type 'I'.
    *  endif.
      SELECT SUM( WRBTR )
             FROM BSIS
             INTO COLLECT-TOT
             WHERE HKONT EQ S_HKONT
             AND BUDAT < S_BUDAT-LOW
             AND AUFNR IN S_AUFNR.
    END-OF-SELECTION.
      CLEAR: S_BUDAT, S_AUFNR, S_BELNR, S_HKONT.
      LOOP AT IT_BSIS INTO WA_BSIS.
    IF wa_bsis-SHKZG = 'H'.
       wa_bsis-WRBTR = 0 - wa_bsis-WRBTR.
    ENDIF.
        collect-MONAT  = wa_bsis-monat.
        collect-HKONT  = wa_bsis-hkont.
        collect-BELNR  = wa_bsis-belnr.
        collect-BUDAT  = wa_bsis-budat.
        collect-WRBTR  = wa_bsis-wrbtr.
        collect-SHKZG  = wa_bsis-shkzg.
        collect-SGTXT  = wa_bsis-sgtxt.
        collect-AUFNR  = wa_bsis-aufnr.
        collect collect into  collect.
        CLEAR: COLLECT, WA_BSIS.
      ENDLOOP.
      LOOP AT COLLECT.
        AT end of HKONT.
          WRITE:/65 'OpeningBalance',
                 85  collect-tot.
          skip 1.
        ENDAT.
        WRITE:/06 COLLECT-BELNR,
               22 COLLECT-BUDAT,
               32 COLLECT-WRBTR,
               54 COLLECT-SGTXT.
        AT end of MONAT.
          SUM.
          WRITE:/ COLLECT-MONAT COLOR 1.
          WRITE:32 COLLECT-WRBTR COLOR 1.
          VALUE = COLLECT-WRBTR.
          SKIP 1.
        ENDAT.
        VALUE1 = COLLECT-TOT +  VALUE.
        AT end of MONAT.
          WRITE:85 VALUE1.
        ENDAT.
      endloop.
      CLEAR: COLLECT, SUMA, VALUE, VALUE1.
    TOP-OF-PAGE.
      WRITE:/06 'Doc No',
             22 'Post Date',
             39 'Amount',
             54 'Text'.
    Moderator message : See the Sticky threads (related for performance tuning) in this forum. Thread locked.
    Edited by: Vinod Kumar on Oct 13, 2011 11:12 AM

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • Any way to improve response time with iPhoto 8.1.2 using Mountain Lion ?

    Any way to improve response time with iPhoto 8.1.2 using Mountain Lion ?  Can you store photos on a separate hard drive and use a smaller file for openning iphoto?

    How did you move your iPhoto library to the new system?  the recommended way is Connect the two Macs together (network, firewire target mode, etc)  or use an external hard drive formed Mac OS extended (journaled) and drag the iPhoto library intact as a single entity from the old Mac to the pictures folder of the new Mac - launch iPhoto on the new mac and it will open the library and convert it as needed and you will be ready move forward.
    LN

  • Is there any way of improving compatibility between ipad 4 and windows xp                                                     p

    is there any way of improving compatibility beween ipad and windows xp

    Hi Smokey0422,
    Although iTunes works with Windows XP, iCloud is not supported - so that does limit the functionality somewhat.
    See the resources for your iPad at the following site:
    http://www.apple.com/support/ipad/
    See the setup instructions below:
    http://www.apple.com/icloud/setup/pc.html
    Cheers,
    Judy

  • HT5429 Map Problem: I can't see the roads in Standard view. Is there any way to improve this serious problem?

    Map Problem: I can't see the roads in Standard view. Is there any way to improve this serious problem?

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • Is there any way to improve Query which searches XML data from a table??

    hi all,
    i have a table which have one column say 'colA' as Varchar(max) datatype which  i  save xml data and it have other cols too 
    Currently i am searching data inside this table using like operator
    eg:
    Select * from tablename where colA like ‘%<tagname>parameterstringvalue</tagname>%’
    when i check with the Execution plan i could see it Takes 82% for clusterd index scan ( primarykey col
    not ColA)
    i added new non clusterd index for the same with include col as ColA and i found nonclusterd index scan
    with same estimated I O cost and Extimated operator cost as clusterd index scan
    My Question is :-
    1. why didnt nonclusterd index seek come?
    2. In What way i can improve perfomance for such situvation? i had seen couple of post suggesting to rewrite the Query as SELECT
    * FROM myTable WHERE CONTAINS (myCol1, myCol2, "myString").
    I Try creating Full text index and found cost increased compared to the original Query ?
    3. As per my assumption the wild charecter ('%') in begining makes perfomance issue is there any option
    or an alternative for such case?

    hi...i can give a skeleton 
    --Table Structure------------
    Table1:-
    (colA - int(PK),
    ColB - Varchar(max),
    ColC-uniquieidentifier,
    ColD-datetime,
    ColE-Bit)
    It have clusterd index for ColA
    Table2:-
    (ColA-int(fk)
    colF-int(pk)
    colG-varchar(max),
    ColH-uniqueidentifier,
    colI-int,
    colJ-int
    ColK-date)
    -----------------Query Skeleton-------------------: 
    select Distinct
    s.colA,
    s.ColB,
    S.colC,
    S.colD
    from Table1 s with (nolock)
    left outer join table2 Q with (nolock) on s.colA=q.ColA
    where Q.ColA is null
    and s.colB like '%<tag>sometext</tag>%'
    and s.colD >='1/1/2010'
    and s.colD <='1/1/2014'
    i hope this will help to understand it clearly.........

  • Is there any way to improve the Brush tool of Flash to draw as natural as in Photoshop?

    Hi,
    it's really bothering me and many other traditional animators that Adobe still hasn't improved the brush tool of Flash for people that want to really draw something on it.
    I really really wish to be able to draw on flash as natural and consistent as in photoshop, without those stupid automatic smoothing options or the random roughness of it.
    Flash is a great too for traditional animators but the brush is terrible.
    Either make Photoshop as good for animating traditional as Flash, or give flash a brush that is nice as standard Photoshop brush.
    I just want a normal brush is smooth and natural, that's all. Why are vector tools so weak for drawing????
    PLEASE ADOBE, DO SOMETHING!!!

    Hi Sunil,
    Iam not sure of the settings but if u can change the code then u can change the file format passed to FM SO_DOCUMENT_SEND_API1 ,which sends email to the recipient u desire..
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
      EXPORTING
        document_data                            = w_doc_data
       PUT_IN_OUTBOX                         = 'X'
       SENDER_ADDRESS                    =   l_v_sender_address
       SENDER_ADDRESS_TYPE          = l_v_sender_address_type
       COMMIT_WORK                          = 'X'
    IMPORTING
       SENT_TO_ALL                            = sent_all
      TABLES
       packing_list                                = it_packing_list
       CONTENTS_BIN                         = it_attachment
       CONTENTS_TXT                         = it_message
       receivers                                    = it_receivers
    it_packing_list hs the file format field..
    For any clarification , please revert back..
    regards,
    Dinesh.
    Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 4:08 PM

  • HT201412 Overall reliability do my ipad has gone down.   Any way to improve or do I look elsewhere?

    Basically, my ipad used to be rock solid but now I have hangs, reboots, froozen videos, periods of unresponsiveness, videos that get stuck downloading and need to restart. 
    Is there anything I can do or is the new state of the software?  I know how to terminate apps and reboot it but it just happens too often and I don't want to deal with it.

    Report it to the school authorities and hope for the best.
    Change your iTunes (Apple ID) password along with any other password that was stored in the iPod.  If any passwords are associated with credit cards, contact the CC company and get your card replaced (with a new number).  If any passwords are associated with your bank or any savings institution, contact them also and discuss approprate action with them.
    The "Find my..." function is pretty much useless if the device is in the hands of a thief.  All that is necessary is for the thief to connect to any computer with iTunes and "Restore as new."
    The only real protection you have is with the personal information on the device rather than the physical device itself.  Something as small as an iPod should have a strong 8-digit (or longer) password AND be configured for automatic wipe in the event of ten consecutive incorrect password entries.

  • HT201822 Is there a way to improve Apple's default "ignore accidental trackpad input" function?

    I find I frequently end up typing in the wrong place and/or deleting text because the size of the trackpad leads me to touch it accidentally, usually with my right hand below the thumb. Is there any way to improve on the built in function in Lion?

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

  • Are they any ways to help performance on JMS

    I need to get as many messages as I can to go thru the JMS queues, is there any way to improve the JMS Queueing performance for PTP ?
    Thanks, John

    Hi John,
    Briefly:
    Start the consumer before you start the producer so that the initial messages do not need to queue.
    DUPS_OK_ACKNOWLEDGE and AUTO_ACKNOWLEDGE perform better than CLIENT_ACKNOWLEDGE.
    Use separate transactional sessions and non-transactional sessions for transactional and non-transactional messages.
    Tune the Destination parameters: a smaller capacity increases message throughput; a higher redelivery delay and lower redelivery limit reduces the overhead.
    Choose NON_PERSISTENT messages wherever appropriate to avoid the persistency overhead.
    Set the TimeToLive value as low as feasible (default is for messages to never expire).
    Receive messages asynchronously with a MessageListener implementation.
    Choose the message type that minimizes memory overheads.
    HTH
    Martin

  • Is there any way to email photos without having to use the themes?  I just want to send them from my email the way you used to be able to without all this "new and improved" nonsense.

    In the old iPhoto, if I wanted to email pictures, I would select the ones I wanted, have them sent as "smaller" to make them easier to process, and iPhoto would open my mail and I could type the names and I wanted and off they'd go.  And, I'd have a copy saved in my "sent" folder.
    Now, you have to deal with these ridiculous themes and in order to get a copy of your sent, you have to blind cc yourself.  This is definitely not an improvement in my mind.
    So I ask, is there any way around this or am I stuck?  I really like iPhoto, but this is enough to send my back to Picasa.

    Never mind gang.  I started seaching through some other support questions, and actually stumbled across the solution to my problem.
    Thanks to "John".

  • Is there any way to create custom views, like in Thunderbird & Evolution?

    Hi Folks,
    I have recently switched to Mac. Before this I was using Linux. For mail I used Thunderbird (TB) for many years, and then eventually switched to Evolution Mail (EM) for its smoother integration into Linux.
    On both TB and EM I revolved my work flow around custom folder views. As new email came in I would label it (on EM, or tag it on TB). I have numerous inboxes (email accounts) so I would generally be starting out in a smart folder that displays all mail in each inbox. I would most of the time view that smart folder with a Custom View filter in place. The filter would simply display ONLY mail with NO tags/labels.
    Once my filter inbox showed NO messages it meant I had labeled everything. I would them use other smart folders to display mail with certain labels AND NO "Completed" label. That way I could go to my "Reply ASAP" folder and see what needed my immediate attention. Each email I replied to I would then add the label COMPLETED and it would vanish from my view.
    I explain the above in case someone has specific suggestions on how to achieve a similar workflow on Mail.
    In short, what I am wondering is this:
    - Is there a built in way to filter a folder on the spot (with a drop down list of predefined and custom Views) --- I have looked and so far did not find this feature
    - Is there a way to do this with a script or add-on? I have looked at many and not found a suitable one yet.
    I am appealing to the knowledge of those with more experience in Mail. It is new to me.
    I am currently using TB on my Mac because it gives me the above feature. BUT it does not have the same degree of integration with the OS and other Mac specific apps that Mail has. Thus I am keen to stick with Mail.
    With thanks,
    Jonathan

    In addition to above:
    I have installed a trial of Mailtags. It certainly improves the tagging capability of Mail.
    I have also looked at the Smart Mailboxes and Smart Mailbox Folders.
    As far as I can tell, however, there is no option to set up a smart mailbox that ONLY shows message with NO LABEL or NO MAILTAG (as the case may be). I can display messages with particular TAGS but not NO tags.
    Is there any way to add more options to the Smart Mailbox filter system?
    Cheers,
    Jonathan

  • Is there any way to use a late 2009 21.5 inch iMac as an external screen for an early 2011 MacBook Pro?

    Hi there,
    I'm trying to work out if there is any way that I can use my late 2009 21.5 inch iMac (running OS X 10.6.8; mindisplay port) as an external or second monitor when connected to my early 2011 13" MacBook Pro (OS X 10.6.8; thunderbolt).
    From what I've read online, I gather that I cannot simply connect the two with a minidisplay port to thunderbolt cable, as the iMac does not support target display mode. I know I can 'share screens', but this doesn't give me much of an improvement on size compared to just using my MacBook.
    Are there any other potential work arounds I might have missed? Any suggestions (or even conclusive answers to suggest I'm wasting my time by continuing to think about it!) would be much appreciated.
    Many thanks!

    Sorry but no, you are asking about Target Display Mode and the 2009/2010 21.5" iMacs did not support that, only the 27" iMacs did. You can read up on TDM in Apple's Target Display Mode: Frequently Asked Questions (FAQ)

  • Any way to bypass server certificate validation in AIR client?

    Is there any way to bypass certificate validation and server identification for secure Channels or ChannelSets? I am aware of the existing workaround to import my own certificate into the user's CA chain, but I feel that having greater control on the client-side is preferred.
    If there is not a way to bypass client-side certificate validation I will be filing this as a feature request at http://bugs.adobe.com
    Thanks,
    Karl
    When producing a client-server solution it is occasionally useful to override the default behavior of HTTPS certificate validation and server identification. I would like to request the ability to override these systems in the AIR environment for applications installed with the "UNRESTRICTED" system access option.
    Simply allowing the use of self-signed certificates without verification (perhaps signified by a secure protocol identifier other than "https") would provide adequate functionality, but some users may desire finer control.
    This issue is partly addressed by bugs FP-711 and FP-214 but I feel it is important that any enhancement include the BlazeDS Channel in the case that the AIR application has unrestricted system access.
    When deploying an AIR client application which is securely connected to a network appliance which is controlled by the same developer it is desirable to bypass the overhead of acquiring a PKI issued certificate for every customer. Independent, open-source, and not-for-profit developers could see increased ability to adopt the AIR platform with this improvement.
    When deploying a network appliance to be used with an AIR application the requirement for a PKI issued certificate complicates the deployment of the network appliance by requiring DNS access, and thereby requiring Internet connectivity. Some customer sites require network isolation.
    It is possible to generate a developer-specific certificate and import that certificate into the AIR client host's Trusted Root Certification Authorities list. This workaround deteriorates PKI best practices and complicates the installation of AIR software. It is not possible to depend solely on the ".air" packaging for installation with the added requirement to install a new CA on the user's host.
    Java provides the requested functionality by allowing developers to provide their own implementations of javax.net.ssl.TrustManager for verification and javax.net.ssl.HostnameVerifier for identification. We have used this technique to communicate over the SDEE protocol with Cisco IDS devices which do not usually have PKI issued certificates.

    Hi Robert,
    No specific option to controle TOP/First features use.
    However other options exist to control IQ resources.
    Eg. Query_temp_sopace_limit, Query_Time, Max_IQ_Threads_Per_Connection, Max_Cartesian_Result.
    Regards,
    Tayeb.

  • Is there a way of improving my graphics on my early 2011 macbook pro 13"?

    Does anyone know a way of improving the graphics capability for OpenGL with the Intel 3000 chips in the early 2011 MBP 13"? I bought it not realising the graphics chips had been downgraded and now as a result struggle to do any CGI work that I rely on my computer to do.

    CHRIBAM wrote:
    I'm more inclined to go with Ogelthorpe's advice (if I had the cash).
    I agree with Ogelthorpe as well, the 15" and the 17" MacBook Pro also have dedicated graphics cards which give more performance than the Intel HD 3000 only graphics, which is really of MacBook type performance for consumer user. (playback of video and that's about it)
    Still wondering why Apple went backwards for graphics in the 13", I completely missed the change.
    I'm peeved at Apple for the fact that they didn't make a clear distinction of the disadvantages of the 13" with no dedicated graphics card then lumped it in with the 15" and 17" which do.
    To Apple it's a matter of performance for price, the 13" scores 11 on Cinebench, the 15/17" score 30 and 45, so the  13" doesn't even come close. But it comes in the same silver case, the same "MacBook Pro" name, when in fact it's not so.
    Apple knows people would be attracted to the performance of the MacBook Pro name in a small size factor, the price is also attractive to the younger crowd, the younger crowd are also interested in running 3D games, which need a more powerful video card.
    Your not the first who's complained and feels burned, you trusted Apple was selling you a powerful MacBook Pro machine and you've got a consumer machine instead.
    The 13" Mac laptop should have gotten it's own category, called it a MacBook instead and it should have come with white or black case. But that would have angered Intel most likely, who are trying to push integrated graphics on their CPU's so they own the whole show eventually.
    It's going to take a long time before CPU integrated graphics is ever going to beat dedicated GPU graphics, because 3D game detail is always going to go up until it finally reaches 3D raytracing at 200 fps.
    What Apple is doing is trying to get folks hooked on lessor quality/detail games, the ones you see on iPads and iPhones, and away from wanting rich detail which needs a powerful dedicated video card.
    So Apple lumps the 13" MacBook in with the MacBook Pro line, try to force the issue, next they will try it with the 15", integrated graphics on the low end model. Then again only dedicated graphics on the 17" model and so forth. Eventually developers won't make as many 3D games for Mac's because most people buy laptops, cuts into their potential sales.
    If you really want to run 3D games, you have to go with a Windows 7 desktop where the video card can be swtiched out.
    http://www.cbscores.com/index.php?sort=ogl&order=desc

Maybe you are looking for

  • Can't open gmail attachment in safari, OS X 10.8.2

    Hi, I just got my new macbook air and updated to OS X Mountain Lion 10.8.2. I can't download attachments in Gmail. I click on "download" next to a file, but nothing happens. I can sometimes work around it by clicking "view", then "download original",

  • Just done the latest i tunes update and after a restart i tunes will not open

    just done the latest i tunes update now it wont open

  • Transaction Timeout behaviour

    I am doing some testing to reproduce a production scenario where we ended up with messages stuck in JMS queue in receive state ( weblogic 10.3.3)... The flow is as below: JMS Queue --> Transactional MDB with resource reference The MDB makes a callout

  • Exporting using Quicktime Converter in FCP

    I am trying to export a short film using QuickTime conversion, file size PAL 720 x 576 16:9. I am saving it on my external which has loads of space and is MAC formatted it gets half way through and then just comes up as ERROR. This is the first time

  • Why does Safari's Top Sites open when I click on View in iTunes?

    For some reason, whenever I click on a link in Safari that requires another application to open, (iTunes for example), now a new browser window opens to Safari's Top Sites page.  It appears to have started after the recent update. Anybody else having