No support for the N91 8GB Music Edition within iSync ?

Hi all.
After checking on the Apple website and seeing the N91 was supported by isync, I went out and purchased the newest version, the N91 8GB Music Edition. Basicly the N91, with an 8GB hard disk and a firmware update.
However when I tried to use iSync it said it's not support, arrrr !!
Can anyone help with this issue, I've had a look in the metafile and did a google for help, but there talking about the N91 working with older versions of iSync.
I'm sure all it needs is some kind of update to the iSync metafile, but what and where? It's paired ok, and can access the drive via Bluetooth so know that's ok, have also tried USB but it doesn't even see the phone.
Please help
Thanks

Problem Sorted
Remove all bluetooth pairing of the N91 (if exitis) from the Mac and the phone and backup the file your going to edit below.
- Find the iSync application.
- Press CTRL and click with the mouse, and select Show Package
- Then go to: Contects/Plugins/Nokia-N91.phoneplugin/Contents/Resources
- Using TextEdit edit MetaClasses.plist
- Search for N91-1 and replace with N91-2
- Save the files
And that's it
Mr Apple one for the next iSync update ?
My the way so far this phone is great !!

Similar Messages

  • Selective XML Index feature is not supported for the current database version , SQL Server Extended Events , Optimizing Reading from XML column datatype

    Team , Thanks for looking into this  ..
    As a last resort on  optimizing my stored procedure ( Below ) i wanted to create a Selective XML index  ( Normal XML indexes doesn't seem to be improving performance as needed ) but i keep getting this error within my stored proc . Selective XML
    Index feature is not supported for the current database version.. How ever
    EXECUTE sys.sp_db_selective_xml_index; return 1 , stating Selective XML Indexes are enabled on my current database .
    Is there ANY alternative way i can optimize below stored proc ?
    Thanks in advance for your response(s) !
    /****** Object: StoredProcedure [dbo].[MN_Process_DDLSchema_Changes] Script Date: 3/11/2015 3:10:42 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    -- EXEC [dbo].[MN_Process_DDLSchema_Changes]
    ALTER PROCEDURE [dbo].[MN_Process_DDLSchema_Changes]
    AS
    BEGIN
    SET NOCOUNT ON --Does'nt have impact ( May be this wont on SQL Server Extended events session's being created on Server(s) , DB's )
    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
    select getdate() as getdate_0
    DECLARE @XML XML , @Prev_Insertion_time DATETIME
    -- Staging Previous Load time for filtering purpose ( Performance optimize while on insert )
    SET @Prev_Insertion_time = (SELECT MAX(EE_Time_Stamp) FROM dbo.MN_DDLSchema_Changes_log ) -- Perf Optimize
    -- PRINT '1'
    CREATE TABLE #Temp
    EventName VARCHAR(100),
    Time_Stamp_EE DATETIME,
    ObjectName VARCHAR(100),
    ObjectType VARCHAR(100),
    DbName VARCHAR(100),
    ddl_Phase VARCHAR(50),
    ClientAppName VARCHAR(2000),
    ClientHostName VARCHAR(100),
    server_instance_name VARCHAR(100),
    ServerPrincipalName VARCHAR(100),
    nt_username varchar(100),
    SqlText NVARCHAR(MAX)
    CREATE TABLE #XML_Hold
    ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY , -- PK necessity for Indexing on XML Col
    BufferXml XML
    select getdate() as getdate_01
    INSERT INTO #XML_Hold (BufferXml)
    SELECT
    CAST(target_data AS XML) AS BufferXml -- Buffer Storage from SQL Extended Event(s) , Looks like there is a limitation with xml size ?? Need to re-search .
    FROM sys.dm_xe_session_targets xet
    INNER JOIN sys.dm_xe_sessions xes
    ON xes.address = xet.event_session_address
    WHERE xes.name = 'Capture DDL Schema Changes' --Ryelugu : 03/05/2015 Session being created withing SQL Server Extended Events
    --RETURN
    --SELECT * FROM #XML_Hold
    select getdate() as getdate_1
    -- 03/10/2015 RYelugu : Error while creating XML Index : Selective XML Index feature is not supported for the current database version
    CREATE SELECTIVE XML INDEX SXI_TimeStamp ON #XML_Hold(BufferXml)
    FOR
    PathTimeStamp ='/RingBufferTarget/event/timestamp' AS XQUERY 'node()'
    --RETURN
    --CREATE PRIMARY XML INDEX [IX_XML_Hold] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index
    --SELECT GETDATE() AS GETDATE_2
    -- RYelugu 03/10/2015 -Creating secondary XML index doesnt make significant improvement at Query Optimizer , Instead creation takes more time , Only primary should be good here
    --CREATE XML INDEX [IX_XML_Hold_values] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index , --There should exists a Primary for a secondary creation
    --USING XML INDEX [IX_XML_Hold]
    ---- FOR VALUE
    -- --FOR PROPERTY
    -- FOR PATH
    --SELECT GETDATE() AS GETDATE_3
    --PRINT '2'
    -- RETURN
    SELECT GETDATE() GETDATE_3
    INSERT INTO #Temp
    EventName ,
    Time_Stamp_EE ,
    ObjectName ,
    ObjectType,
    DbName ,
    ddl_Phase ,
    ClientAppName ,
    ClientHostName,
    server_instance_name,
    nt_username,
    ServerPrincipalName ,
    SqlText
    SELECT
    p.q.value('@name[1]','varchar(100)') AS eventname,
    p.q.value('@timestamp[1]','datetime') AS timestampvalue,
    p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') AS objectname,
    p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') AS ObjectType,
    p.q.value('(./action[@name="database_name"]/value)[1]','varchar(100)') AS databasename,
    p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') AS ddl_phase,
    p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') AS clientappname,
    p.q.value('(./action[@name="client_hostname"]/value)[1]','varchar(100)') AS clienthostname,
    p.q.value('(./action[@name="server_instance_name"]/value)[1]','varchar(100)') AS server_instance_name,
    p.q.value('(./action[@name="nt_username"]/value)[1]','varchar(100)') AS nt_username,
    p.q.value('(./action[@name="server_principal_name"]/value)[1]','varchar(100)') AS serverprincipalname,
    p.q.value('(./action[@name="sql_text"]/value)[1]','Nvarchar(max)') AS sqltext
    FROM #XML_Hold
    CROSS APPLY BufferXml.nodes('/RingBufferTarget/event')p(q)
    WHERE -- Ryelugu 03/05/2015 - Perf Optimize - Filtering the Buffered XML so as not to lookup at previoulsy loaded records into stage table
    p.q.value('@timestamp[1]','datetime') >= ISNULL(@Prev_Insertion_time ,p.q.value('@timestamp[1]','datetime'))
    AND p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') ='Commit' --Ryelugu 03/06/2015 - Every Event records a begin version and a commit version into Buffer ( XML ) we need the committed version
    AND p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') <> 'Replication Monitor' --Ryelugu : 03/09/2015 We do not want any records being caprutred by Replication Monitor ??
    SELECT GETDATE() GETDATE_4
    -- SELECT * FROM #TEMP
    -- SELECT COUNT(*) FROM #TEMP
    -- SELECT GETDATE()
    -- RETURN
    -- PRINT '3'
    --RETURN
    INSERT INTO [dbo].[MN_DDLSchema_Changes_log]
    [UserName]
    ,[DbName]
    ,[ObjectName]
    ,[client_app_name]
    ,[ClientHostName]
    ,[ServerName]
    ,[SQL_TEXT]
    ,[EE_Time_Stamp]
    ,[Event_Name]
    SELECT
    CASE WHEN T.nt_username IS NULL OR LEN(T.nt_username) = 0 THEN t.ServerPrincipalName
    ELSE T.nt_username
    END
    ,T.DbName
    ,T.objectname
    ,T.clientappname
    ,t.ClientHostName
    ,T.server_instance_name
    ,T.sqltext
    ,T.Time_Stamp_EE
    ,T.eventname
    FROM
    #TEMP T
    /** -- RYelugu 03/06/2015 - Filters are now being applied directly while retrieving records from BUFFER or on XML
    -- Ryelugu 03/15/2015 - More filters are likely to be added on further testing
    WHERE ddl_Phase ='Commit'
    AND ObjectType <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND ObjectName NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND T.Time_Stamp_EE >= @Prev_Insertion_time --Ryelugu 03/05/2015 - Performance Optimize
    AND NOT EXISTS ( SELECT 1 FROM [dbo].[MN_DDLSchema_Changes_log] MN
    WHERE MN.[ServerName] = T.server_instance_name -- Ryelugu Server Name needes to be added on to to xml ( Events in session )
    AND MN.[DbName] = T.DbName
    AND MN.[Event_Name] = T.EventName
    AND MN.[ObjectName]= T.ObjectName
    AND MN.[EE_Time_Stamp] = T.Time_Stamp_EE
    AND MN.[SQL_TEXT] =T.SqlText -- Ryelugu 03/05/2015 This is a comparision Metric as well , But needs to decide on
    -- Peformance Factor here , Will take advise from Lance if comparision on varchar(max) is a vital idea
    --SELECT GETDATE()
    --PRINT '4'
    --RETURN
    SELECT
    top 100
    [EE_Time_Stamp]
    ,[ServerName]
    ,[DbName]
    ,[Event_Name]
    ,[ObjectName]
    ,[UserName]
    ,[SQL_TEXT]
    ,[client_app_name]
    ,[Created_Date]
    ,[ClientHostName]
    FROM
    [dbo].[MN_DDLSchema_Changes_log]
    ORDER BY [EE_Time_Stamp] desc
    -- select getdate()
    -- ** DELETE EVENTS after logging into Physical table
    -- NEED TO Identify if this @XML can be updated into physical system table such that previously loaded events are left untoched
    -- SET @XML.modify('delete /event/class/.[@timestamp="2015-03-06T13:01:19.020Z"]')
    -- SELECT @XML
    SELECT GETDATE() GETDATE_5
    END
    GO
    Rajkumar Yelugu

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • SP1 to R2 Upgrade - The installed Version of SQL Server is not supported for the operational database

    Hello, 
    Am trying to upgrade a SCOM SP1 environment to SCOM R2( 3 MGT servers, 1 GW and 2 Web console boxes )
    The prerequisites are failing and it is stating the following ; 
    Operational Database SQL Version Check - The installed Version of SQL Server is not supported for the operational database
    Data Warehouse  SQL Version Check - The installed Version of SQL Server is not supported for the data warehouse
    The SQL servers are running SQL 2012 SP1 64 Enterprise, which is compatible.
    All other pre-upgrade tasks have been done. 
    Help appreciated! 

    I'm having the exact same issue, I believe. I think that Tubble has problem with SCOM 2012. Not 2007.
    I've checked the compatibility list for both SCOM 2012 SP1 and R2. All newer Windows Server and SQL versions are supported. We're running the SQL 2012 SP1 x64 Standard edition on a Windows Server 2012 Standard.
    I even tried to move the database from SQL 2012 to an older SQL 2008 R2, but that's not supported either. Only upgrading. Not downgrading.
    So, I started checking the opsMgrSetupWizard.log file for clues. And the error message was there as well. But the reason why it says not supported is that it can't get the info about the OS version, so I guess it assumes the OS version is to low. The RPC
    service can not be reached.
    [10:29:11]: Error: :GetRemoteOSVersion(): Threw Exception.Type: System.Runtime.InteropServices.COMException, Exception Error Code: 0x800706BA, Exception.Message: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
    [10:29:11]: Error: :StackTrace: at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
    at System.Management.ManagementScope.InitializeGuts(Object o)
    at System.Management.ManagementScope.Initialize()
    at System.Management.ManagementObjectSearcher.Initialize()
    at System.Management.ManagementObjectSearcher.Get()
    at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SetupValidationHelpers.GetRemoteOSVersion(String remoteComputer)
    [10:29:11]: Debug: :IsSQLOnAValidComputer: remote OS version string was null or empty.
    [10:29:11]: Error: :Error:IsValidSQLVersionCheck: SqlServer OS version is too low.
    [10:29:11]: Debug: :**************************************************
    [10:29:11]: Error: :<![CDATA[CheckPrerequisites: Logic Type:and IsValidOMDBSQLVersionCheck: 2]]>
    [10:29:11]: Error: :
    [10:29:11]: Error: :CheckPrerequisites: OMDBSqlVersionCheckTitle: Failed
    [10:29:11]: Error: :
    [10:29:11]: Debug: :**************************************************
    [10:29:33]: Error: :GetRemoteOSVersion(): Threw Exception.Type: System.Runtime.InteropServices.COMException, Exception Error Code: 0x800706BA, Exception.Message: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
    [10:29:33]: Error: :StackTrace: at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
    at System.Management.ManagementScope.InitializeGuts(Object o)
    at System.Management.ManagementScope.Initialize()
    at System.Management.ManagementObjectSearcher.Initialize()
    at System.Management.ManagementObjectSearcher.Get()
    at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SetupValidationHelpers.GetRemoteOSVersion(String remoteComputer)
    [10:29:33]: Debug: :IsSQLOnAValidComputer: remote OS version string was null or empty.
    [10:29:33]: Error: :Error:IsValidSQLVersionCheck: SqlServer OS version is too low.
    [10:29:33]: Debug: :**************************************************
    So, in our case this was just a FW that was blocking some high ports between management server and SQL. I believe TCP port 135 also needs to be open.
    Let's hope this fixes your issue as well, Tubble.
    Have a great day!

  • [Consolidation-Locked] Please add RAW support for the Nikon D600 to Lightroom as soon as possible!

    My Fair Adobe,
    Please add RAW support for the Nikon D600 to Lightroom as soon as possible!
    ViewNX lets me get to the images, but come on!!! I know Lightroom, and you, ViewNX, are no Lightroom.
    Yes, I see everyone else ASKING for D600 support. I'm here to beg for it! Don't make me wait much longer!
    Message title was edited by: Brett N
    Message title was edited by: Brett N

    Rob, my reading of your site is that this plug-in copies settings from raw to jpeg, does it work the other way around as well?
    Rob Cole wrote:
    One of the great things about the new 0-based defaults and linear tone curve is:
    You can develop the jpegs now, in Lightroom, and then sync the settings to the raws later (e.g. using RawPlusJpeg), and provided you select a matching camera profile, they will look almost the same (white balance won't translate over, but everything else will, more or less). Beware lens corrections applied to the raws might alter the registration of precision local adjustments.
    Note: I recommend shooting with ADL off in order for this to work better, and consider turning sharpening off in camera as well, and noise reduction and everything else to whatever extent is possible.
    Rob

  • Some features of Mac OS X Lion are not supported for the disk

    At the beginning of the installation on my MacBook Pro (early 2008, non-unibody) this alert appeared. The disk is partitioned into three partitions: 1. = Photoshop-scratch, 2. = System, 3. = Bootcamp. It seems that this causes the system-message. What could be the reason for that: The Photoshop-partition or Bootcamp? Is it possible to erase just the PS-partition and then install Lion or do I have to reformat the disk?
    Message was edited by: Stefan Gregor (... **** orthography ...)

    OS X Lion: 'Some features of Mac OS X Lion are not supported for the disk (volume name)' appears during installation

  • [Consolidation-Locked] RAW support for the Nikon D600?

    When will Adobe update RAW support for the Nikon D600?
    Message title was edited by: Brett N

    Lightroom 4.2 and Camera Raw 7.2 (Elements 11) are currently available and provide support for the Nikon D600.
    Go to Help > (Check for) Updates to install.
    Please see: http://forums.adobe.com/message/4785056

  • Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.

    Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.
    I have had to erase my disk since then with trouble with Apple Store not recognising my machine and the reload from Time Machine has given complications . Can you please cancel my trial and return my Trial money.

    If you paid for what you used then it was not a trial.
    Look thru the following links and use the chat option if required for your situation:
    Cancel your membership or subscription | Creative Cloud
    https://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    https://forums.adobe.com/thread/1703848
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • I have Video camera movies that are HD format.. I am doing editing work on them using Final Cut Pro, but using DV PAL format for the projects I am editing. When I then tried to copy my work done in FCP Project that's originally DV PAL , into a new FCP Pro

    I have Video camera movies that are HD format.. I am doing editing work on them using Final Cut Pro, but using DV PAL format for the projects I am editing. When I then tried to copy my work done in FCP Project that's originally DV PAL , into a new FCP Project that is HD, and tried reconnect media with original HD movies (video), the sequence project got distorted for all the text, shapes used and all.. everything changed its orientation and scale.. Is there a way by which I can preserve my work done on DV PAL and switch it preserving its proportions, scale and orientation, but on a HD project sequence?? Appreciate your help and advice..

    Yes.  A couple of ways that might work.
    First Way
    What you need to do is load one of your hd clips in the viewer and edit into a new HD sequence.  Does it display correctionly? 
    OK, select the clip in the hd timeline and copy (command-c).  Now go to the HD sequence with the material that's distorted.  Select all (command-a) and paste attributes (option-v) and choose basic motion and distort.  That should maek things work.  What won't work is anything that you've adjusted as far as basic motion or distort in your PAL sequence.  That I'm pretty sure you'll have to redo.
    Second Way. 
    Choose your original PAL sequence and do a Media Manage changing the sequence preset to the appropriate HD paramenters with the media offline.  You then should be able to reconnect these clips with your original HD media.

  • How can I view my full billing history for the app and music stores without iTunes installed?

    I just received an email receipt from Paypal showing a $12.99 purchase from iTunes. I almost NEVER purchase anything over around five dollars in the app or music store. Since PayPal does not show what this purchase was for, I have not received the receipt from Apple yet, and I cannot find anyway to look up online what this purchase was for....I need help to find out ASAP what this purchase was. If my account has been compromised or if I have been incorrectly charged for something, I would like to get the issue handled immediately. I do not want to install iTunes on my PC (nor should I have to for Pete's sake), but I cannot see anything recent at all in my app or music history on my iPad (not that I would ever purchase anything for $12.99 anyway...I just don't). Thanks in advance for any tips!

    How can I view my full billing history for the app and music stores without iTunes installed?
    No.
    If my account has been compromised
    If you even think this may have happened, immediately change your password.
    See this -> Apple ID: Changing your password

  • Why no RAW support for the Fuji FinePix HS10?

    This camera is well over a year old.  Why is there no support for the RAW file?

    It is definitely not only Fuji. I used a Panasonic Lumix FX-150 before that has been supported by Adobe Camera Raw for quite some time now. I replaced that camera by a Lumix LX5, but I see that the FX-150 is still not supported by Apple Camera Raw and probably never will.
    If you want wide range RAW support, use Lightroom. (Not to say that Aperture doesn't have its strengths, e.g. support for geocoding.)

  • Why no support for the Leica M9 in LR 2.6 RC?

    Hi - bemused that there's no support for the M9 in this release (especially as LR is bundled with the M9).  Even more confusing as the Standard Adobe calibration profile for the M9 that comes with the LR3 Beta is pretty good (beats the embedded profile that comes with the Leica DNGs) - and this can be added to the LR2.5 profile library with a bit of copying and pasting.
    I'd be grateful to hear from Adobe if there's any chance of a good M9 profile making it to the 2.6 final version.  Seems a shame to miss this opportunity.
    Thanks
    Chris Tribble

    Hello Chris,
    thanks for the nice feedback.
    For the moment, I will use LR for the fast preview of all images, 
    cataloging etc., and RawDeveloper for the fine tuning, as often as the 
    image permit it.
    (sorry for my english!)
    Lets hope that we will get through all that without loosing our 
    perfectly nice temper !
    All the best to you,
    Alain
    Le 11 déc. 09 à 09:39, Chris_Tribble a écrit :
    Alain - 1eme - je suis un particulier - aucun fonction chez Adobe.  
    Aussi -
    je m'excuse d'avant pour mon Francais bottant et sans elegance! Je 
    n'ai
    jamais fais des etuded en francais - et aussi mon clavier anglais 
    manquent
    les diacritiques...
    >
    Quelque petit reponses.
    >
    >>>> First I have installed the 2.6 version, that is said to work
    >>>> alongside the 2.5... but of course, it has replaced it. How to
    >>>> reinstall the 2.5 alongside, hase they have the same name ?
    >>>
    >>> C'est pas la peine - 2.6 est meilleur - vous pouvez rester
    >> avec ca...
    >
    >> ok, mais c'est tout de même juste le contraire de ce que
    >> disent sur le site Adobe vos notes d'installation (rien de
    >> très neuf non plus en cette matière, hélas, quant aux infos
    >> approximatives ou manquantes d'Adobe)
    >
    CT: Pas vrais je crois - Version 3 beta peut co-exister - mais 2.6 
    doit
    remplacer 2.5...
    >
    >>>> And then, I have tried to find a M9 profile, read your
    >> posts, do my
    >>>> job, install the beta 3.0, fond the "M9 Digital Camera Adobe
    >>>> Standard.dcp", put a copy of that in any cameraRaw description
    >>>> files... and so what ? In 2.6, I only have the choice between
    >>>> "embeded" (=incorporé in french) and "Adobe standard" when
    >> I select a
    >>>> M9 dng file / but I've more choice when I select a M8 dng
    >> file (ACR
    >>>> 4.4, ACR 3.6, Adobe standard, Adobe standard beta 2,
    >> camera standard,
    >>>> camera standard beta 2).
    >>>> 1. Do I miss something ?
    >>>> 2. what should I do to find and use the M9 specific profile ?
    >>>>
    >>
    >>>> Encore une fois - il n'y a pas de probleme...
    >>> "Adobe Standard" marche tres bien...
    >> moui... si vous le dites... mais il me convient assez mal, et
    >> j'aimerais tout de même comprendre pourquoi je ne peux pas
    >> charger un profil correspondant à mon M9... je ne comprends
    >> pas non plus pourquoi il n'y a pas de profil par optique
    >> développé par Leica... et en Suisse, personne de chez eux ne
    >> peut répondre à ces questions... alors même que LR 2.5 est
    >> livré en bundle avec le m9!
    >
    CT: Alors - Adobe Standard EST le profil developé par Adobe pour le 
    M9 - et
    c'est le meme qu'on trouve dans LR 3 beta.  Selon mon experience c'est
    meilleur que le "embedded profile".  Pas parfait, mais pas mal non 
    plus
    Vous pouvez vous meme telecharger le DNG editor
    (http://labs.adobe.com/wiki/index.php/DNG_Profiles).
    >
    >
    >> je suis professionnel, et très loin d'être heureux avec LR...
    >> (ni avec aucun raw developper, pour être franc, ni
    >> captureOne, ni... encore que justement, RawDevelopper a des
    >> qualités intéressantes - à côté de grande faiblesses... mais
    >> c'est encore un autre sujet)
    >>
    >> mais j'ai bien l'intention de m'accrocher, ne serait-ce que
    >> pour la puissance de gestion/catalogage et l'interface de
    >> LR... quoi que je n'ai aucune confiance en son bricolage des
    >> dng -> donc multiplier les backups des fichiers tels que
    >> sortis du m9, etc... on dirait bien que malgré 15 ans
    >> d'expérience, nous en soyons toujours au balbutiements du digital !
    >>
    >> C'est tout de même plus sérieux (du point de vue des
    >> résultats) du côté de Leaf (j'utilise un L75 sur Alpa
    >> 12SWA)... ça ressemble à quelque chose, mais en petit format,
    >> après le m8, le m9 est vraiment encore loin du compte ! Et
    >> leur développeur, bien sûr, ne développe... que leurs
    >> fichiers propriétaires. Lorsque quelqu'un aura décidé dans
    >> quelques années que leur format .mos est dépassé, mon travail
    >> sera tout simplement perdu. Sauf à convertir en catastrophe
    >> quelques dizaines ou centaines de milliers de fichiers ?
    >> Encourageant, n'est-ce pas ?
    >>
    >>> By the way, I also had this blue pixels lines in the 2500iso
    >>>>
    >>>> files... anyway to save back the file without this bug ?
    >>>
    >>> Je ne vois pas cette image .... Peut etre vous pourriez
    >> m'envoyer par
    >>> email? (mailto:mailto:mailto:[email protected])
    >> Je ne l'ai malheureusement pas avec moi, sur mon portable, et
    >> n'y accéderai plus avant quelques jours...
    >>
    >> Leica Suisse (avec qui je suis en relation directe et qui a reçu ce
    >> fichier) vient de m'appeler et ils reconnaissent - enfin - le
    >> problème.
    >> Mais ils ne savent toujours pas si et comment il vont le résoudre.
    >> Rien avant l'année prochaine, quoi qu'il en soit, et ce sera
    >> fixé, selon eux, soit :
    >> - par un nouveau firmware (difficile à croire)
    >> - par un passage de l'appareil entre leur mains, avec modif/
    >> remplacement d'une partie du soft/hardware
    >> - par un échange d'appareil (!!!) si c'est le capteur qui est
    >> en cause (l'un de mes M8.2 avait été échangé de même à leur
    >> frais après 3 mois, pour d'autres problèmes électroniques) Le
    >> problème de ces lignes de pixels bleus sur certaines prises
    >> de vue en haute sensibilité est largement débattu sur les
    >> forums, et Leica vient de comprendre qu'il n'est pas
    >> extérieur au M9, comme ils le disaient il n'y a pas si
    >> longtemps... encore une petite bombe à leur actif !
    >> Dite-moi si ça vous intéresse et je vous les ferai suivre...
    >
    CT: J'avais un tel probleme avec le M8.2 - chez le M9 pour le moment 
    ca
    marche!
    >>
    >> Par ailleurs, ils viennent de me proposer de repasser toutes
    >> mes optiques au banc (codées par leurs soins il y a moins
    >> d'un an) pour les ajuster une nouvelle fois au mieux au m9...
    >> là aussi, ils reconnaissent des failles techniques sérieuses
    >> ! J'ai par exemple un summicron 35 asph parfait sur film et
    >> sur m8, qui est... flou (sur les bords, et irrégulièrement)
    >> sur mon m9 ! Interressant...
    >>
    CT: c'est vrais que les boittier numerique sont plus exigeant - je 
    conseil
    un contact direct avec Leica a Solms.... Et aussi (si vous n'y etes 
    pas
    inscrit deja) que vous faites appelle pour rejoindre le reseau Leica
    Professional.  Ca vaut la peine et augment le vitesse de reparation...
    >
    >>> Je vous conseiller aussi de visiter L-camera forum...
    >>> (http://www.l-camera-forum.com/leica-forum/leica-m9-forum/
    >>> ) Vous y trouverez des francophones la bas et il y a beaucoup de
    >>> bonnes informations...
    >> je connaissais, mais les questions en français trouvent
    >> rarement de l'écho... et le niveau technique n'est
    >> malheureusement pas très élevé, malgré la gentillesse des
    >> interlocuteurs.
    >>
    >
    Oui!  MAIS j'ai appris des choses la bas ...
    >
    >>> Bon courage!
    >>> Chris
    >>
    >> Il en faut, en effet...
    >> merci en tout cas !
    >> (à propos, quelle est votre fonction chez adobe ? Puis-je
    >> reprendre contact avec vous lors de mes prochaines
    >> découvertes ?) Amitiés, Alain
    >>
    Encore une fois - bon courage..
    >
    Dr Christopher Tribble
    MOBILE     || +44 (0)7917 473522
    EMAIL     || mailto:[email protected]
    WEB     || www.ctribble.co.uk
    >

  • ACR 8.7 has been released with support for the Nkon D750.  Why no Lightroom support yet?

    ACR 8.7 has been released with support for the Nkon D750.  Why no Lightroom support yet? Am I wrong or was support for the D810 available far more quickly?

    ACR 8.7 has not yet been released. The ACR 8.7RC has been released. It is a Release Candidate - and as such, is not a final version.  I wouldn't be concerned about a lack of Lightroom support until a final version is released.
    Adobe Photoshop Camera Raw 8.7 Release Candidate | digital camera raw file support - Adobe Labs

  • I am trying to download a free trial of photoshop for my macbook pro and it says there is an error and that the requirements for the new version is not supported for the mac I have. I have looked at the list of requirements but have no idea how to tell wh

    I am trying to download a free trial of photoshop for my macbook pro and it says there is an error and that the requirements for the new version is not supported for the mac I have. I have looked at the list of requirements but have no idea how to tell what I do and do not have?

    Apple Menu --> About this Mac.
    Mylenium

  • When is LR5 going to add support for the Lumix DMC-LX100?

    Is there a date for the release of LR support for the Lumix DMC-LX100?

    Anyone who knows is not allowed to say. And anyone who gives you a date doesn't know. Adobe doesn't make announcements about new versions in advance.

  • Is XA transactions supported for the SOA Suite 10.1.3.4 on weblogic platfor

    There are 2 weblogic domains 1 & 2. Domain 1 hosts the JMS queue and domain 2 hosts the BPEL process. The BPEL process in domain 2 uses JMS adapter to get messages from domain 1. With queues on Weblogic domain 1, is XA transactions supported for the SOA suite 10.1.3.4 BPEL process JMS Adapter on weblogic domain 2?

    There are 2 weblogic domains 1 & 2. Domain 1 hosts the JMS queue and domain 2 hosts the BPEL process. The BPEL process in domain 2 uses JMS adapter to get messages from domain 1. With queues on Weblogic domain 1, is XA transactions supported for the SOA suite 10.1.3.4 BPEL process JMS Adapter on weblogic domain 2?

Maybe you are looking for

  • Upgrade or replace mid-2009 MBP for 4 year doc program

    My question: I'm new to this forum - thanks in advance for your help! I love my 5 year old MBP, and I loved the one I had for 5 years before it. I assumed I would buy a new one for this doctoral program that starts in 10 days, which I expect will tak

  • Test voice-translation rule not working properly

    Hi all, I have a 15.4(1T) image I'm trying to test a voice tranlation-rule on. If I put in a number that doesn't match, it tells me so.  However, if I test a string that does match, I get no results at all.  I know the rule works as this is from our

  • Newbie to JSP/Struts: Where to get started

    I would like to begin experimenting with JSP and the struts framework. I'm a java newbie but a relatively quick learner. First, what products do I need to use struts/JSP ? I have 9iAS standard edition release 1.0.2.1 and an oracle database std editio

  • Enhancing the COOIS report

    Hi experts, I am working with WORKORDER_INFOSYSTEM badi, in which i am using the TABLES_MODIFY_LAY method. i added some custome fields to the structer ct_ioopconf in the ci_include. for the custom fields i populated the data. Now i want to see these

  • Skype won't let me add a new credit card.???

    Can add a new card. Why??