Is there support for the GraphicsFmt object in FrameMaker 11 ExtendScript?

I was reading the FDK documentation for FrameMaker 11 and I see that support has been added for Object formats using FO_GraphicsFmt.
Is there support for the GraphicsFmt object in FrameMaker 11 ExtendScript?
If not, when will it be added?
Another question: Will the ExtendScript documentation ever be improved?

Stuart,
I am pretty sure you can use the object from ExtendScript. With the FDK documentation you should be able to guess the property names in ExtendScript, but the easiest way is to use a small test document and write a small script to get at the GraphicsFmt object. Set a breakpoint and use the Data Browser and/or JavaScript Console to see how FM uses the object.
As for better ExtendScript documentation: I am working on a website (www.progframe.com) that will feature better documentation, combining the current docs with stuff picked up from the FDK reference and test scripts. It will also have tutorials for newbie scripters. If Adobe does not put an effort into the docs, I might as well do it and possibly pick up some scripting jobs that way. I am planning to launch the website early next year and keeping it up to date so that ExtendScript info is immediately available when a new FM version hits the market.
Kind regards
Jang

Similar Messages

  • Is there support for the Statechart Module 1.0.1 for MacOS X?

    I need to use the Statechart Toolkit but I can't seem to find if there is support for it on the MacOS platform. Can someone tell me a definitive yes or no on this???
    Just as a sidebar: it's very disconcerting to see the lack of support for MacOS. Yes, I know Windoze is ubiquitous, but there are some of us who use a Mac in our daily work and this "half-support" is getting to be problematic. Either FULLY support the platform or don't! Sorry...rant over.
    Thanks for your assistance!
    Michael

    The predecessor to the Statechart Module was the State Diagram Toolkit. Its not as powerful as the Statechart Module, but it appears that it is(or was) available for the Mac and PC. You might contact your sales rep and ask if the State Diagram Toolkit is available for Mac users...
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Is there support for the AC-1000 target real-time system?

    Hi,
    Is NI supporting the AC-1000 target real-time system? We've used MatrixX, SysBld, Autocode, and Realsim to compile, link, download, and run various control models on the target real-time system for interfacing with hardware. The AC-1000 has 2-3 processors running a pSOS Operating System, multiple I/O boards, and a MIL-STD-1553 bus. It's connected to an NT workstation via a LAN and a serial cable.
    So, any information regarding support and maintenance would be very helpful. Thank you for your time!
    Take care,
    Chris Holmes
    Senior Modelling and Simulation Engineer
    United Defense, L.P.

    Although NI acquired MATRIXx, we did not acquire the RealSim hardware (AC-1000, AC-104, and PCI-Pro). Wind River retains the ownership of the hardware but is not supporting the product line. Wind River has made available the attached parts list for the RealSim hardware so that customers can self-service existing systems.
    NI doesn't plan to develop or support RealSim - and is directing customers who wish to continue to use this software/hardware to 3rd parties. The following NI Alliance members can provide RealSim support.
    iControl: www.icontrol-inc.com
    ADI: www.adi.com
    OPAL-RT: www.opal-rt.com
    NI plans to make it easy for customers to target NI hardware, including real-time PXI, with MATRIXx in the future. For information on P
    XI, please refer to the PXI section of the ni.com site at ni.com/pxi.
    Ash Razdan
    National Instruments
    [email protected]
    Attachments:
    AC-104_Parts_List.xls ‏36 KB
    AC-1000_Parts_List.xls ‏37 KB
    PCI-Pro_Parts_list.xls ‏37 KB

  • 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

  • Hi there, when will there be a support for the Olympus PEN E-PL7?

    Hi there, when will there be a support for the Olympus PEN E-PL7?

    It is on our radar and hoping to add it in an upcoming update.
    As soon as it is available, it will be updated in the below article. Camera Raw plug-in | Supported cameras
    ~ Arpit

  • I have a new i phone6 and cant watch the photos i had in my old iphone 4- i can see in the i cloud a line showing last backup of my old i phone 4 but can't see the pictures i have there - tnx for the support

    I have a new i phone6 and cant watch the photos i had in my old iphone 4- i can see in the i cloud a line showing last backup of my old i phone 4 but can't see the pictures i have there - tnx for the support

    Yes.
    Just call your provider and tell them what you want and they will help you get it done properly.

  • 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!

  • Is there support for animated .gif files?

    Is there support for animated gif files using
    form builder? I can't get it to work.
    Thanks
    Sean
    I am using forms 6.0

    She used the Link Tool, specfied 'Image URL' as the Source File Format and the url of the animated GIF in the Source Filename. Hope that helps.
    Makes sense but the form is not for the web.
    I have looked at doing it with timers and switching canvases, but that is just too much
    for sloppy animation. It's just not tight enough.
    Thanks,
    Sean
    null

  • Multiple Transports for the Same Object.

    I have ABAP program 123 and I make a change, create transport A and release the transport. I do not request transport A go to production.
    I then modify ABAP program 123 again, create transport B and release the transport. I do not request transport B go to production.
    Now I request transport A go to production.
    Can someone explain to me why the changes in transport B are included when transport A is moved to production?
    I thought each transport would be at its own change level.
    Thank-you.

    I can guarantee all of you that when Transport A was moved, it contained changes that were made in Transport B.
    Surely you understand that Thomas is correct and that there's a logical reason, not related to transport layer configuration, for the issue?   You CAN have multiple transports open for the same object without a lock by forcing it but check the dates as already suggested...

  • 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
    >

  • 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.

  • Alternative for the ActiveX object for the other browsers excluding IE?

    I need open a word document (Doc/Docx) then edit and save   in client side itsetf.forthat i'm using ActiveXObject and javascript.it is working fine with IE but it's not working in other browsers(Chrome,Firefox).
                        var w = new ActiveXObject('Word.Application');
                        w.Visible = true; //set to false to stop the Word document from opening
                        obj = w.Documents.Open("D:\\test.docx");
                        docText = obj.Content;
                        w.Selection.TypeText("Hello world!");
                        w.Documents.Save();
    what is Alternative for the ActiveX object (OR) How can i edit a word document (Doc/Docx) by using client side scripting?    
    Punch bala

    This problem is haaping to you there is reasons are
    1. Old FF , so 1st update your browser
    2.or net speed , beczzz gmail needs high speed .. high means not like 3G ..it should be approximately 25-30kbps . As u wrote this doesn't happen in IE , becz IE is mad for work in low speed also bt it takes time to load .. ones load never refresh without you permition bt FF works fastly so it try to open as it has dwnloded ,, bt half part cant be stable long .so it refreshes..........
    So now update ur browser n use high n stable INTERNET ....

  • 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

  • Retriggering Release strategy for PR with Document Type, Company Code and Price Range as Characaterstics

    Hi Friends, I have a issue to fix. The issue is releated to PR. There are some PR's in the system which has wrong release strategy picked up or wrong approvers picked up due to some congif change. now that the config changes are rectified correctly,

  • Power button blink twice each time, video included. Laptop won't turn on. help please!

    Hi guys,I opened up my laptop - HP Pavilion dv6 because the fan was full with dust.I cleaned it up and followed the youtube instructions. I know I assembled the laptop correctly, each part in his place, every step went smoothly.When i tried to power

  • Multi Root Tree in APEX

    Hey All, I'm creating an APEX front-end for a currently existing forms application. My issue is that the document manager created for this application does not have a single root node. There are several folders that make up the original. It does use

  • No response when attempting to post to message boards or choosing 'like' on FB

    I have had my i-Pad3 for about 6 weeks. Until last night I could post messages on internet message boards, or 'like' on FB, with or without using the FB app. This morning I can still access message boards, but nothing happens when I click 'post'. Whe

  • Wrong cell #

    I have been without my cell for over a month now.  My son was helping to activate my new phone and it has the wrong cell #.  It is showing (removed) and it should be (removed).  I NEED to activate my cell, so how does it get changed to the correct #?