Is it possible to create a dual y-axis chart in Xcelsius?

Is it possible to create a dual axis type chart, mixed bar and line?

Xcelsius does not currently have the ability to create a dual axis chart. However, other users have been able to create a workaround by layering two charts on top of each other and hiding the undesired elements of the second chart. A third chart can be added in much the same way to display the second axis' label(s). Searching the internet for articles from users should locate step by step instructions.

Similar Messages

  • URGENT HELP NEEDED - Is it possible to create an I-V Characteristic Chart (Photovoltaic) using version 8.2

    We are students trying to replicate the output of a photovoltaic cell. We have developed our LabView software to read
    both current and voltage across a load but we are not sure how to chart both these real time values. We have found a
    NI link  http://zone.ni.com/devzone/cda/tut/p/id/7230  which would be perfect but we only have access to LabView version 8.2.
    Any help on trying to achieve similar charts using 8.2 would exetremely appreciated. 

    Sorry, you should be a bit more specific. What do you mean by "use"? Can you give an example?
    If you want to call the subVI with the dial position as a parameter, just make a connector for it.
    If you want to read the dial position from within the subVI, make a connector for a reference to the control and read the value in the subVI via a value property.
    LabVIEW Champion . Do more with less code and in less time .

  • Dual Y-Axis

    Hi,
    I need to create a dual y-axis chart.
    Y-Axis of the left should shows current and historical sales price of a item
    Y-Axis of the right should shows current and historical sales unit of a item
    "Line Bar Combo" Graph is showing one Y-Axis as bar, but I want both Y-Axis to be line.
    How do I achive this ?
    Any help is much appreciated.
    Best wishes.

    Hi,
    As of now, OBIEE doesnt have the option dual Y-Axis in line chart. We also have lot of similar charts and have raised an SR. I believe it might come in future release.
    Thanks!
    Regards,
    Venkat

  • WebI Combination Chart / Dual Y-Axis

    Hi there,
    is there still no Dual Y-Axis chart component in WebIntelligence (XI 3.0)?
    What options and workaround are there to create dual Y-Axis charts in WebI?
    I thought of implementing Xcelsius-Flashs with Dual Y-Axis, but it's not very satisfying to me, that WebI can't show this chart-type by default.
    Best Regards
    Ulrich

    Under the set of Bar Chart Templates, you will find a chart type call "Vertical/Horizontal Bar and Line" chart.  You can drag measures to the left(Y) and right(Z) axis as you like.  I see this in XIR2 and am pretty sure XI3.0 should have this as well.  Let me know if you see it.
    ~Jimmy

  • Unable to set data2 Label in dual Y-Axis

    Hi
    I've a dual Y-axis chart.
    I want to display a data2 label to explain the meaning of the second axis. when i go to the chart option and title tab there is a textbox "data2 title" . If I type something there, my text is not displayed.
    What I'm doing wrong? Is there a special option for displaying a label next to the second y-axis?
    thak you for your help

    Hi Chris,
    The begin of the expection stack gives you the reason:
    06/11/03 09:13:59 java.sql.SQLException: The method 'setSavepoint' cant be called when a global transaction is active
    The reason is, that either the whole global transaction must be commited or rollbacked.
    I don't know your actual configuration, but between the methods begin() and commit()/rollback() of the UserTransaction instance, OC4J/OracleAS uses a global transaction (= XA transaction) in your configuration. The state of a global transactions is completely under the control of the application server and several restrictions must be considered. One of them is, that you can't use the method setSavePoint/. E.g. you can't also call the method setAutoCommit(true) in this state, or change the transaction isolation level via setTransactionIsolation(newLevel).
    This is NOT a limitation of the OC4J/OracleAS but is true for ALL application servers.
    P.S. I can successfully set savepoints and rollback to savepoints in weblogic 9.0This means, that WebLogic 9.0 doesn't use a global transaction in this case.
    Because I don't know your configurations (Oracle and WebLogic) I can't say, why the behave different in this situation.
    Best,
    Manfred

  • Is it possible to create a hot spot with Apple Airport Express 2nd Generation Dual Band Wireless Router, usefull in a hotel with ethernet wall sucket.

    is it possible to create a hot spot with apple Airport express 2 generation and use it i a hotel with ethernet wall socket and use it with my Ipad 2?

    HenrikAppleJespersen wrote:
    is it possible to create a hot spot with apple Airport express 2 generation and use it i a hotel with ethernet wall socket and use it with my Ipad 2?
    Yes, it is one of the things AirPort Express was specifically designed for.

  • Is it possible to create a view where table in the From clause changes name

    is it possible to create a view from a from a table like this
    create view my_view as select id, col1, col2, result from <<my_latest_cacahe_table>>;
    the table in the from clause changes the name .
    I have another table which indicates the the latest name of my cache tables. Always there are two records there. The latest one and previous one.
    select * from cache_table_def
    table_name cache_table_name refresh_date
    my_table cache_table245 1/23/2012
    my_table cache_table235 1/22/2012
    create table cache_table_def (table_name varchar2(25), cache_table_name varchar2(25), refresh_date date);
    insert into cache_table_def values( 'my_table','cache_table245','23-jan-2012');
    insert into cache_table_def values ( 'my_table','cache_table546','22-jan-2012');
    create table cache_table245 (id number, col1 varchar2(50), col2 varchar2(20), result number);
    insert into cache_table245 values(1, 'test123', 'test345',12.12);
    insert into cache_table245 values (2, 'test223', 'test245',112.12);
    create table cache_table235 (id number, col1 varchar2(50), col2 varchar2(20), result number);
    insert into cache_table235 values (1, 'test123', 'test345',92.12);
    insert into cache_table235 values (2, 'test223', 'test245',222.12);
    what I need to do is find the latest cache_table name for my_table and use that in my view defintion
    When user select from the the view it always reurns the data from the latest cache_table
    is it possible to do something like this in oracle 11g?
    I have no control on the cache tables names. that is why I need to use the latest name from the table.
    Any ideas really appreciated.

    I've worked up an example that does what you ask. It uses the SCOTT schema EMP table. Make two copies of the EMP table, EMP1 and EMP2. I deleted dept 20 from emp1 and deleted dept 30 from emp2 so I could see that the result set really came from a different table.
    -- create a context to hold an environment variable - this will be the table name we want the view to query from
    create or replace context VIEW_CTX using SET_VIEW_FLAG;
    -- create the procedure specified for the context
    - we will pass in the name of the table to query from
    create or replace procedure SET_VIEW_FLAG ( p_table_name in varchar2 default 'EMP')
      as
      begin
          dbms_session.set_context( 'VIEW_CTX', 'TABLE_NAME', upper(p_table_name));
      end;
    -- these are the three queries - one for each table - none of them will return data until you set the context variable.
    select * from emp where 'EMP' = sys_context( 'VIEW_CTX', 'TABLE_NAME' );
    select * from emp1 where 'EMP1' = sys_context( 'VIEW_CTX', 'TABLE_NAME' );
    select * from emp2 where 'EMP2' =  sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    -- this is how you set the context variable depending on the table you want the view to query
    exec set_view_flag( p_table_name => 'EMP' );
    exec set_view_flag( p_table_name => 'EMP1' );
    exec set_view_flag( p_table_name => 'EMP2');
    -- this will show you the current value of the context variable
    SELECT sys_context( 'VIEW_CTX', 'TABLE_NAME' ) FROM DUAL
    -- this is the view definition - it does a UNION ALL of the three queries but only one will actually return data
    CREATE VIEW THREE_TABLE_EMP_VIEW AS
    select * from emp where 'EMP' = sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    union all
    select * from emp1 where 'EMP1' = sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    union all
    select * from emp2 where 'EMP2' =  sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    -- first time - no data since context variable hasn't been set yet
    SELECT * FROM THREE_TABLE_EMP_VIEW
    -- get data from the EMP table
    exec set_view_flag( p_table_name => 'EMP' );
    SELECT * FROM THREE_TABLE_EMP_VIEW
    -- get data from the EMP2 table
    exec set_view_flag( p_table_name => 'EMP2');
    SELECT * FROM THREE_TABLE_EMP_VIEW
    For your use case you just have to call the context procedure whenever you want to switch tables. You can union all as many queries as you want and can even put WHERE clause conditions based on other filtering criteria if you want. I have used this approach with report views so that one view can be used to roll up report data different ways or for different regions, report periods (weekly, quarterly, etc). I usually use this in a stored procedure that returns a REF CURSOR to the client. The client requests a weekly report and provides a date, the procedure calculates the START/END date based on the one date provided and sets context variables that the view uses in the WHERE clause for filtering.
    For reporting it works great!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Is it possible to create a generic report that accepts the SQL as a param

    Is it possible to create a generic report that accepts the FULL sql statement as a paramater and returns variable results based on this?
    We have a requirement to have a generic export routine to spit out csv's from clicking on a web page hyperlink, which would need to accept a "new" sql statement for every run, each containing different columsn etc that would be needed in the output.
    I was hoping could have a generic Oracle report, exporting delimited data format (and as such not using a layout) and somehow pass in the "new" sql statement as a parameter at run time - each sql statement would be different with different columns etc.
    Is this possible with oracle reports ?
    thanks

    If you need a simple dump of data you could try writing a report with a simple query such as
    select 'Report title or column headers'
    from dual
    &data_query
    then your &data_query parameter could be
    union select col1||','||col2 from data_table
    If you are outputing a comma separated data dump the you can concatenate together your data into a single text field.
    This would allow you to have a simple heading followed by the actual data. I guess you could extend this so that the 'Report title or column headers' from the first query was also a parameter to output your row headings i.e.
    select :column_headings_text
    from dual
    &data_query
    Give it a go and good luck

  • Is it possible to create a custom role based on SELECT_CATALOG_ROLE?

    I have a scenario where one user needs to see the DDL of another user:
    HR schema:
    CREATE OR REPLACE TYPE "HR"."CONTACT" IS OBJECT (
    HOME VARCHAR2(40),
    BUSINESS VARCHAR2(40)
    SCOTT schema:
    CREATE OR REPLACE TYPE "SCOTT"."EMPLOYEE_CONTACT" IS OBJECT (
    EMP_NUMBER NUMERIC,
    EMP_NAME VARCHAR2(50),
    HOME HR.CONTACT,
    WORK HR.CONTACT
    When logged in as SCOTT, I can execute the following to get the DDL for EMPLOYEE_CONTACT:
    SELECT DBMS_METADATA.GET_DDL('TYPE','EMPLOYEE_CONTACT') FROM DUAL;
    but when I try to analyze it further, i.e. get the DDL for HR.CONTACT:
    SELECT DBMS_METADATA.GET_DDL('TYPE','CONTACT', 'HR) FROM DUAL;
    I get the following error:
    13:11:59 [SELECT - 0 row(s), 0.000 secs] [Error Code: 31603, SQL State: 99999] ORA-31603: object "CONTACT" of type TYPE not found in schema "HR"
    ORA-06512: at "SYS.DBMS_METADATA", line 4018
    ORA-06512: at "SYS.DBMS_METADATA", line 5843
    ORA-06512: at line 1
    ... 1 statement(s) executed, 0 row(s) affected, exec/fetch time: 0.000/0.000 sec [0 successful, 0 warnings, 1 errors]
    If I grant the SELECT_CATALOG_ROLE to SCOTT, then I can get the DDL details for HR.CONTACT.
    I am reluctant to recommend to my users SELECT_CATALOG_ROLE (or SELECT ANY DICTIONARY) as these permissions seem overly broad.
    Is it possible to create a role that is based on SELECT_CATALOG_ROLE but limits SCOTT's ablity to get DDL to only artifacts from HR?

    Hi Yes,
    But this means you have to rebuild your list in content columns and a as a content Type.
    best regards,
    Paul Keijzers
    Check my website http://www.kbworks.nl or follow me on
    @KbWorks be sure to Check my
    SharePoint-Specialist.nu for dutch informationworkers check
    Wat Is microsoft SharePoint.nl for dutch readers who want to know what
    microsoft office365 is.

  • How to create SYS.DUAL table by own?

    Hi People,
    I removed DUAL table from SYS user by mistake.Is it possible to recreate it again similar to that?.how to restore it?.pls help me with suggestions.I use Oracle 10g
    With Regards
    Vidya.N
    Edited by: vidusnat on Sep 6, 2010 1:56 AM

    vidusnat wrote:
    Ya right.but that seems to be a normal table isn't it?.how to avoid insertion in it?.we cant create triggers on sys objects too.what else we can do?.You do not manually interfere with this table at all - via triggers or other hacks to make it a single-row-table You only need to do 4 things:
    - start the db in upgrade mode
    - create the dual table
    - insert the single row
    - create a public synonym
    Nothing else. Read the Oracle Support notes - they are your best reference.

  • It is possible to create something like this in AE?

    Hi, i want to know if its possible to create something like this in AE (not in 3D) but particles that 'builds up' the text in some way? i have a text that is a vector, and the same as PNG, it is possible? Please tell me!

    It's amazing what Google can find:
    Red Giant - RGTV - Sand to Text Transitions
    Something similar from a zillion years ago:
    Flowing Title Effects using Adobe After Effects : Adobe After Effects Tutorial

  • NTLM Authentication : why is it not possible to create more than one NTLM realm ?

    Hello,
    I'm wondering why it is not possible to create more than one NTLM realm on a wsa.
    Can you explain exactly what is the blocking point ?
    Thanks in advance
    Regards

    Well, at this point (pre 7.5), there isn't an agent, the WSA is joined to the domain, just like a Windows box, it authenticates via that trust relationship.  From that point it is all based on how NT/Active Directory domains work.   As long as there is a trust between the domains, you can can auth users from as many domains as you like.
    There is an agent in the works.  The ADAgent will be released with 7.5.  The code is already available, it was released with the ASA ver 8.4, and it will be used to pass authentication info to the WSA.  At this point, current versions still require trust relationships between all of the domains touched.
    Taken from the setup guide: http://www.cisco.com/en/US/docs/security/ibf/setup_guide/ibf10_install.html#wp1054011
    Before you configure even a single domain controller machine using the
    adacfg dc create
    command, ensure that the AD Agent machine is first joined to a domain (for example, domain
    J
    ) that has a trust relationship with each and every domain (for example, domain
    D[i]
    ) that it will monitor for user authentications (through the domain controller machines that you will be configuring on the AD Agent machine).
    Depending on your Active Directory domain structure, the following scenarios are possible:
    1. Single Forest, Single Domain—There is only one domain, D[i] for all domain controller machines, which is one and the same as domain J. The AD Agent machine must first be joined to this single domain, and since no other domains are involved, there is no need to configure any trust relationship with any other domain.
    2. Single Forest, Multiple Domains—All the domains in a single forest already have an inherent two-way trust relationship with each other. Thus, the AD Agent must first be joined to one of the domains, J, in this forest, with this domain J not necessarily being identical to any of the domains D[i] corresponding to the domain controller machines. Because of the inherent trust relationship between domain J and each of the domains D[i], there is no need to explicitly configure any trust relationships.
    3. Multiple Forests, Multiple Domains—It is possible that domain J might belong to a forest that is different than the forest to which one or more of the domains D[i] corresponding to the domain controller machines belong. In this case, you must explicitly ensure that each of the domains D[i] has an effective trust relationship with domain J, in at least one of the following two ways:
    a. A two-way external trust relationship can be established between the two domains, D[i] and J
    b. A two-way forest trust relationship can be established between the the forest corresponding to domain D[i] and the forest corresponding to domain J

  • Is it possible to create a link on the content of a text annotation??

    Is it possible to create a link on the content of a annotation??? Like the content of an annotation is some notes as well as a link...
    content -
    this is my first annotation(notes)
    http://www.google.co.in/(link)
    is it possible to create a link for the url given in the content of an annotation??? On click on the url...it should get opened...
    please reply its really urgent....

    How/where do you want to accomplish it?
    Within the document? Using Acrobat? Using another application?
    Using Acrobat within the document would be possible using Acrobat JavaScript. You can access the annotation objects of your document, and you then can evaluate the properties of each of these objects. Have a closer look at the Annotation Object section in the Acrobat JavaScript documentation.
    You will look for the contents property, and evaluate its content. When you have found something looking like a URL, you can create a link (using the rect property of the annotation), and you have what you want; you might then think to destroy the annotation, as it may overlay the link.
    Hope this can help.
    Max Wyss.

  • Is it possible to create an extension containing a panel for Dreamweaver CC 2014?

    Dear Adobe Community,
    Currently we work in Dreamweaver CS6 with some custom extensions. Since we're now looking into upgrading to CC 2014, obviously, we need to make sure we can either re-use, port or create new extensions to maintain the functionality we have now.
    In short: I haven't been able to create an extension for CC 2014 featuring a panel in any shape or form.
    Creating a HTML5 based (CES 5) extension results in an error only visible in the log (attached).
    Fiddling around in a flash based extension, upping the host application version gives no such error. But, like a HTML 5 based one, doesn't show up in Dreamweaver. (And I'm using the Sublime plugin, since Extension Builder 3 lacks DW support.)
    Mind you, the "extensions" tab in the "Window" menu is lacking entirely.
    Can anyone tell me if it is at all possible to create an extension for DW CC 2014?
    Full log:
    2014-09-01 16:11:24 : INFO  PlugPlug version : 5.0.0.74
    2014-09-01 16:11:24 : INFO  LogLevel : 6
    2014-09-01 16:11:24 : INFO  Copy RGB Background Color Information for AppBar
    2014-09-01 16:11:24 : INFO  Fallback: Copy RGB Background Color Information for AppBar for sRGB usage
    2014-09-01 16:11:24 : INFO  Copy RGB Background Color Information for Panel
    2014-09-01 16:11:24 : INFO  Fallback: Copy RGB Background Color Information for Panel for sRGB usage
    2014-09-01 16:11:24 : INFO  Windows 32-bit PlugPlug logs
    2014-09-01 16:11:24 : INFO  ----------------------------
    2014-09-01 16:11:24 : INFO  PlugPlugSetup() API called:
    2014-09-01 16:11:24 : INFO  hostData->appName : DRWV
    2014-09-01 16:11:24 : INFO  hostData->appVersion : 14.0
    2014-09-01 16:11:24 : INFO  hostData->locale : en_US
    2014-09-01 16:11:24 : INFO  hostData->userInterfaceLocale : en_US
    2014-09-01 16:11:24 : INFO  hostData->supportedTypes : 31
    2014-09-01 16:11:24 : INFO  hostData->apeVersion : unknown
    2014-09-01 16:11:24 : INFO  hostData->overrideManifestLocation : (null)
    2014-09-01 16:11:24 : INFO  isApplicationOffline : false
    2014-09-01 16:11:24 : INFO  hostData->hostCEPHtmlEngineDirectory : (null)
    2014-09-01 16:11:24 : INFO  hostData->hostExtensionDirectory :C:\Users\BC-OLO\AppData\Roaming\Adobe\Dreamweaver CC 2014\en_US\Configuration\CEP\Extensions\
    2014-09-01 16:11:24 : INFO  hostData->hostStageManagerDirectory : C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\
    2014-09-01 16:11:24 : INFO  hostData->imsLibPath: C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\P7\IMSLib.dll
    2014-09-01 16:11:24 : INFO  skinInfo->baseFontSize : 10
    2014-09-01 16:11:24 : INFO  skinInfo->baseFontFamily : MS Shell Dlg 2
    2014-09-01 16:11:24 : INFO  skinInfo->appBarBackgroundColor->antialiasLevel : PlugPlugAntialiasLevel_None
    2014-09-01 16:11:24 : INFO  skinInfo->appBarBackgroundColor->type : PlugPlugColorType_RGB
    2014-09-01 16:11:24 : INFO  ExtensionRegistry started
    2014-09-01 16:11:24 : INFO  Found ExtensionManifest in cache: C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\csxs\manifest.xml
    2014-09-01 16:11:24 : INFO  Found ExtensionManifest in cache: C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\csxs\manifest.xml
    2014-09-01 16:11:24 : INFO  Searching for valid extensions in 'C:\Users\BC-OLO\AppData\Roaming\Adobe\Dreamweaver CC 2014\en_US\Configuration\CEP\Extensions\'
    2014-09-01 16:11:24 : INFO  Searching for valid extensions in 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions'
    2014-09-01 16:11:24 : DEBUG Searching for valid extensions in 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions'
    2014-09-01 16:11:24 : INFO  Searching for valid extensions in 'C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions'
    2014-09-01 16:11:24 : DEBUG Searching for valid extensions in 'C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions'
    2014-09-01 16:11:24 : DEBUG ExtensionManifest in cache is still the same (C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\csxs\manifest.xml).
    2014-09-01 16:11:24 : DEBUG ExtensionManifest in cache is still the same (C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\csxs\manifest.xml).
    2014-09-01 16:11:24 : INFO  ExtensionManifest 'C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\csxs\manifest.xml' contains '1' valid extensions for this host
    2014-09-01 16:11:24 : INFO  Found extension with id 'com.example.ext'
    2014-09-01 16:11:24 : DEBUG -> BasePath                    : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext
    2014-09-01 16:11:24 : DEBUG -> ExtensionBundleId           : com.example.ext
    2014-09-01 16:11:24 : DEBUG -> ExtensionBundleVersion      : 1.0.0
    2014-09-01 16:11:24 : DEBUG -> ID                          : com.example.ext
    2014-09-01 16:11:24 : DEBUG -> Version                     : 1.0.0
    2014-09-01 16:11:24 : DEBUG -> MainPath                    : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\index.html
    2014-09-01 16:11:24 : DEBUG -> ScriptPath                  : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\jsx\hostscript.jsx
    2014-09-01 16:11:24 : DEBUG -> ScriptEngineId              : com.example.ext_Engine_Id
    2014-09-01 16:11:24 : DEBUG -> AutoVisible                 : true
    2014-09-01 16:11:24 : DEBUG -> StartOn -> Event            : 0
    2014-09-01 16:11:24 : DEBUG -> Type                        : Panel
    2014-09-01 16:11:24 : DEBUG -> Menu                        : Extension-Name
    2014-09-01 16:11:24 : DEBUG -> MenuPlacement               : (null)
    2014-09-01 16:11:24 : DEBUG -> Size
    2014-09-01 16:11:24 : DEBUG    -> Height                   : 300
    2014-09-01 16:11:24 : DEBUG    -> Width                    : 300
    2014-09-01 16:11:24 : DEBUG -> MaxSize
    2014-09-01 16:11:24 : DEBUG -> MinSize
    2014-09-01 16:11:24 : DEBUG -> IconPath
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> Normal       : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconNormal.png
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> Disbaled     : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconDisabled.png
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> RollOver     : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconRollover.png
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> DarkNormal   : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconDarkNormal.png
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> DarkRollOver : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconDarkRollover.png
    2014-09-01 16:11:24 : DEBUG -> DefaultExtensionData        : (null)
    2014-09-01 16:11:24 : DEBUG -> SpecialExtensionData        : (null)
    2014-09-01 16:11:24 : DEBUG -> RequiredRuntimeList            : 1
    2014-09-01 16:11:24 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2014-09-01 16:11:24 : DEBUG    -> RequiredRuntime -> Version  : 5.0.0
    2014-09-01 16:11:24 : INFO  ExtensionManifest 'C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\csxs\manifest.xml' contains '1' valid extensions for this host
    2014-09-01 16:11:24 : INFO  Found extension with id 'com.OLO.Nemo.extension'
    2014-09-01 16:11:24 : DEBUG -> BasePath                    : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo
    2014-09-01 16:11:24 : DEBUG -> ExtensionBundleId           : com.OLO.Nemo
    2014-09-01 16:11:24 : DEBUG -> ExtensionBundleVersion      : 0.5.0
    2014-09-01 16:11:24 : DEBUG -> ID                          : com.OLO.Nemo.extension
    2014-09-01 16:11:24 : DEBUG -> Version                     : 0.5.0
    2014-09-01 16:11:24 : DEBUG -> MainPath                    : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\Nemo.swf
    2014-09-01 16:11:24 : DEBUG -> ScriptPath                  : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\Nemo.jsx
    2014-09-01 16:11:24 : DEBUG -> ScriptEngineId              : com.OLO.Nemo.extension_Engine_Id
    2014-09-01 16:11:24 : DEBUG -> AutoVisible                 : true
    2014-09-01 16:11:24 : DEBUG -> StartOn -> Event            : 0
    2014-09-01 16:11:24 : DEBUG -> Type                        : Panel
    2014-09-01 16:11:24 : DEBUG -> Menu                        : Nemo
    2014-09-01 16:11:24 : DEBUG -> MenuPlacement               : (null)
    2014-09-01 16:11:24 : DEBUG -> Size
    2014-09-01 16:11:24 : DEBUG    -> Height                   : 400
    2014-09-01 16:11:24 : DEBUG    -> Width                    : 232
    2014-09-01 16:11:24 : DEBUG -> MaxSize
    2014-09-01 16:11:24 : DEBUG -> MinSize
    2014-09-01 16:11:24 : DEBUG -> IconPath
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> Normal       : (null)
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> Disbaled     : (null)
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> RollOver     : (null)
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> DarkNormal   : (null)
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> DarkRollOver : (null)
    2014-09-01 16:11:24 : DEBUG -> DefaultExtensionData        : (null)
    2014-09-01 16:11:24 : DEBUG -> SpecialExtensionData        : (null)
    2014-09-01 16:11:24 : DEBUG -> RequiredRuntimeList            : 1
    2014-09-01 16:11:24 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2014-09-01 16:11:24 : DEBUG    -> RequiredRuntime -> Version  : 5.0.0
    2014-09-01 16:11:24 : INFO 
    ********** Number of extensions found : 2 **********
    2014-09-01 16:11:24 : INFO  Register Extension called for Extension : com.OLO.Nemo.extension, ExtensionType : Trusted
    2014-09-01 16:11:24 : INFO  ----------------------------------------------------------------
    2014-09-01 16:11:24 : DEBUG Extension inPlayerType : 1
    2014-09-01 16:11:24 : DEBUG Extension mainUTF8Path : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\Nemo.swf
    2014-09-01 16:11:24 : DEBUG Extension iconPathNormal :
    2014-09-01 16:11:24 : DEBUG Extension iconPathRollOver:
    2014-09-01 16:11:24 : DEBUG Extension iconPathDisable:
    2014-09-01 16:11:24 : DEBUG Extension windowType: Panel
    2014-09-01 16:11:24 : DEBUG Extension showWindowOnCreate: true
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry topleftx: 0
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry toplefty: 0
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry width: 232
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry height: 400
    2014-09-01 16:11:24 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success //<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<    FLASH BASED plugin
    2014-09-01 16:11:24 : INFO  Register Extension called for Extension : com.example.ext, ExtensionType : Trusted
    2014-09-01 16:11:24 : INFO  ----------------------------------------------------------------
    2014-09-01 16:11:24 : DEBUG Extension inPlayerType : 2
    2014-09-01 16:11:24 : DEBUG Extension mainUTF8Path : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\index.html
    2014-09-01 16:11:24 : DEBUG Extension iconPathNormal : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconNormal.png
    2014-09-01 16:11:24 : DEBUG Extension iconPathRollOver: C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconRollover.png
    2014-09-01 16:11:24 : DEBUG Extension iconPathDisable: C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconDisabled.png
    2014-09-01 16:11:24 : DEBUG Extension windowType: Panel
    2014-09-01 16:11:24 : DEBUG Extension showWindowOnCreate: true
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry topleftx: 0
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry toplefty: 0
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry width: 300
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry height: 300
    2014-09-01 16:11:24 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_registerExtCallbackNotFound
    2014-09-01 16:11:24 : WARN  Service: com.example.ext not registered properly. //<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<   HTML5 BASED plugin
    2014-09-01 16:11:24 : INFO  PlugPlugSetMenu() callback called for main menu. Extension : , inMenuPosition:
    (null), Menu: [{menuId: '1',nameUtf8: 'Nemo',extensionId: 'com.OLO.Nemo.extension'}]
    2014-09-01 16:11:24 : INFO  PlugPlugSetMenu() callback returned: PlugPlugErrorCode_success
    2014-09-01 16:11:24 : INFO  ExtensionLoadService activated
    2014-09-01 16:11:24 : DEBUG PlugPlugAMTRequest() callback called. Request: <?xml version="1.0" encoding="UTF-8"?><PlugPlugEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./AmtlibPlugPlug.xsd"><request id="1" functionName="getProductLicenseInfo"><arguments/></request></PlugPlugEnvelope>
    2014-09-01 16:11:24 : DEBUG PlugPlugAMTRequest() return value: PlugPlugErrorCode_success
    2014-09-01 16:11:24 : DEBUG PlugPlugAMTRequest() XML returned chunk: <?xml version="1.0" encoding="utf-8" ?>
    <PlugPlugEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./AmtlibPlugPlug.xsd">
        <response id="1" functionName="getProductLicenseInfo">
            <AdobeIDCreated>1</AdobeIDCreated>
            <LicenseType>Retail</LicenseType>
            <LicenseExpires>0</LicenseExpires>
            <LicenseRefreshes>0</LicenseRefreshes>
            <LicenseEncryptedSerial>909709176804077038364305</LicenseEncryptedSerial>
            <LicensedProductName>EPIC_APP_598</LicensedProductName>
            <SecondsSinceActivation>0</SecondsSinceActivation>
            <SecondsSinceSerialization>8147122</SecondsSinceSerialization>
            <SecondsBeforeExpiration>0</SecondsBeforeExpiration>
            <SecondsBeforeRefresh>0</SecondsBeforeRefresh>
            <AMTLibResponse>6</AMTLibResponse>
            <LicenseStatus>3</LicenseStatus>
            <SerializationGraceInseconds>3888000</SerializationGraceInseconds>
            <ProductCycle>8</ProductCycle>
            <PendingClaims>
                <PendingClaim>
                    <AdobeID>87ADE9246F6370DB6008205B2EAE5B95</AdobeID>
                    <TimeStamp>1401433567</TimeStamp>
                </PendingClaim>
            </PendingClaims>
            <IsSuite>SUITE</IsSuite>
            <APIVersion>2.0</APIVersion>
            <PersonGUIDWithAuthSource>10B3010147A877E8992015B9@AdobeID</PersonGUIDWithAuthSource>
        </response>
    </PlugPlugEnvelope>
    2014-09-01 16:11:31 : INFO  PlugPlugUnloadExtension called for extension : com.OLO.Nemo.extension
    2014-09-01 16:11:31 : DEBUG AllocatePlayer() callback called. playerOptions: 0B4CFB01
    2014-09-01 16:11:31 : DEBUG AllocatePlayer() callback returned: PlugPlugErrorCode_success
    2014-09-01 16:11:31 : DEBUG Connected PlugPlug DOM to APE player
    2014-09-01 16:11:31 : DEBUG Looking for available StageManagers
    2014-09-01 16:11:31 : DEBUG Looking for available StageManagerBundles in StageManagerManifest at C:\Program Files (x86)\Common Files\Adobe\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG No StageManagerManifest found at C:\Program Files (x86)\Common Files\Adobe\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG Looking for available StageManagerBundles in StageManagerManifest at C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG No StageManagerManifest found at C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG Looking for available StageManagerBundles in StageManagerManifest at C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG Found 1 possible StageManagers in StageManagerManifest
    2014-09-01 16:11:31 : DEBUG Added StageManagerBundle StageManagerBundle with Version (5.0.0.20140224_v5_0_0_62), ReleasePath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Release\StageManager-5.0.swf), DebugPath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Debug\StageManager-5.0.swf)
    2014-09-01 16:11:31 : DEBUG Determining the most recent StageManagerBundle
    2014-09-01 16:11:31 : DEBUG Now checking StageManagerBundle with Version (5.0.0.20140224_v5_0_0_62), ReleasePath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Release\StageManager-5.0.swf), DebugPath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Debug\StageManager-5.0.swf) against (null)
    2014-09-01 16:11:31 : DEBUG Will use StageManagerBundle with Version (5.0.0.20140224_v5_0_0_62), ReleasePath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Release\StageManager-5.0.swf), DebugPath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Debug\StageManager-5.0.swf) as the most current StageManagerBundle
    2014-09-01 16:11:31 : DEBUG StageManager SWF will be loaded from 'C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Debug'
    2014-09-01 16:11:32 : DEBUG Add StageManager event listener
    2014-09-01 16:11:32 : INFO  StageManagerController: Created StageManager <STAGE_MANAGER_0> for Extension <com.OLO.Nemo.extension>
    2014-09-01 16:11:32 : INFO  Return value of PlugPlugUnloadExtension call : PlugPlugErrorCode_unknown
    2014-09-01 16:11:32 : INFO  PlugPlugTerminate called
    2014-09-01 16:11:32 : INFO  StageManager: Disposing StageManager <STAGE_MANAGER_0>
    2014-09-01 16:11:32 : DEBUG Remove StageManager event listener
    2014-09-01 16:11:32 : DEBUG Disconnected PlugPlug DOM from APE player
    2014-09-01 16:11:32 : DEBUG DisposePlayer() callback called. apePlayerRef: 06C4CE78
    2014-09-01 16:11:32 : DEBUG DisposePlayer() callback returned: PlugPlugErrorCode_success
    2014-09-01 16:11:32 : INFO  Return value for PlugPlugTerminate: PlugPlugErrorCode_success

    Assuming we have a CSXS Flash based extension which works with DW CC 2014, steps to be followed for the extension to show up in DW CC 2014:
    1.  The extension should be placed at /Users/labuser/Library/Application Support/Adobe/Dreamweaver CC 2014/en_US/Configuration/CEP/Extensions . [WIN: C:\Users\labuser\AppData\Roaming\Adobe\Dreamweaver CC 2014.1\en_US\Configuration\CEP\Extensions] . The installation of the zxp should have placed the extension in the above path.
    2.   Add a custom menu item like <menuitem mmstring:name="menus/DWMenu_Window_BusinessCatalyst" key="Cmd+Shift+B" enabled="true" command="dw.toggleCSXSExtension("com.adobe.bccsdialog");" checked="dw.getFloaterVisibility('BCModulePanel');" id="DWMenu_Window_BC_Modules" /> where the argument in the call dw.toggleCSXSExtension is the Extension Id as seen in the manifest.xml at the line <Extension Id="com.adobe.bccsdialog">.
    Note: All these will work provided the extension is successfully registered with DW.
    To know if an extension is registered with DW, do the following:
    1. On MAC, there is a CSXS preference plist file Users/labuser/Library/Preferences/com.adobe.CSXS.5.plist which has an entry named LogLevel. Set the value to 5 for detailed log. [On windows –Registry - Computer\HKEY_CURRENT_USER\Software\Adobe\CSXS.5]
    2. Quit and Launch DW
    3. Open Console application and under ~/Library/Logs/CSXS/, there will be a log file created with name csxs5-DRWV.log [WIN: log file is in C:\Users\labuser\AppData\Local\Temp]
    4. In the log, search for "Register Extension called for Extension : com.adobe.bccsdialog, ExtensionType : Trusted" and under that, you should see "PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success" which mean this extension is successfully registered with DW.
    5. When you try loading the extension from the menu you have added, you should see an entry like "INFO  PlugPlugLoadExtension called for extension : com.adobe.bccsdialog" followed in the next few lines by " INFO  Return value of PlugPlugLoadExtension call : PlugPlugErrorCode_success" and you should see the extension loaded in DW.
    If any of these steps fail with any value other than "PlugPlugErrorCode_success", the extension will not load in DW.
    The solution provided here is a temporary one and we are bringing back the functionality we have removed in DW CC 2014 in the next release.

  • HT204053 the only way to creat an icloud account is with a ipad, iphone or imac. is it possible to creat the account from my windos PC? i already downladed i cloud, and i have an Apple ID but Not an Icloud account/

    the only way to creat an icloud account is with a ipad, iphone or imac. is it possible to creat the account from my windos PC? i already downladed i cloud, and i have an Apple ID but Not an Icloud account/

    Isa Garduño wrote:
    the only way to creat an icloud account is with a ipad, iphone or imac Apple computer.
    As you already knew, no, you cannot create a new iCloud account from anything but the above devices.
    http://support.apple.com/kb/HT4436

Maybe you are looking for