Is it possible to create a zoom region by window in Flash player

Hi all
I am desperately looking online to see it this is possible: And not having much luck, 
The user views our map in flashplayer and can zoom into an area by defining a window (left hand mouse button, click >hold and drag to define size of window.)
its pretty much like the way the zoom tool works witnin the flash program,  i.e. click on zoom icon and choose area that you want to zoom into, but its
I could use google maps but would prefer to use flash based map/navigation.
Would appreciate any ideas to how this can be done,
hope the above makes sense
Thanks
Tommyt

I doubt if you can get the the WBS hirerachy correct with CATT also a lot depends on your recording.
My experience as that I struggled (and gave up) using CATT for creating project structures involving WBS and Network Activities.
I would suggest you to use standard BAPI's and build a program around them.
Regards
Sreenivas

Similar Messages

  • Is it possible to have the Firefox Icon in windows' taskbar flashes when any of my app tab changes?

    Is it possible to have the Firefox Icon in windows' taskbar flashes when any of my app tab changes?

    Not possible to configure this in Adobe Reader.

  • .swf file created from Indesign won't open in Flash Player

    I have created an interactive flash presentation using Indesign. For several weeks I have made edits, exported a .swf file and opened the file by double-clicking it to open in Flash Player. From there I was able to export an .exe file with an embedded projector for users that may not have flash player. The file does not open and asks whcih progrma I would like to open with when clicking the file.
    I am running Windows XP, Adobe CS5
    Thanks for your help.

    That sounds more Windows file association issue.Have you tried to Right-Click your SWF and choosed Open With (or something like that), you can choose Flash Player from that list if it´s installed.

  • I can't use ctrl++ and ctrl+- (zoom in and out keys) on flash player pages.what can i do for this problem??

    i can't zoom in and out on flash player pages.

    Some gestures have been removed in Firefox 4.
    You can restore the zoom feature by changing the values of the related prefs on the <b>about:config</b> page.
    browser.gesture.pinch.in cmd_fullZoomReduce
    browser.gesture.pinch.in.shift cmd_fullZoomReset
    browser.gesture.pinch.out cmd_fullZoomEnlarge
    browser.gesture.pinch.out.shift cmd_fullZoomReset

  • Is it possible to attach photographs to a site that requests a flash player?

    When I try to load a photograph on facebook from my iPad it asks me to down load flash player but then tells
    me it is not supported.  Is it possible to load photographs to a site that requires flash player?

    Not directly no, as flash isn't supported in the iPad. For Facebook have you tried any of the facebook related apps in the app store e.g. http://itunes.apple.com/us/app/facebook/id284882215?mt=8# . Other sites may also have their own apps.

  • Is it possible Flash Player is turning my monitor off?

    For about 6 months now my Dell Monitor is going off when the screen saver comes on, is it possible it is something to do with the Adobe Flash Player?  I updated to the more current version (11) last night, hoping it would help.

    plpsp wrote:
    is it possible it is something to do with the Adobe Flash Player?
    The only way to tell for sure if you uninstall Flash Player completely, then see if it is still happening.

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

  • How to create hyperlink for region

    I have page which contain two region.i want to create a link for each region. when i click the first link
    first region should display,viceversa
    Actually how to create link for region?
    Thanks and regards
    skud

    Hi Bosamiya and vee,
    Thank you very much...
    but,
    when i run my page it shows three tabs (*show all*,*region1*,*region2*).
    How to disable that show all tab?
    i want to show only region1 and region2 tabs.
    Is it possible to disable the show all tab?
    Thanks and regard,
    Skud.

  • Error in creating reusable worklist regions

    Hi,
    I tried to create reusable worklist region for the Task List task flow(taskList-task-flow-definition) in my fusion application using the following reference:
    http://docs.oracle.com/cd/E14571_01/integration.1111/e10224/bp_worklist.htm#BHADHGCF
    I have passed the following parameters to the taskList-task-flow-definition task flow:
    federatedMode=true
    showServerColumn=true
    The wf_client_config.xml is present in the WEB-INF folder and src folder. Its contents are:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <workflowServicesClientConfiguration xmlns="http://xmlns.oracle.com/bpel/services/client" clientType="REMOTE">
    <server default="true" name="default">
    <localClient>
    <participateInClientTransaction>false</participateInClientTransaction>
    </localClient>
    <remoteClient>
    <serverURL>t3://<hostname>:8001</serverURL>
    <initialContextFactory>weblogic.jndi.WLInitialContextFactory</initia
    lContextFactory>
    <participateInClientTransaction>false</participateInClientTransaction>
    </remoteClient>
    <soapClient>
    <rootEndPointURL>http://<hostname>:8001</rootEndPointURL>
    <identityPropagation mode="dynamic" type="saml">
    <policy-references>
    <policy-reference enabled="true" category="security"
    uri="oracle/wss10_saml_token_client_policy"/>
    </policy-references>
    </identityPropagation>
    </soapClient>
    </server>
    </workflowServicesClientConfiguration>
    I have deployed the app to the Weblogic Admin Server. (The SOA Managed Server is present in the same domain). I'm getting the following Error message:
    Error showing tasklist. Possible reasons could be : 1. SOA server connection information is not available. 2. If it is run in federated mode, the default server may be down.
    Any solution to this?
    Thank you,
    Rashmi

    I was able to solve this by creating a bean with a method that returns the WorkflowServicesClientConfigurationType Object.
    Reference: Section A.7 in http://docs.oracle.com/cd/E17904_01/user.1111/e15175/bpmug_ws_taskflows.htm#autoId27
    This works when the JSPX which contains the taskflow binding is a 'Blank Page' and I'm able to see the tasks.
    However, I tried to follow the same steps on a JSPX which uses 'UIShell template' and got a NoClassDefFound error for oracle.bpel.services.workflow.client.config.WorkflowServicesClientConfigurationType
    Any solution to this?
    Thanks.

  • Is it possible to pinch and zoom

    I have read that I can choose to add articles as pdf if I want the possibility to pinch and zoom.
    If I try I get an error as soon as I try previewing the article.
    Isn't it possible.
    Nina Storm

    I've found that when you create a folio by selecting multiple articles, folio builder seems not to generate them as PDF, and therfor pinch and zoom does not work, I've mentioned this loads of times, I think it is being looked into.
    I think if you add articles one at a time it will work, but thats a bit slow! I've previously got around it by creating the folio in the old content builder.
    works fine in there.
    Cheers
    Alistair

  • Is it possible to move items betwen regions using personalizations

    Is it possible to move items betwen regions using personalizations?

    Hi,
    1. Can I create new item using personalization and refer to the item in the another region (for example there are 2 regions in my page R1 and R2, R1 has fields a,b,c and R2 has salary,empno,deptno , so can I create a field FFF in R1 and refer to deptno in R2.Suppose you have a 2 region like R1 & R2.
    R1 contains three MessageTextInput Box. (eg a,b,c)
    R2 contains three MessageTextInput Box. (eg x,y,z)
    Then you can create a new item in any region & its will only impact your UI. (i.e. It will be displayed under the region where you have created it.)
    2. if answer to above question is yes, then if user changes the value in deptno, will this get updated in the apps.The data in the new field won't update the automatically unless & untill, you attach EO based VO to the newly created item.
    Hope you are clear.
    Regards,
    Gyan

  • How to create advance table region with columns by code

    hello friends
    i need to create advance table region and columns dynamically ... for that i want to know any code snippet do you have
    please share with me that would be really great help

    Hi ,
    It is not possible through code but
    1.) U can create a new custom OAAdvanced table under a custom region using JDeveloper.
    2.) Create stack layout bean using personalization on the page ,and in extend property of StackLayoutBean mention the complete path of above custom region .
    Thank
    Pratap

  • Is it possible to create a new Substitution String?

    Hi,
    my question is:
    Is it possible to create a new Substitution String?
    My problem is, that I need a side with three level of tabs.
    But in Apex there are only sides with two level of tabs.
    And when I create a new template to create a three level of tabs side i need a substitution string for the third tab level.
    Does anybody have an idea?
    Thank you,
    Tim

    Hello,
    No but you could build a list that looks just like your tabs and use that as your third level tabs just use one of the region positions to position the pseudo list tabs.
    Carl

  • 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

Maybe you are looking for

  • Jabber for Windows 9.2.1 Contact Away status doesn't show duration

    .Jabber for Windows 9.2.1 Contact "Away" status doesn't show duration. I am wondereing if it is possible with Cisco Jabber client. Microsoft OCS client used to show.

  • ODS and Infocube showing different results

    Hi, I loaded same data to Infocube and ODS but they are both showing different result in BEX. ODS ODS report is showing summarised values e.g vendor               order value                   invoice value        date 00001                    20    

  • How come Facebook randomly won't work with Safari?

    Whenever I try to access Facebook on Safari, it says "Safari cannot establish a secure connection to the server". I've tried looking at my firewall, parental controls, deleted cookies. I've reset safari and my router. I downloaded google chrome, and

  • Presenter 9.0.2 update failure

    I am trying to download the update for Presenter, 9.0.2.  I get a failure message, "Update failed - Updates could not be applied.  Adobe Application Manager may be damaged.  Download and install a new copy."  When I download the Adobe Application Man

  • Cups-pdf produces ugly , hardly readable documents

    I think the title of the post says it all. System is up to date, cups-pdf setup is as in the wiki. To illustrate what I mean, here is a sample image (try to view it full-size). Left side created with cups-pdf, right side with the built-in "save as pd