Create dynamic links.

Greetings:
In a left nav column, I have several links:
<cfmenu name="nav" type="vertical" bgcolor="white"
fontcolor="black">
<cfmenuitem display="page1"
href="javaScript:ColdFusion.navigate('page1.cfm','myDiv')">
</cfmenuitem> etc.
I want each link to display the target page in the right
table cell:
<cfdiv id="myDiv" bind="url:page1.cfm">
</cfdiv>
I have got this working but It acts erratically.
A few questions: does there need to be the same number of div
tags as links, e.g. <cfdiv id="myDiv" bind="url:page2.cfm">
</cfdiv> etc.?
Does the target page need to be a standalone HTML document or
can it be simply text that takes on the style elements of the area
it displays in?
Not a lot of postings re: cfmenu- are people using it?
Thanks!

There is no direct connection with the cfmenu and reference
links. You can even use direct links without any cfmenu.
such as:
<a
href="javascript:ColdFusion.navigate('content.cfm?page=aboutus','mainContent');">About
Us</a>
You can use any HTML/CFM template or text or image etc. for
your binded divs. It is just URL.

Similar Messages

  • Creating dynamic link in column

    Hi All,
    I am using Jdev 11.1.1.2.0 . I am getting few urls that is comma seperated. I need to seperated different URL from the value and create no of link or golink equal to no of the value.Please suggest me how to do this.
    I need to create dynamically link and put diffent url value in destination property of Link
    How can i create dynamically link .

    I created a sample app for this. Please see if it is helpful.
    http://adf-use-cases.googlecode.com/files/LinkApp.rar
    I am displaying all the employees(first name) in a department as link. For now, the link is pointing to google. You can change according to your requirement.
    The code is written in DepartmentVORowImpl.java
    +public String getEmployeeName() {+
    RowSet rowSet = getEmployees();
    RowSetIterator ritr = rowSet.createRowSetIterator("new");
    StringBuilder formattedLink = new StringBuilder("");
    String requestURL = "http://www.google.com";
    String hrefPrefix = "<a href='";
    String targetProp = "' target='_blank' class='xfd' >";
    String hrefSuffix = "</a>";
    String employeeName = null;
    +while (ritr.hasNext()) {+
    Row row = ritr.next();
    formattedLink.append(hrefPrefix).append(requestURL).append(targetProp).append(row.getAttribute("FirstName")).append(hrefSuffix).append(" | ");
    ritr.next();
    +}+
    ritr.closeRowSetIterator();
    rowSet.closeRowSet();
    if (formattedLink != null && formattedLink.length() > 0)
    employeeName =
    formattedLink.substring(0, formattedLink.lastIndexOf(" | "));
    return employeeName;
    +}+

  • How to create dynamic links in one page with div panels

    HI
    I am using Dreamweaver CS3 with developer toolbox.
    I have a PHP page where I have two separated tabbed div
    panels.
    I want to show dynamic summary of data from database in one
    panel.
    In the other panel I have a table with dynamic text.
    I want to click on a link in the first panel with the summary
    data and see the whole record in the other panel table.
    How do I tell the dynamic link to send the wuery and show the
    data in the detailed panel without having to reload the whole page.
    I hope I am clear enough....
    Idan Agmon

    I asked something similar to this last week and was told by
    others much more experienced that it couldn't be done. Hopefully
    your quest will yield something.

  • How to create Dynamic Links

    Hi all,
    I have a table (let's call it Links) of structure like the following:
    Link_Lable varchar2(100),
    Link_Page_ID varchar2(5)
    How can I use rows in that table to generate a dynamic links so that when a Link_Label is clicked, the engine redirects to page of the value stored in the clicked Link_Page_ID?
    Any guideline is appreciated.

    See
    http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b14377/rprt_drill.htm

  • How to create dynamic link which point to a BLOB column in report

    Hello,
    I am fighting with the issue for about 2 days.
    My purpose is to use Oracle Report Builder to build a report of our employee directory which contains employee's information and also employee's picture. The requirement is that our report is going to generate a html file to our web server. By creating a dynamic hyperlink to the Employee's name in the report output file (the html file generated to our web server), it should then display the corresponding employee's picture which is a BLOB column stored in our oracle database.
    I only can create the hyperlink for the employee's name if the link is static, like 'http://www.google.com
    But from the Oracle Reports 10g Release2 (10.1.2), about the exmaple 1: Dynamic hyperlink, I refered the link
    http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwcontxt%7Cprops%7Cpi_lay_hyperlink%7Ehtm/
    The link gave he following example shows a value for the Hyperlink property that specifies a link to a destination identified dynamically:
    'DEPT_DETAILS_' || LTRIM(TO_CHAR(:DEPTNO))
    where :DEPTNO is a column value retrieved from the database at runtime.
    I tried as the same way to want it dynamcially shows the column :EMP_PHTOT, which is one BLOB column, but it was failed.
    Anyone knows how to implement this? Any inputs is appreciated!
    Thanks,
    Jing

    What exactly is the error messag u are getting ?
    If u have a hyperlink which refers to www.oracle.com in ur pdf, does it work ?
    I think simple URL from PDF will not retrieve any data from the oracle database since it has to make some database connection.
    My suggestion would be whenever request for employee information comes,
    extract that picture from blob and put it a virtual folder in the application server.
    And from the pdf/report access the URL with reference to the picture...
    Rajesh Alex

  • Want to create dynamic link with ActionEvent

    Hi all,
    I am developing an application in JSF. I want to create links dynamically with their action event. I can create links dynamically, but I don't know how to provide actionEvent OR actionListener to those links.
    Any help will be appreciated. ( If possible, give me an example / sample code. )
    Thanks in advance,
    JSF GEEKS
    Edited by: jsfgeeks on Nov 24, 2009 10:15 AM

    commandLink?
    What do you mean when you say: "I want to create links dynamically with their action event."
    Do you need parameters? Or different action events?

  • Creating dynamic link on each click

    Hey everyone!
    got another small issues... this is the last thing i need to
    fix to finish my project :-).. what im doing is creating a map that
    will allow you to click on a state and using PopUpManager, display
    data from that state (the data resides within an xml file).
    right now on each click, i run clickState="createPopUp()".
    the createPopUp functions runs and initializes the http service to
    grab the xml file. in the result handler.. i have it grab the data
    for the state. the problem is, i cannot figure out how to make it
    dynamic so that when u click on one state it grabs the name and
    then uses the name to grab the data from the xml file. for example,
    right now it always grabs event.result.venuelist.michigan but i
    want it to grab event.result.venuelist.stateName so its dynamic (or
    something like that). Thank you so much for the help!!!
    Here is the result handler that grabs the info from the
    xml... here i just set it to grab the data for michigan to make
    sure it was working..
    quote:
    public function resultHandler(event:ResultEvent):void {
    /* var icon:Object = map.target.selected.name; */
    arrcol = event.result.venuelist.michigan as ArrayCollection;
    dg.dataProvider = arrcol;
    Here is the code for creating the popup... i tried to use
    this.selectedItem.name to grab the name of the state but it didnt
    work. i did it in an alert box to test if it was grabbing the name.
    quote:
    public function createPopUp():void {
    var icon:Object = this.selectedItem.name;
    var state:String = icon;
    Alert.show(state, 'Alert Box', mx.controls.Alert.OK);
    getXML.send();
    PopUpManager.addPopUp(panel, this, true);
    PopUpManager.centerPopUp(panel);
    Here is the entire code... there are two xml files... one
    inline and one external... the one inline which is shown below
    contains the name for each state in the <name></name>
    brackets... that is the info i need to grab once i click so i can
    grab the info for that state from the external xml file. (i left
    out some states from the populationdata xml to shorten the code for
    posting)
    quote:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*" layout="absolute" backgroundGradientAlphas="[1.0, 1.0]"
    backgroundGradientColors="[#FFFFFF, #FFFFFF]" width="739"
    height="481" creationComplete="init()">
    <!--<mx:XML id="list"/>
    <mx:HTTPService id="getXML" url="VenueList/list.xml"
    resultFormat="e4x" result="list = XML(event.result);"/>-->
    <mx:HTTPService id="getXML" url="list.xml"
    result="resultHandler(event)" resultFormat="object"/>
    <!--
    The populationData contains elements for each state: the
    state code (eg, "ca")
    and the data (population). This data set assumes you will
    color the map based on
    a colorFunction (see below). Alternatively, you can supply a
    color for each state
    directly in the model: <color>0xffcccc</color>
    -->
    <mx:XML id="populationData" format="e4x" xmlns="">
    <list>
    <state><name>California</name><code>ca</code><present>0</present></state>
    <state><name>Texas</name><code>tx</code><present>1</present></state>
    <state><name>NewYork</name><code>ny</code><present>1</present></state>
    <state><name>California</name><code>fl</code><present>0</present></state>
    <state><name>California</name><code>il</code><present>1</present></state>
    <state><name>California</name><code>pa</code><present>0</present></state>
    <state><name>California</name><code>oh</code><present>1</present></state>
    <state><name>California</name><code>mi</code><present>1</present></state>
    <state><name>California</name><code>ga</code><present>0</present></state>
    <state><name>California</name><code>nj</code><present>1</present></state>
    <state><name>California</name><code>nc</code><present>0</present></state>
    </list>
    </mx:XML>
    <mx:Style>
    global {
    modalTransparencyBlur: 0;
    modalTransparency: 0.6;
    modalTransparencyColor: black;
    modalTransparencyDuration: 500;
    </mx:Style>
    <mx:Script>
    <![CDATA[
    import mx.events.ListEvent;
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    import mx.containers.Panel;
    import mx.controls.Button;
    import mx.controls.Spacer;
    import mx.controls.DataGrid;
    import mx.containers.ControlBar;
    import mx.controls.dataGridClasses.DataGridColumn
    import mx.managers.PopUpManager;
    import mx.controls.Alert;
    import mx.events.ListEvent;
    public var panel:Panel;
    public var arrcol:ArrayCollection = new ArrayCollection();
    public var dg:DataGrid = new DataGrid();
    public var arr:Array = [];
    public function init():void {
    var d1:DataGridColumn = new DataGridColumn;
    var d2:DataGridColumn = new DataGridColumn;
    var d3:DataGridColumn = new DataGridColumn;
    var d4:DataGridColumn = new DataGridColumn;
    var d5:DataGridColumn = new DataGridColumn;
    var d6:DataGridColumn = new DataGridColumn;
    var b1:Button = new Button();
    var cb:ControlBar = new ControlBar();
    var s:Spacer = new Spacer();
    b1.label = "Click here to return to the map";
    b1.addEventListener(MouseEvent.CLICK, closePopUp);
    s.percentWidth = 100;
    cb.addChild(s);
    cb.addChild(b1);
    dg.width = 638
    dg.height = 146
    d1.width = 150;
    d1.headerText = "Venue Name";
    d1.dataField = "name";
    d2.width = 150;
    d2.headerText = "Address";
    d2.dataField = "address";
    d3.width = 100;
    d3.headerText = "City";
    d3.dataField = "city";
    d4.width = 50;
    d4.headerText = "State";
    d4.dataField = "state";
    d5.width = 50;
    d5.headerText = "Zip";
    d5.dataField = "zip";
    d6.width = 100;
    d6.headerText = "Phone";
    d6.dataField = "phone";
    arr.push(d1);
    arr.push(d2);
    arr.push(d3);
    arr.push(d4);
    arr.push(d5);
    arr.push(d6);
    dg.columns = arr;
    panel = new Panel();
    panel.title = "Here are our venues:";
    panel.width = 658;
    panel.height = 222;
    panel.addChild(dg);
    panel.addChild(cb);
    public function resultHandler(event:ResultEvent):void {
    /* var icon:Object = map.target.selected.name; */
    arrcol = event.result.venuelist.michigan as ArrayCollection;
    dg.dataProvider = arrcol;
    public function closePopUp(evt:MouseEvent):void {
    PopUpManager.removePopUp(panel);
    public function createPopUp():void {
    var icon:Object = this.selectedItem.name;
    var state:String = icon;
    Alert.show(state, 'Alert Box', mx.controls.Alert.OK);
    getXML.send();
    PopUpManager.addPopUp(panel, this, true);
    PopUpManager.centerPopUp(panel);
    [Bindable]
    public var stateData:ArrayCollection;
    * This method uses the alpha setting to indicate mouseOver
    and mouseOut events.
    public function hilightState( event:*, alpha:Number ) : void
    map.setStateAlpha( event.code, alpha );
    * This method is invoked by the click event on the map. All
    this does is set the comboBox to
    * the state selected.
    public function selectState( event:USAMapEvent ) : void {
    var stateData:Object = map.stateData;
    for(var i:Number=0; i < stateData.length; i++) {
    if( event.code == stateData
    .code ) {
    break;
    * This method is used to set the color of a state based on
    the item given.
    public function dataColor( item:Object ) : Number {
    if( item.present > 0 ) return 0x2e81fe;
    else return 0xe9e9e9;
    ]]>
    </mx:Script>
    <mx:CurrencyFormatter id="currFmt" />
    <mx:NumberFormatter id="numFmt" />
    <!-- Set the USAMap and its initial properties:
    dataProvider - maps state codes to colors and valuesa
    dataField - indicates which field should be displayed in the
    dataTip
    formatFunction - specifies a function to use to present the
    data tip
    clickState - event handler invoked when mouse is pressed and
    released over a state
    rollOverState - event handler invoked when mouse is rolled
    over a state
    rollOutState - event handler invoked when a mouse is rolled
    out of a state
    -->
    <USAMap id="map" dataProvider="{populationData.state}"
    dataField="population" colorFunction="dataColor"
    mapLoaded="stateData = new ArrayCollection(map.stateData)"
    clickState="createPopUp()"
    rollOverState="hilightState(event,.5)"
    rollOutState="hilightState(event,1)" left="10" top="10"/>
    </mx:Application>

    Tracy, not again!!!! :)
    lastResult could be and should be used in AS.
    If you've got a race condition - there will be a
    desynchronisation between event & lastResult property. But it
    does not mean that you can't use it - you should take measures to
    prevent race conditions from occurring.
    Cheers,
    Dmitri.

  • Dynamic Links in Form

    Is there a way to create dynamic links in a form?
    For instance I have an interactive report/form if I click on the edit link the report takes me to the form to do an update based on the primary keys. I would like that form to also have links that can pass some foreign key values and take me to a related form to edit the related information.

    That is what I am trying to do, but I am unsure of how to pass the appropriate string with the values of the foreign/primary key.
    I am using the following URL, but the form doesn't seem to be populating based on the primary key
    <!--
    edit
    -->
    Message was edited by:
    dsn0wman

  • Dynamic links

    Hello all
    iWeb fab, but has anyone looked into creating dynamic links to iTunes, eg, if you have a Top 10 Playlist in your iWeb, when it change in itunes get it to automatically update in iWeb, would be cool feature.

    Hi,
    Still get a error message but it is a different one.
    1084: Systax error: expecting colon before right brace
    1084: Systax error: expecting identifier before right brace
    Here is my updated code:
    <mx:Repeater
    dataProvider="{feed.lastResult.rss.channel.item}">
    <mx:VBox verticalGap="0" backgroundColor="#EEF5EE"
    borderStyle="outset">
    <mx:LinkButton click="navigateToURL(new
    URLRequest({url}), '_blank')" label="{title}"/>
    </mx:VBox>
    </mx:Repeater>

  • How to create a dynamic link in a Form to link to a specific FOLDER

    Hello,
    I have created a reports of all employees of my department.
    This reports shows me the empno and ename
    When I clicked on a empno ( for example empno = 1 ) then then I got a MASTER DETAIL FORM about that employee(empno = 1) .
    Who he or she is and which course he or she had followed.
    I want create a dynamic link in the MASTER DETAIL FORM which shows me directly the folder of that employee ( in this example folder 1 ).
    If I clickt on the report with all employees of my department on an other number ( for example empno = 3333333) then if I click on the dynamic link in the MASTER DETAIL FORM I want to see the folder of employee 3333333 !!! You know what I mean ?
    What I want to know is, how to create a dynamic link that shows me directly a folder which is dependent on which empno I had clicked on in the report ( report with employee numbers and ename )
    Is there any way to pass some parameters into a link to a Folder ? Is this possible in Portal ? Does anyone know how to do this, or do you have a suggestion how to solve this problem ?
    Thanks a lot !!!
    Chu Lam

    Hi Chetan,
    I am glad that someone had replied on my question.
    I will explain it to you again.
    I have created a report that shows me all employees. If I click on a employee number then I get an MASTER DETAIL FORM on my screen with all the information(where he works now and which number I have to dial ifhow can I reach him by telephone) of that employee on which number I clicked on.
    I really like this mechanism. (You click on a number and the information that you see in the next screen is dependent of the number you clicked on ! )I have created all this. It works fine.
    What I want is to expand this example.
    Every employee has a FOLDER (yes, those ones in Content Area ) which they can insert text or image into that folder. The folder name is just the employee number. ( employee with employee number 3303, he owns a folder which is named 3303 and an employee with empno 9999, he or she owns a folder with the name 9999. )
    Every employee can tell more about himself in that FOLDER by iserting text and images. For example : What he likes, pictures of his vacation, something like this.
    What I want is this :
    If I click on the first report,which provides me all employees on screen, on a employee number 3303 then I get a Master Detail Form on my screen with all information about that employee with employee number 3303. And I want in this MASTER DETAIL FORM to create a link that shows me directly the FOLDER of that employee ( 3303), so I can learn more about employee with employee number 3303. But I don't know how to create this link.
    That link had to be dependent on the employee number. The difficult thing about this link is that this link had to be dynamic.
    I hope this will make it clear to you :
    (report all employees:)
    empno ename
    3301 john smith
    3302 peter clark
    3303 wilson jones
    If I click on a empno ( for example 3303) then I get a MASTER DETAIL FORM which provides me information.
    (MASTER DETAIL FORM )
    EMPNO 3303
    ENAME wilson jones
    department New York
    mobile number 98908763
    Company tel. no day
    AOL 097485838 monday till wednesday
    Oracle 04848584333 thursday and friday
    LINK
    (what I want is to create a link here )
    If I click on LINK in this MASTER DETAIL FORM then I want to link to the FOLDER of this employee ! ( In this example it is FOLDER 3303.
    BUT IF I CLICKED ON THE FIRST REPORT ON A DIFFERENT NUMBER ( FOR EXAMPLE 3301) THEN IF I CLICK ON LINK IN THE MASTER DETAIL FORM THEN I HAVE TO LINKED TO FOLDER 3301.
    I just want to know how to make a link like this ( create a dynamic link to a specific folder ).
    Thanks in Advance.
    Chu

  • Create a Link using Dynamic Text and Capture Variable

    I am building a dynamic website using Dreamweaver CS5 with Coldfusion 9
    Currently I have created a dynamic text table. The table is created by querying the Invoice table and displays the all the customers Invoices. The columns Include Invoice #, Date, Amount Paid, BalanceRemaining, Due Date. So basically lists all the invoices I have applied to the unique customer. It is pulled up using a session variable I created from the login page.
    My question is this I want to make the "Invoice #" linked so when you click on it it goes to a new page and performs a new query which retrieves infro related to that specific invoice such as Services Rendered, Service Description, Date, Price, Total. I was able to create a link to the Invoice # but I am stuck trying to figure out how to capture the Unique Invoice # and apply it to the new query. Is this possible if so how?
    Thanks for your help!

    Now keep in mind I am speaking strictly from a web and SQL standpoint as I have no experience with coldfusion.
    If you are able to create the link to the Invoice, I am perceiving this as the following:
    Invoice
    Links to
    #123
    page.php?invoice=123
    #345
    page.php?invoice=345
    If your page is setup like that then you already have the data stored in the browser request with the GET method.  In PHP the equivalent is the $_GET array.  I am assuming ColdFusion has a similar array to work with forms.  Then on your following page you obviously need to check that the visitor came from the prior page with the proper permissions to ensure that someone doesn't get the address page.php?invoice=### and just guesses through and views all invoices if they are not supposed to.  Then your query would look something like the following:
    SELECT * FROM invoice_table WHERE invoice_number = $_GET['invoice']
    Remember this in written in PHP so yours should be a similar equivalent.
    Hopefully this helps a little to get you going in the right direction.

  • How do I create dynamic external links

    I am attempting to create a dynamic link from information
    stored in a sql database. The database table has one field, the
    website address. The code below successfully pulls the information
    from the database but it does not display as a link, only as text.
    <?php do { ?>
    </MM:DECORATION></MM_REPEATEDREGION>
    </a>
    <MM_REPEATEDREGION SOURCE="@@rs@@"><MM:DECORATION
    OUTLINE="Repeat" OUTLINEID=2><p><?php echo
    $row_rskingsLinks['kingsLinks']; ?></p>
    <a href="<?php echo $row_rskingsLinks['kingsLinks'];
    ?>">
    <?php } while ($row_rsKingscentre =
    mysql_fetch_assoc($rsKingscentre)); ?>
    I have added the following code to create a link but it trys
    to link to a local url which it can not find
    <?php do { ?>
    </MM:DECORATION></MM_REPEATEDREGION>
    </a>
    <MM_REPEATEDREGION SOURCE="@@rs@@"><MM:DECORATION
    OUTLINE="Repeat" OUTLINEID=2><p><a href="<?php echo
    $row_rsKingscentre['']; ?>"><?php echo
    $row_rskingsLinks['kingsLinks']; ?></a></p>
    <a href="<?php echo $row_rskingsLinks['kingsLinks'];
    ?>">
    <?php } while ($row_rsKingscentre =
    mysql_fetch_assoc($rsKingscentre)); ?>
    </a></div>
    <?php echo $row_rskingsLinks['kingsLinks'];
    ?></a></p>

    Where are you getting this code?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jeffoirecoupe1234" <[email protected]>
    wrote in message
    news:g147fb$cnv$[email protected]..
    >I am attempting to create a dynamic link from information
    stored in a sql
    > database. The database table has one field, the website
    address. The code
    > below
    > successfully pulls the information from the database but
    it does not
    > display as
    > a link, only as text.
    >
    > <?php do { ?>
    > </MM:DECORATION></MM_REPEATEDREGION>
    > </a>
    > <MM_REPEATEDREGION
    SOURCE="@@rs@@"><MM:DECORATION OUTLINE="Repeat"
    > OUTLINEID=2><p><?php echo
    $row_rskingsLinks['kingsLinks']; ?></p>
    > <a href="<?php echo
    $row_rskingsLinks['kingsLinks']; ?>">
    > <?php } while ($row_rsKingscentre =
    > mysql_fetch_assoc($rsKingscentre));
    > ?>
    >
    > I have added the following code
    > <?php do { ?>
    > </MM:DECORATION></MM_REPEATEDREGION>
    > </a>
    > <MM_REPEATEDREGION
    SOURCE="@@rs@@"><MM:DECORATION OUTLINE="Repeat"
    > OUTLINEID=2><p><a href="<?php echo
    $row_rsKingscentre['']; ?>"><?php echo
    > $row_rskingsLinks['kingsLinks'];
    ?></a></p>
    > <a href="<?php echo
    $row_rskingsLinks['kingsLinks']; ?>">
    > <?php } while ($row_rsKingscentre =
    > mysql_fetch_assoc($rsKingscentre));
    > ?>
    > </a></div>
    >
    Text
    Text
    <?php echo
    $row_rskingsLinks['kingsLinks'];
    > ?></a></p>
    <?php echo $row_rskingsLinks['kingsLinks'];
    > ?></a></p>
    >

  • PP to AE Dynamic link doesn't create video layer in AE

    PP to AE Dynamic link doesn't create video layer in AE. CC2014 updated.
    I'm DynLink sending a MotionJpeg clip from PP to AE. On my MacPro, Right clicking clip in PPro> replace with AE Comp. AE opens showing the comp but no video layer in the comp, (the comp is completely blank), and in PPro shows a comp in the Project Panel and a blank video chip in the timeline. This used to be a simple proceedure, is there a setting to enable in Project Settings I don't know about. New to CC, used to do this all the time in CS6.

    It looks like you've got collapse transformations turned on and that the Footage layer is a composition. I'd guess that the Maria Isabel.avi in the Maria Isabel.avi composition is 2D. With Collapse transformations turned on what you are seeing is normal behavior.
    What you want to do is to simply right click on the Maria avi in the Premiere timeline and select Replace with After Effects Composition. Once inside AE don't pre-compose the avi layer, just make it 3D.
    The other option would be to open up the Maria Isabel.avi composition and do your 3D transformations there.
    Yet another option wold be to turn off Collapse transformations.
    I'm not sure why the Maria Isabel.avi footage was Pre-comped. I can't see anytning in the screenshot that gives me a reason.

  • Create DB Link dynamically in JAVA - Problems

    Hi everyone,
    I am trying to dynamically create a database link in the database. Now what I am asking is this. When I type in SQLPlus create database link 123... and execute it, the database link is created just fine.
    BUT when I pass the exact same statement through a java class (ie stm.execute("create database link 123...");) I get errors....
    Does anyone have any idea why this occurs?
    Thank you all.
    Koz Paz

    GaneshJay wrote:
    I 'm executing a sql query from Java. The sql has data from two different database and i'm using db link for the same.
    But my java program connects to only one database. So my program is throwing "connection description ofrm remote database not found" error.
    How can i change my java program which will solve this issue?Doesn't sound like an application error, it's probably a database error. What happens if you execute the query in the database through a tool? (Query browser?)

  • I got problem on installing iTunes. When I clicked iTunes out, two windows popped out. One said the procedure entry point CFAttributed String Create Mutable could not be located in the dynamic link library Core Foundation.dll.

    I got problem on installing iTunes. When I clicked iTunes out, two windows popped out. One said the procedure entry point CFAttributed String Create Mutable could not be located in the dynamic link library Core Foundation.dll. and one just said *Itunes was not installed correctly.  Please re install I Tunes Error 7 (windows error 127) . I've tried uninstalling and reinstalling it. But either way cant work. I really need some of your help! PLS HELP ME!

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The error shares a similar pattern to that in the third box, so a similar approach should work. Look for CoreFoundation.dll in C:\Program Files (x86)\Common Files\Apple\Apple Application Support, delete it, then repair Apple Application Support.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

Maybe you are looking for