Need help to build portal URL insert in OAM...

Hi all

I have a requirement to customize the User Manager screen so that I get only the search criteria tab (but not one of the tabs or links) and results of research.

To do this, I built under the URL of the portal.

http://training.orademo.com/identity/Oblix/apps/userservcenter/bin/userservcenter.CGI?program=search & COMP = true

In using this above URL, I am able to hide all tabs in the browser, but I need to have this search criteria to view in the form.

Can someone please suggest me the solution to achieve this.

His urgent need to bit.

Thanks in advance.

Siva NAKI.

Hi Siva,

The link I provided should give you - I used 'programme = Advanced', not 'programme = search', in the url and it should give you the option to select the attributes to search for (although users will need to use the back button of the browser is to return after did a search).

Kind regards
Colinl

Tags: Fusion Middleware

Similar Questions

  • Need help to build the query/pl-sql block to get the query result and the name of column from DB table in the form of key-value pairs.

    Hi Experts,

    I have a DB table has columns of more than 50.

    I question this table, it should only return one line at any time. as sqldeveloper below image.

    here, I need to build block pl/sql-query, Discover the column in the table as a key and query result as values.

    Eg:     Key                         -  Value

    TASK_EVENT_ID - 1765

    EVENT_TYPE - ASR_UPDATE

    ... etc until all of the columns in my table.

    Experts please comment on that point, appreciate your help on this.

    Thank you

    -Vincent.

    Here is an approach using DBMS_SQL to iterate over the columns of key / value to assign... (Little code snipped for brevity)

    create or replace procedure (task_expired)

    v_store_id in full,

    v_task_action_id in full,

    v_job_id in full

    )

    as

    -[SNIP code...]

    v_sql VARCHAR2 (4000): = ' select * from my_table where PK = 123';  -Your SQL here!

    v_v_val VARCHAR2 (4000);

    v_n_val NUMBER;

    v_d_val DATE;

    v_ret NUMBER;

    c NUMBER;

    d NUMBER;

    col_cnt INTEGER.

    f BOOLEAN;

    rec_tab DBMS_SQL. DESC_TAB;

    col_num NUMBER;

    vAsString VARCHAR2 (4000);

    BEGIN

    -[SNIP code...]

    Message_properties. CORRELATION: = "EDF_EVENT";

    MSG: = SYS. AQ$ _JMS_BYTES_MESSAGE. Construct();

    Msg.set_string_property ('queueName', ' shipping/csi_cth');

    Msg.set_string_property ('MODE', 'CR8');

    c: = DBMS_SQL. OPEN_CURSOR;

    DBMS_SQL. PARSE (c, v_sql, DBMS_SQL. NATIVE);

    d: = DBMS_SQL. Execute (c);

    DBMS_SQL. DESCRIBE_COLUMNS (c, col_cnt, rec_tab);

    1.col_cnt J

    LOOP

    CASE rec_tab (j) .col_type

    WHEN 2 THEN

    DBMS_SQL. DEFINE_COLUMN (c, j, v_n_val);      -Number

    WHEN 12 CAN

    DBMS_SQL. DEFINE_COLUMN (c, j, v_d_val);      -Date

    ON THE OTHER

    DBMS_SQL. DEFINE_COLUMN (c, j, v_v_val, 2000);   -Else treat as varchar2

    END CASE;

    END LOOP;

    LOOP

    v_ret: = DBMS_SQL. FETCH_ROWS (c);

    WHEN OUTPUT v_ret = 0;

    1.col_cnt J

    LOOP

    -Fetch each column to the correct data type based on coltype

    CASE rec_tab (j) .col_type

    WHEN 2 THEN

    DBMS_SQL. COLUMN_VALUE (c, j, v_n_val);

    vAsString: = to_char (v_n_val);

    WHEN 12 CAN

    DBMS_SQL. COLUMN_VALUE (c, j, v_d_val);

    vAsString: = to_char (v_d_val, ' DD/MM/YYYY HH24:MI:SS');

    ON THE OTHER

    DBMS_SQL. COLUMN_VALUE (c, j, v_v_val);

    vAsString: = v_v_val;

    END CASE;

    Msg.set_string_property (rec_tab (j) .col_name, vAsString);

    END LOOP;

    END LOOP;

    DBMS_SQL. CLOSE_CURSOR (c);

    DBMS_AQ. ENQUEUE (queue_name-online 'cbus.aqjms_common',

    Enqueue_options => Enqueue_options,

    Message_properties => Message_properties,

    Payload-online msg,

    Msgid => Message_handle);

    dbms_output.put_line ('00 Msgid =' |) Message_handle);

    dbms_output.put_line('===Done=');

    -[SNIP code...]

    END;

    /

  • Need help to build the BasicDialog plugin sample

    Hello world

    I'm new to the Adobe ID SDK plugin development. I tried to build the sample BasicDialog but ended with the following error, could you please help me to generate the plug-in.

    Error108("' error MSB3073: the command 'merge_res.cmd'... \objd\BasicDialog\ ' BscDlg & echo removing old resources... & del/f/s ' C:\id7sdk\build\win\objd\BasicDialog\(BasicDialog Resources) \"*.idrc >... \objd\BasicDialog\prevDeletedResources.txt & xcopy/q/e '... \objd\BasicDialog\"*.idrc ' C:\id7sdk\build\win\objd\BasicDialog\(BasicDialog Resources)------" / y & del/f/s ' C:\id7sdk\build\win\objd\BasicDialog\(BasicDialog Resources) \"*.idrc & xcopy/e '... \objd\BasicDialog\\"*.idrc ' C:\id7sdk\build\win\objd\BasicDialog\(BasicDialog Resources)------"/ y»»»
    ': VCEnd ' came out with code 4.C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets1086BasicDialog

    I use vs2010 and let me know if you need any additional details to me.

    Thank you

    Momentum

    Hi momentum,

    If you use the SDK to InDesign CS5, CS5.5, you use vs2008 and if you use the SDK for InDesign CS6 you must use vs2010.

    Markus

  • need help to build the hierarchy of sql

    Hi all

    I have 2 tables.
    create table apc_menus ( menu_id number
                            ,menu_code varchar2(30) not null
                            ,menu_name varchar2(100) not null
                            ,description varchar2(250) );
    
    create table apc_menu_details ( menu_id number
                                   ,sequence_no number not null
                                   ,sub_menu_id number );
    
    insert into apc_menus ( 3, 'SUBMENU1, 'Sub-Menu1 of Menu 1');
    insert into apc_menu_details ( 3, 10, NULL);
    
    insert into apc_menus ( 2, 'MENU1, 'Menu 1');
    insert into apc_menu_details ( 2, 10, 3);
    
    insert into apc_menus ( 5, 'SUBMENU1', 'Sub-Menu1 of Menu 2');
    insert into apc_menu_details ( 5, 10, NULL);
    
    insert into apc_menus ( 4, 'MENU2, 'Menu 2');
    insert into apc_menu_details ( 4, 10, 5);
    
    insert into apc_menus ( 1, 'MAIN', 'Main Menu');
    insert into apc_menu_details ( 1, 10, 2);
    insert into apc_menu_details ( 1, 20, 4);
    I am building an application where in it shows as...
    Menu 1
      Sub-Menu1 of Menu1
    
    Menu 2
      Sub-Menu1 of Menu2
    I would be grateful the help...

    Thank you.
    Allen

    You did not show the expected results:

    select  lpad(' ',(level - 1) * 2) || menu_code || nvl2(prior menu_code,' of ' || prior menu_code,null) menu_code
      from  apc_menus m,
            apc_menu_details d
      where d.menu_id = m.menu_id
      start with d.menu_id not in (select sub_menu_id from apc_menu_details where sub_menu_id is not null)
      connect by d.menu_id = prior d.sub_menu_id
    /
    MENU_CODE
    ----------------------------------
    MAIN
      MENU2 of MAIN
        MENU3 of MENU2
          MENU4 of MENU3
            MENU5 of MENU4
    
    SQL> 
    

    SY.
    P.S. Your sample missing citations and clause VALUES. Next time post work set out.

  • Need help to unlock a url in firefox

    I blocked an image in photobucket, storage site and found that instead of a particular image, I block the http://s208.photobucket.com/home/Gibelgirl/index url in Firefox, and while the images are there I can't see them. This only happens in irefox F as in the other browser there is no problem. Photobucket has informed me that I have blocked the site with the FireFox browseer. Can you tell me how to unlock it please I need these images. Thanks JanUK

    With the Photobucket on display page, click on the How do I know if my connection to a Web site is secure? (the icon to the left of the URL in the address bar), and then the button "additional information". This opens a dialog box that contains information about the page. Select the permissions tab and make sure that 'Load the Images' is set to allow (choose "default" should also work)

  • Need help with building. EXE for stand-alone applications configured to NOR-DAQ

    Is it possible to create files .exe to the evaluation of Labview with App Builder trial version software? Will be LV8.6 of purchase with App Builder but tried to write a simple code to build as an executable file. The VI does not run on a PC w/o LV installed... How can it be solved during the creation of a project to build, even after the creation of Windows Installer, etc...

    SNET wrote: did you export your hardware configuration in MAX and include this file?

    HOW CAN I DO THIS... Can you give us some instructions step by step please? This could be the problem as to why it does not work as an .exe on a 'Virgin' Labview PC file.

    This is explained in the Help of MAX. You can also read this: export and import of files in Measurement & Automation Explorer. Note that you can also do it in LabVIEW: import and export a Configuration MAX through LabVIEW.

  • Need help to build the SQL query

    Hi all

    I struggle to create the select statement.

    This is my expected outcome:

    Insert into tmp (aa, bb, cc, dd)

    values('CUST1','10100001',2,'10-Jan-2013');

    Insert into tmp (aa, bb, cc, dd)

    values('CUST1','10100002',4,'11-Jan-2013');

    Insert into tmp (aa, bb, cc, dd)

    values('CUST2','10200001',2,'19-Jan-2013');

    Insert into tmp (aa, bb, cc, dd)

    values('CUST2','10200002',6,'28-Jan-2013');

    Insert into tmp (aa, bb, cc, dd)

    values('CUST2','10200003',1,'28-Mar-2013');

    My result is:

    AA COUNT (1) MAX (DD) by cc dd AA AA

    CUST1 2 10100002 4 11 January 2013

    CUST2 3 10200003 1 28 MARCH 2013

    Can someone help with the select statement?

    Thank you and best regards,

    Iwan

    Just change it to the column:

    SELECT

    AA

    COUNT (aa)

    , MAX (bb) keep (last dense_rank command by JJ)

    , MAX (cc) keep (last dense_rank command by JJ)

    MAX (dd)

    OF THE TMP

    GROUP BY aa

    ORDER BY aa

    Note that by default sort order is ascending with the last NULL values.

    If in case your line-date-max will contain null value in the bb or cc columns those will be returned.

    Post edited by: Correction of chris227

    Post edited by: chris227 added note

  • Need help to build a laboratory to SECURE the House focused on the merger

    Since Apple has been kind enough this week to infintestimally drops prices on Macbook Pro last year, I got one for my wife, with the promise that I could use it for my VCP self-learning.  The specifications are:

    Processor 2.2 GHz Intel Core i7 (this is a quad, BTW)

    Memory 8 GB 1333 MHz DDR3

    Storage 500 GB SATA (436,49 GB free)

    Graphics  AMD Radeon HD 6750 M 512 MB

    Software  Mac OS X Lion 10.7.4 (11E53)

    I installed merger and created two virtual machines with bridged networking, each ESXi5 running.  On another laptop (Windows), I installed the vSphere client and sees two virtual machines.  Now I'm almost willing to review my classroom training, but there is still at least one thing I need: sharing storage to use as my data store.

    I would like to launch a virtual NAS server in Fusion and it allows to provision the 2nd layer of VMs in ESXi servers.  Until the store of the device has been reorganized, you can find all sorts of eccentric of the virtual computer images, including iSCSI and NAS based on every flavor of Linux under the Sun.  Now, however, I am unable to find something suitable.  I have to just roll-my-own using Damn Small Linux or something, or is there something I missed?

    Also, is there any other things I need for my Center Virtual data?

    You could try to build a virtual machine running OpenFiler or FreeNAS or of Windows virtual machine currently running either Microsoft iSCSI Target or StarWind iSCSI SAN.

    You will also need a virtual machine running vCenter Server, you can download and install the software on Windows or download the vCenter Server Appliance of vSphere downloads area.

  • Need help to build the query to group the lines

    Hello all, hope someone can help me with this. I am working in Oracle 11 g PL/SQL 11.2.0.2.0.

    I have the following query, which does exactly what I need, but I have been invited to consolidate the results in a specific way and I can't do that. First of all the existing request:
    SELECT facility_id
    ,facility_type
    ,COUNT (CASE WHEN component_type = 'ATTACH2NDPARTY' THEN 1 END) AS ATTACH2NDPARTY
    ,COUNT (CASE WHEN component_type = 'ATTACH3RDPARTY' THEN 1 END) AS ATTACH3RDPARTY
    ,COUNT (CASE WHEN component_type = 'BREAKERGT' THEN 1 END) AS BREAKERGT
    ,COUNT (CASE WHEN component_type = 'BREAKERUSS' THEN 1 END) AS BREAKERUSS
    ,COUNT (CASE WHEN component_type = 'CAPACIFORMER' THEN 1 END) AS CAPACIFORMER
    ,COUNT (CASE WHEN component_type = 'CAPACITOR' THEN 1 END) AS CAPACITOR
    ,COUNT (CASE WHEN component_type = 'CEFIBEROPTIC' THEN 1 END) AS CEFIBEROPTIC
    ,COUNT (CASE WHEN component_type = 'ELASTIDISCONN' THEN 1 END) AS ELASTIDISCONN
    ,COUNT (CASE WHEN component_type = 'NETWORKPROTECT' THEN 1 END) AS NETWORKPROTECT
    ,COUNT (CASE WHEN component_type = 'POLE' THEN 1 END) AS POLE
    ,COUNT (CASE WHEN component_type = 'REACTOR' THEN 1 END) AS REACTOR
    ,COUNT (CASE WHEN component_type = 'RECLOSER3PUPOIL' THEN 1 END) AS RECLOSER3PUPOIL
    ,COUNT (CASE WHEN component_type = 'RECLOSERTSUP' THEN 1 END) AS RECLOSERTSUP
    ,COUNT (CASE WHEN component_type = 'RECLSR3PCNTRL3A' THEN 1 END) AS RECLSR3PCNTRL3A
    ,COUNT (CASE WHEN component_type = 'RECLSR3PCNTRLNT' THEN 1 END) AS RECLSR3PCNTRLNT
    ,COUNT (CASE WHEN component_type = 'RECLSRTSCNTRL' THEN 1 END) AS RECLSRTSCNTRL
    ,COUNT (CASE WHEN component_type = 'RECTIFIERUSS' THEN 1 END) AS RECTIFIERUSS
    ,COUNT (CASE WHEN component_type = 'REGULATORJOINT' THEN 1 END) AS REGULATORJOINT
    ,COUNT (CASE WHEN component_type = 'REGULATOROH' THEN 1 END) AS REGULATOROH
    ,COUNT (CASE WHEN component_type = 'REGULATORUSS' THEN 1 END) AS REGULATORUSS
    ,COUNT (CASE WHEN component_type = 'RMS' THEN 1 END) AS RMS
    ,COUNT (CASE WHEN component_type = 'SPLICEPRIMARY' THEN 1 END) AS SPLICEPRIMARY
    ,COUNT (CASE WHEN component_type = 'STREETLIGHT' THEN 1 END) AS STREETLIGHT
    ,COUNT (CASE WHEN component_type = 'SWITCHSCADA' THEN 1 END) AS SWITCHSCADA
    ,COUNT (CASE WHEN component_type = 'TAPCHANGER' THEN 1 END) AS TAPCHANGER
    ,COUNT (CASE WHEN component_type = 'TRAFFICSIGNAL' THEN 1 END) AS TRAFFICSIGNAL
    ,COUNT (CASE WHEN component_type = 'TRANSF480' THEN 1 END) AS TRANSF480
    ,COUNT (CASE WHEN component_type = 'TRANSFGROUND' THEN 1 END) AS TRANSFGROUND
    ,COUNT (CASE WHEN component_type = 'TRANSFISOLATION' THEN 1 END) AS TRANSFISOLATION
    ,COUNT (CASE WHEN component_type = 'TRANSFOH' THEN 1 END) AS TRANSFOH
    ,COUNT (CASE WHEN component_type = 'TRANSFUG' THEN 1 END) AS TRANSFUG
    ,COUNT (CASE WHEN component_type = 'TRANSFURD' THEN 1 END) AS TRANSFURD
    ,COUNT (CASE WHEN component_type = 'TRANSFUSS' THEN 1 END) AS TRANSFUSS
    FROM (SELECT fy.id AS facility_id
          ,fy.external_facility_id
          ,fy.flty_facility_type as facility_type
          ,cp.cpty_component_type as component_type
          FROM facilities fy
          LEFT OUTER JOIN components cp
          ON cp.facility_id= fy.id
          ORDER BY fy.id DESC)
    GROUP BY facility_id, facility_type
    I was asked to do, is to display a number of facility_type who have each of the combinations of the 'DEAL' 33 areas. Installation types are strings. So an expected result would look something like:

    FACILITY_TYPE | ATTACH2NDPARTY | ATTACH3RDPARTY | BREAKERGT | ... TRANSFUSS | COUNTY
    MANHOLE X X 10
    MANHOLE X X 22
    POLE X X 5

    and so on. Because there are 33 BUSINESS areas and therefore 33! possible combinations, I was thinking about a sort of loop would achieve the desired result, but I'm stuck and could really use a shot in the arm. Any help will be appreciated and obtained points! Thanks in advance.
    select
     facility_type
    ,ATTACH2NDPARTY
    ,ATTACH3NDPARTY
    -- and so on
    , count(*) cnt
    from (
    --your query
    SELECT facility_id
    ,facility_type
    ,COUNT (CASE WHEN component_type = 'ATTACH2NDPARTY' THEN 1 END) AS ATTACH2NDPARTY
    ,COUNT (CASE WHEN component_type = 'ATTACH3RDPARTY' THEN 1 END) AS ATTACH3RDPARTY
    ,COUNT (CASE WHEN component_type = 'BREAKERGT' THEN 1 END) AS BREAKERGT
    ...
    )
    group by
     facility_type
    ,ATTACH2NDPARTY
    ,ATTACH3NDPARTY
    -- and so on like in projection
    
  • Need help with creating table that inserts the lines according to the amount of data

    Hello

    I try to create a table for supervisors to enter their subordinates of information and inserts lines for supervisors with several of his subordinates.  This form is not be connected to a data source, the supervisors will be simply fill out the form and print.  I want it sort of look like this:

    Name Position # Ranking Hours

    I really appreciate any help.  Thank you!

    Hi Laura,

    It's very strange. I downloaded a new version on the site and it works perfectly. The script is in the right place.

    I can sugggest you right click on the download link and select "save a copy as" the alternative menu. This should save the form locally and from there, you should be able to open it in Acrobat.

    If you are a Mac, make sure that the form opens in preview from Apple.

    Also make sure that Javascript is enabled in Acrobat (in the preferences window).

    Niall

  • Need help to build my new computer

    Well, I'm building a new computer, and I currently have Vista from a computer emachines OEM. I'll transfer my HD on the new computer, and if I order the recovery of their own disc, it'll work reinstall Vista on the new motherboard?

    N ° a license of Windows OEM eMachine is only valid for the original eMachine computer, with which he came.  You would be much better with Windows 7.  Example: Microsoft Windows 7 Home Premium 64-bit - OEM. Carey Frisch

  • need help in building a query

    Hello

    using oracle 11 g.
    I have 2 tables.
    One is tableA which is having all the information of the user and the primary key is the useremailid.
    Another table is tableB is having info in case users so the primary key is caseid and the username is the foreign key.
    And ago created other fields as what has been the case, and as there are other fields.

    Now I'm trying
    to retrieve all users in tableA to tableB monthly, even if they did not create case
    as if tableA has
    userA who created the case in tableB on jan - 10 Feb-10
    UserB who created the case in tableB on feb - 10 mar-10

    So those who want to y
    User - Date added - cases created
    Output of query results
    userA - Jan-10 - 10
    userA - Feb-10-20
    userA Mar - 10 - 0
    UserB - Jan-10 - 0
    UserB - Feb-10-200
    UserB Mar-10 - 90

    create stmts are like this->
    Create table TableA
    (
    Username varchar (120) (PK)
    )

    Create table TableB
    (
    case_id varchar (15), (PK)
    cases_created timestamp (6).
    Username varchar (120) (FK)
    )

    SQL query
    SELECT count (case_id), to_char (cases_created,'MON-YYYY ""), username
    of right outer join tableB, tableA on tableA.username = TableB.username
    I tried using left/right/full, but I don't get what I want.

    Please help me on this.
    Thank you

    Hope that this application solves your condition

    select username,to_char(to_date('01'||months,'dd-mm-yy'),'mon-yy') "Cases created",sum(cnt) "Count of cases" from
    (
    select username,months,1 as cnt from (select lpad(rownum||'-'||yr,5,0) as months from ( select to_char(cases_created,'yy') yr from tableb where rownum<2)
    connect by level<=12) months_tab, tableb
    where to_char(cases_created,'mm-yy')=months
    union all
    select username,months,0 from (select lpad(rownum||'-'||yr,5,0) as months from ( select to_char(cases_created,'yy') yr from tableb where rownum<2)
    connect by level<=12) months_tab, tableb
    where to_char(cases_created,'mm-yy')!=months
    )
    group by username,months
    having months<=(select max(to_char(cases_created,'mm-yy')) from tableb)
    order by username,months asc
    ;
    
    USERNAME      Cases created Count of cases
    
    abc.abc@com   jan-10           1
    abc.abc@com   feb-10           2
    abc.abc@com   mar-10          0
    def.def@com   jan-10            0
    def.def@com   feb-10           1
    def.def@com   mar-10          1    
    

    Published by: Nina Prabhu Sep 29, 2011 23:55
    changed the code to numbers diaplat months on words

    months 'Case created' ===> to_char (to_date ('01' | month, "dd-mm-yy"), 'Mon - yy') 'created '.

  • Need help to build my first WebService

    Hi guys,.

    I'm developing my first web service using eclipse. The web service is very simple, that it is just a list that will be called by a pod of JMS. For user interaction I use JSF when the user enters a JMS bean option should call the web service and get the result with respect to the option entered by the user. I am very new to web services and their creation with eclipse and I don't have any idea what to call it with a WAD of a customer. I did a lot of research but did not get a clear explanation how integrate EJB web services.

    I will be grateful if you can support me with some useful links on this issue and where to download the EJB container.

    Greetings from King,

    deployment of a queue is not in the jboss.xml; you create a separate service for it. For example, you can add a file "myapp-destinations - service.xml' in the deployment directory and add the following content:"

    
    
    
        
          jboss.messaging:service=ServerPeer
        
        jboss.messaging:service=PostOffice
      
    
    

    It will deploy a queue 'MyJmsQueue '. In this configuration example replace "myapp" and "MyJmsQueue" with any name you want.

    Who helps you, or was your problem elsewhere?

  • need help to build my site * total newbie *.

    Hi people,

    I would like to create a site very similar to this one

    http://www.designerapparel.com/

    It doesn't seem to be very complicated... ive got dreamweaver and fireworks CS5, but being a total newbie

    I don't know where to start

    This site uses some sort of short content management system called CMS is software that uses a kind of programming language in traffic jams with a database. Most popular combination using PHP programming language and the MySQL database.

    A web site CMS is the database. The design of the site template is separate from the content. This allows you to change the structure of any time without affecting the content stored on the site. Authors and editors can access the site from any computer with an internet connection. It is almost as easy as changing your myspace page. The backend administration panel allows not only add users to content and eat but also to add modules, components and modules to things like forums, shopping, applications, news management modules and etc.

    If you use a plain site to add static html Web site content by authors different, each author will have to download the pages of the server on his computer, first of all, put to day, then upload them to the server that would create tons of pages html with possible duplicates but with CMS all content pages are stored in the database and you have a few static pages dedicated to the function and implementation page.

    I suggest you have a quick glance at some of these content management systems, many of them is open source (free). Your webhost can install them for you, or you can install them yourself. CPanel Web hosting usually come these days with EASY Installer from 1-Click software that installs most of the popular like Joomla, Drupal, Wordpress and etc.

    Website where you can take a look at some demos of CMS open source software:
    http://PHP.opensourceCMS.com/

    In your case, I would have a look at the section of e-commerce:
    http://PHP.opensourceCMS.com/scripts/show.php?CATID=3&category=ecommerce

    Keep in mind that most of them look plain on this site because they are only demos. I suggest that you take a look at their official websites and visit the forums where people to Web sites like this also, you can look at what the models are proposed and find something you like or which corresponds to site in your post. I'm sure you will find something that will come close to the design above with little CSS twiking you smilar web site.

    Hope I've been helpful and I have do not confuse you even more. Good luck

    Kind regards.

  • Need help - filming of football - to insert the marker of the player!

    Hi I'm filming football games and you want to highlight a player in insecting one shape any marker on the player for a viewer to identify remotely during the video

    How can I do this? I use Adobe Elements 4.0 on vista. THX

    Vista, huh? Just as I suspected. Take a look at this LINK. Why MS stopped, install the necessary CODEC for their own AV files and their own player is beyond me. At least, they offered a pack.

    A word on CODECS 'packs '. Others that the present, I'm not a fan of the CODEC "packs". Too much of creates problems. When it comes to the CODEC, I install only those that I need a particular file. I also go to the source, if possible, and will pay for the CODEC appropriate, even if there is others who are free. I want to get the right code in my CODEC and not a pirated version or engineering reverse. In addition, some CODEC packs have included malware - not all, but some. It's another reason that I go to the source and buy most of CODEC. Just a sidenote.

    Good luck

    Hunt

Maybe you are looking for