How to access all Flash components?

Hello community,
I have a main.mxml file which contains a tabNavigator. The tabNavigator opens different modules when different tabs are clicked. Outside this tabNavigator, I have a toggle button called BiggerText.
When I click BiggerText, I want to change the fontsize in all the datagrids in all the modules.
protected function biggerTextToggleBtn_clickHandler(event:MouseEvent):void
     if(biggerTextToggleBtn.selected){
     s:DataGrid.setStyle("fontSize",14);
     biggerTextToggleBtn.label="Smaller Text";
else{
     spark.components.DataGrid.AS3.setStyle("fontSize",12);
     biggerTextToggleBtn.label="BIGGER TEXT";
Anybody has a clue how to do that?
Bold text are possibilities I tried, which of course did not work.

Hi,
you can do all of what you said with JSF. ADF Faces provides drag and drop functionality (have a look at the Web Developer Guide) that allow you to move nodes within a tree. The drag and drop framework sends an event notification to the server with a reference to the changed node.You can also have context menus on a tree node to help users creating, deleting and editing a tree nodes. JavaScript isn't required at all, even if you wanted to drag and drop a row in a table on top of a tree node to create a new tree node.
I just finished a book project in which we explained this usecase. As soon as I find the time, I'll follow up with a blog entry on this as it seems to be a common requirement. However, as mentioned, the web developer guide on OTN explains drag and drop in ADF Faces pretty well.
However, if you choose the "Search" link above, choose JDeveloper and ADF as the product to search for and type drag and drop as the search string, then you get lots of code sample posted in the past to this forum
Frank

Similar Messages

  • HT4910 sold my ipad today. the concern is how to access all info stored in cloud and if possible eventualy merge data into new andriod tablet. Thanks all of you who respond.

    sold my ipad today. the concern is how to access all info stored in cloud and if possible eventualy merge data into new andriod tablet. Thanks all of you who respond.

    >
    <IfModule mod_weblogic.c>
    WebLogicCluster 127.0.0.1:7005,127.0.0.1:7007,127.0.0.1:7003,127.0.0.1:7103,127.0.0.1:7104
    MatchExpression /app1
    </IfModule>
    <Location /weblogic>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007,127.0.0.1:7103,127.0.0.1:7104
    DebugConfigInfo ON
    PathTrim /weblogic
    </Location>
    <IfModule mod_weblogic.c>
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007
    MatchExpression /app2
    </IfModule>
    <Location /weblogic>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007
    DebugConfigInfo ON
    PathTrim /weblogic
    </Location>
    >
    This configuration is weird little bit. There is MatchExpression /app1 and MatchExpression /app2 and at the same time two <Location /weblogic> sections. Are you sure you understand what that configuration stands for?
    Try something like this ...
    <Location /app1>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007,127.0.0.1:7103,127.0.0.1:7104
    DebugConfigInfo ON
    </Location>
    <Location /app2>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007
    DebugConfigInfo ON
    </Location>
    where /app1 and /app2 are contexts of your weblogic applications.
    http://download.oracle.com/docs/cd/E11035_01/wls100/plugins/apache.html
    http://httpd.apache.org/docs/2.0/mod/core.html#location

  • How to access all rows one by one of a ADF table through managed bean

    Hi Experts,
    Hi i am new in ADF.
    Could someone help me for solving the below case?
    Scenario - I have table called Test_T1 which have 4 columns C1,C2,C3,C4. Have created EO,VO and AM for test_t1.
    At the time of ADF page creation i selected the option 'Automatically Exposed UI components in New managed bean' (mynewmanagedbean.java).
    From Data control drag and drop Test_T1 table in the page as a ADF table.
    Set the properties for C1,C2,C3 is read only and C4 is an input text.
    Have add after the table and attathed button action on the managed bean mynewmanagedbean.java.
    At the time of running the page Test_T1 populated with some no. of rows (like 9).
    How can i access all the above rows through pressing the button without selection of any of them.
    Actually i want to print all the table rows in log file at the time of pressing the button.
    Thanks in advance.

    Hi Timo,
    Thanks a lot for your reply.
    I am using the JDeveloper 11.1.2.1.0.
    As previously said I am totally new in this framework. So if you explain the solution given by you then it will be help full for me.
    Don't know r you agree or not for this ?
    When i put your resolution in the command button bean JDeveloper said TestDataRow type not found.
    What will be the type and TestDataRow and what is missing in below code or how i will declare that in below code?
    Also Could please mentioned the missing thing ?
    package createrow.view.pagecreation.bean;
    import oracle.adf.model.binding.DCBindingContainer;
    import oracle.adf.model.binding.DCIteratorBinding;
    import org.apache.myfaces.trinidad.model.RowKeySet;
    import oracle.adf.model.BindingContext;
    import java.util.Iterator;
    import java.util.List;
    import oracle.adf.model.bean.DCDataRow;
    import oracle.jbo.Key;
    import oracle.jbo.Row;
    import oracle.jbo.RowSet;
    import oracle.jbo.RowSetIterator;
    import oracle.jbo.ViewObject;
    public class OrdCreationWithManagedBean {
    public String cb1_action() {
    // Add event code here...
    DCBindingContainer bindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding dcIteratorBindings =
    bindings.findIteratorBinding("TestOrderItemAllocationVO1Iterator");
    // Get all the rows of a iterator
    Row[] rows = dcIteratorBindings.getAllRowsInRange();
    TestDataRow dataRow = null;
    for (Row row : rows) {
    dataRow = (TestDataRow)((DCDataRow)row).getDataProvider();
    // work with the row...
    return null;
    My page bindings like below
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="11.1.2.60.81"
    id="OrdCreationWithManagedBeanPageDef" Package="createrow.view.pageDefs">
    <parameters/>
    <executables>
    <variableIterator id="variables"/>
    <iterator Binds="TestOrderItemAllocationVO1" RangeSize="25" DataControl="MainAppModuleDataControl"
    id="TestOrderItemAllocationVO1Iterator"/>
    <iterator Binds="TestOrderItemsEOView1" RangeSize="25" DataControl="MainAppModuleDataControl"
    id="TestOrderItemsEOView1Iterator"/>
    </executables>
    <bindings>
    <tree IterBinding="TestOrderItemAllocationVO1Iterator" id="TestOrderItemAllocationVO1">
    <nodeDefinition DefName="createrow.view.TestOrderItemAllocationVO" Name="TestOrderItemAllocationVO10">
    <AttrNames>
    <Item Value="AllocationId"/>
    <Item Value="AlocationSequence"/>
    <Item Value="ProductName"/>
    <Item Value="AllocationPercentage"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    <tree IterBinding="TestOrderItemsEOView1Iterator" id="TestOrderItemsEOView1">
    <nodeDefinition DefName="createrow.view.TestOrderItemsEOView" Name="TestOrderItemsEOView10">
    <AttrNames>
    <Item Value="OrderId"/>
    <Item Value="AllocationId"/>
    <Item Value="ProductName"/>
    <Item Value="OrderItemsQty"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    </bindings>
    </pageDefinition>
    Thanks In Advance

  • How to cusomize in Flash: components User Interface Button?

    Flash Componants> User Interface> Button
    How to cusomize components?
    The button works, but where is the code that is making it work?

    Connect recorded session on workig with flash components https://admin.adobe.acrobat.com/_a295153/p49752948/?launcher=false&fcsContent=true&pbMode= normal
    Using the Button component http://www.adobe.com/devnet/flash/quickstart/button_component_as3/
    Simple to modify the UI is to double click on the button and modify its skin in different states as per ur requirements

  • With POP3 protocol, How Outlook access all the folders

    Hi friends,
    I have some doubts. Our mail server doesn't support the IMAP protocol. When i access the mails using Outlook, then I m able to get all the messages of INBOX as well as Trash & Deleted Messages?
    How it happens, When only INBOX is accessible to user Using POP3 protocol. Using Outlook web access, I m able to access all the folder as well as I m able to create the folders also.
    Can somebody tell me how does it works?

    Outlook uses a Microsoft-specific protocol called MAPI. And your statement that your server doesn't support IMAP isn't quite correct. MS Exchange does support IMAP, but you have to ask the administrator to switch on IMAP support. The default setup for Exchange has it turned off.

  • How can get all the components used on the current page

    how can I get list of all components being used on the current page using javascript. I have tried CQ.WCM.getComponentList(CQ.WCM.getPagePath()) but this seems to list all the components available.
    Environment CQ 5.5 Update 1, Widnows 7

    You have to remember that once you are in JS, you are only really able to retrieve markup or representations of the DOM.  The markup is the result of a combination of components, which is technically a "server only" concept.  Components are just a way for CQ to organize executable code, so once a page is rendered a component isn't really a thing.  The closest thing I can think of is to list all of the DIVs that represent a component wrapper that are on the page, but this is error prone and clunky.  You could also make AJAX calls back to the server to retrieve a list of the components by node name, but that approach would not return synthetic resources (ones that render, but do not have a node representing them).
    Why are you trying to do this?  Maybe someone has a better idea, but this has a bad smell to me.

  • How to access all camera feeds on Axis M7014 4-port video encoder with one IP address

    I am trying to interface to an Axis M7014 (4-port) video encoder through IMAQdx. This video encoder has 4 channels of video at one IP address.
    I can see this video encoder in MAX when I hook it up, but since the encoder only has one IP address for all 4 channels, MAX only gives me access to the first camera channel. I cannot figure out how to address cameras 2-4.
    NOTE: I can use VLC or something similar to access all 4 video channels, and the way I do this is by specifying a camera parameter in the rtsp:// addressing string. For example:
    rtsp://172.24.0.164/axis-media/media.amp?camera=2   // get the video from camera #2
    But I can't figure out how to do this in LabVIEW. I'm assuming there must be a way, though. This can't be the only multi-port video encoder out there.

    I found that
    Configuring Multiple Ports (Windows XP only) 
    was referenced in this note http://download.ni.com/support/softlib//vision/Vis​ion%20Acquisition%20Software/February%202014/Visio​... . 
    But I`m not sure it is helpful, you can try it.

  • When you have 2 apple IDs with apps: How to access all apps on a device?

    Hi.
    I couldn't use my newly bougt IPhone because for some reason I wasn't allowed to use my old Apple ID. I got help from an Apple Chat-service (which I can't remember how I found...) with creating a new Apple ID, but where's my previous purcases? I had a ton of apps on the old ID, how do I transfer them to the new one? I've bought some apps with the new one, but it seems like I must delete all my previously bought apps to access the new ones if I want to sync with my laptop (can't sync with two libraries on PC)... It would have been so much easier if I could just merge the IDs completely...

    I found out that I can download things from App Store on the iPad from a different ID that is used to sync with PC. But it would have been nice to just have one ID for all, plain and simple. Merging of acoounts should be possible, this would make shopping much less complicated for users who have to use several IDs.

  • Camera attached with USB - How to access the flash file system?

    OK...this is maddening for someone that is so used to using a Windows file system that can be enumerated on any device, whether a hard disk or attached USB flash device. All I want to do (at this moment) is see the file system on the flash in my camera so I can delete certain images. None of the Leopard utilities seem to be able to access this as a "device". Perhaps this can be done from the terminal with Unix/Linux commands...not something that I want to do.
    Can someone help me?
    Thanks.

    Scott Radloff wrote:
    This has more to do with the camera than OS X. Some cameras use communication protocols that do not play well with the Finder. For these cameras, support is built into iPhoto.
    It is also built into the included Image Capture utility, which is more flexible than iPhoto in some ways for simple downloads. You can preview and select individual pics, and set the folder where the pictures go.
    Terence Devlin wrote:
    Almost all Canon and some Kodak cameras refuse to mount in the File System. It’s a characteristic of the brands.
    In the case of Canon it is lack of support for USB Mass Storage which almost all other brands do. But as stated it is much better and safer to use a card reader instead of the USB cable. A card reader always shows up on the desktop for drag-and-drop.

  • How to access all open documents' ReadImageDocumentDesc?

    Hi everyone,
    I want to get access to the ReadImageDocumentDesc for all currently opened documents from an Export plugin, so I can give users the choice which of the documents to export. Is this possible?
    I expected to have access to all documents via the "next" field of "ReadImageDocumentDesc *documentInfo" in form of a linked list, but that field appears ti be always NULL. Or isn't it for certain types of plugins?
    If it isn't possible, are there other tricks I could use to accomplish my goal? Is a stack renderer plugin an option perhaps?
    Any kind of help is highly appreciated.
    Bernd

    I have the same question. When I write a filter plugin in, I try to access two open pictures to deal with both of them. But I can't find how to utilize the ReadImageDocumentDesc * next to finish it. Is it possible?

  • Stacks - how to access ALL files? (those that don't show)

    I have my Application folder in my dock.
    I used to, under tiger, click on it.
    type 'v'... 'p'.... then apple-O to get my VPN client.
    type 'v'...'i'.. then apple-O to get visual hub.
    Or I could click then scroll around in the folder to find the apps I want, including sub-folders. Now I am limited to the first 100 apps!
    Agghh! How do I turn off stacks on my Apps folder?

    I am hoping and wishing and praying that the next Leopard revision will have the ability to return to the good old - actually efficient - Dock folder behavior. Stack is such a huge step away from efficiency. (And it's not even pretty.) But for now there is a sort of solution....
    On VersionTracker.com I found HierarchicalDock (freeware) and Quay (inexpensive shareware). I have not figured out quite what they're doing, but they're apps. That folder you want to dock - you drag it onto the app's floating window. It does some magic, then you drag that folder from the floating window into the Dock. You get your good old, icon-that-YOU-want on the docked item and it behaves the way you want it to - which is to see all of the contents and be able to access items within folders within that folder.
    I'm also not happy about the reflection. It makes icons smaller or the Dock larger. Items get stuck behind the Dock like in early OSX days. These apps don't address that. (Other apps do.) But at least we can once again actually tell what's in our Dock and USE the Dock again.
    Someone here asked whether we really need to access a bunch of things in our folders. I sure do! My Docked folders are always changing (which is why these 2 apps are still not a great solution for me).
    Apple, please hear your loyal users and do us the favor of bringing back Dock Classic. (It's the one thing not great about Leopard.)

  • How to set all required components false in ADF form based on human task?

    Hi All,
    I'm looking to implement an ADF form based on a human task. There are 2 outputs, Validate and Reject.
    On clicking Validate, my form does as expected, evaluates everything that is mandatory and expects these inputs in order to proceed.
    However, on reject, my form should overlook anything that's marked as mandatory. How do I go about making the "required" aspects of my form false so that no entries are required in order for me to reject the form.
    JDev - 11g.
    Any inputs will be appreciated.
    Thanks,
    Preethi.

    Thank you Timo.
    This doesn't seem to bypass any of the mandatory components . It still prompts for an entry for those fields. do I need to change the partial submit or any other property?

  • All flash components work when published except one....

    I have a website built in Dreamweaver CS4 that uses a flash header, photo gallery and video. Everything works great except for the video on the home page. From what I can tell it works fine in Firefex but not IE8 or IE8 in compatability mode. IE keeps saying I need a newer version of Flash (which of course is not true).
    This is the page I am having problems with www.thefestivaloftrees.com/home.html the video is at the bottom of the page. I'm still a newbie at designing websites so my problem solving skills are limited. Any help you can give would be greatly appreciated! Thank you!
    Here is my Dreamweaver source code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <!-- InstanceBegin template="/Templates/Festival-2009.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Festival of Trees</title>
    <!-- InstanceEndEditable -->
    <link href="twoColLiqLtHdr.css" rel="stylesheet" type="text/css" /><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColLiqLtHdr #sidebar1 { padding-top: 30px; }
    .twoColLiqLtHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <style type="text/css">
    <!--
    body,td,th {
    color: #00325b;
    font-family: Arial, Helvetica, sans-serif;
    body {
    background-color: #b3cdd9;
    a:link {
    color: #00325b;
    a:visited {
    color: #00325b;
    a:hover {
    color: #B71234;
    a:active {
    color: #B71234;
    h1 {
    font-size: 14px;
    color: #B71234;
    h2 {
    font-size: 16px;
    color: #B71234;
    h3 {
    font-size: 18px;
    color: #B71234;
    h4 {
    font-size: 14px;
    color: #00325b;
    h5 {
    font-size: 16px;
    color: #00325b;
    h6 {
    font-size: 100%;
    color: #00325b;
    -->
    </style>
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body class="twoColLiqLtHdr">
    <div id="container">
      <div id="header">
        <h1>
          <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="663" height="117" align="absmiddle" id="Festival of Trees" title="Festival of Trees A Cool Yule">
            <param name="movie" value="Graphics/FOT logo banner2.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="6.0.65.0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <param name="SCALE" value="exactfit" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object data="Graphics/FOT logo banner2.swf" type="application/x-shockwave-flash" width="663" height="117" align="absmiddle">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="6.0.65.0" />
              <param name="expressinstall" value="Scripts/expressInstall.swf" />
              <param name="SCALE" value="exactfit" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object>
        </h1>
      <!-- end #header --></div>
      <div id="sidebar1">
        <h3><a href="Home.html">Home</a></h3>
        <p><a href="Events and Tickets.html">Events & Tickets</a></p>
        <p><a href="Sponsorship.html">Become a Sponsor</a></p>
        <p><a href="http://www.kootenaihealth.org/index.asp?w=pages&r=1&pid=21" target="_blank">Kootenai Health Foundation</a></p>
        <p><a href="Executive Committee.html">Executive Committee</a></p>
        <p><a href="Tree Photos.html">Tree Photo Gallery</a><a href="2008 photo Gallery/2008TreePhotos version 1234/01.html" target="_blank"></a><a href="2008 photo Gallery/2008TreePhotos version 1234/01.html" title="2008 Photo Gallery" target="_blank"></a><a href="Tree Photos.html"></a></p>
        <p><a href="http://www.kootenaihealth.org/index.asp?w=pages&r=273&pid=340" target="_blank">2009 Sponsors</a></p>
      <!-- end #sidebar1 --></div>
      <!-- InstanceBeginEditable name="EditRegion1" -->
      <div id="mainContent">
        <h3>About the Festival of Trees</h3>
        <p>For 20  years the Kootenai Health Foundation has been hosting the Festival of Trees.  Always held the weekend following Thanksgiving, Festival of Trees has become an  annual holiday tradition for the community. </p>
        <p>Businesses and individuals come together to  decorate and donate some 40 lavish Christmas trees and displays which are  enjoyed by attendees and ultimately sold at auction. Each year proceeds  raised at the Festival of Trees help fund needed services at Kootenai Health.</p>
        <p>
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="500" height="500">
      <param name="movie" value="MainScroll.swf" />
      <param name="quality" value="high" />
      <param name="wmode" value="opaque" />
      <param name="swfversion" value="9.0.45.0" />
      <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
      <param name="expressinstall" value="Scripts/expressInstall.swf" />
      <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="MainScroll.swf" width="500" height="500">
        <!--<![endif]-->
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="swfversion" value="9.0.45.0" />
        <param name="expressinstall" value="Scripts/expressInstall.swf" />
        <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
        <div>
          <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
          <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
        </div>
        <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
        </p>
        <hr />
        <h3>Changing Lives</h3>
    <p>In 2009, donations made during the Festival of Trees benefited cancer  services at Kootenai Health. Hundreds of people in northern Idaho are in need of the  kinds of services Kootenai Health can provide. Thank you for supporting the Festival of Trees!</p>
    <p>If you would like to learn more about donating to the Kootenai Health Foundation, call (208) 666-2345.</p>
    <p><strong>See what patients are saying about Kootenai Cancer Center.</strong></p>
    <p>
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="350" height="291" id="FLVPlayer">
        <param name="movie" value="FLVPlayer_Progressive.swf" />
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="scale" value="noscale" />
        <param name="salign" value="lt" />
        <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Halo_Skin_2&amp;streamName=KMC_Jim_XWeb_No Music_SMALL&amp;autoPlay=false&amp;autoRewind=false" />
        <param name="swfversion" value="8,0,0,0" />
        <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
        <param name="expressinstall" value="Scripts/expressInstall.swf" />
        <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="FLVPlayer_Progressive.swf" width="350" height="291">
          <!--<![endif]-->
          <param name="quality" value="high" />
          <param name="wmode" value="opaque" />
          <param name="scale" value="noscale" />
          <param name="salign" value="lt" />
          <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Halo_Skin_2&amp;streamName=KMC_Jim_XWeb_No Music_SMALL&amp;autoPlay=false&amp;autoRewind=false" />
          <param name="swfversion" value="8,0,0,0" />
          <param name="expressinstall" value="Scripts/expressInstall.swf" />
          <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
          <div>
            <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
            <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
          </div>
          <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>
    </p>
    <p> </p>
      </div>
      <script type="text/javascript">
    <!--
    swfobject.registerObject("FlashID");
    swfobject.registerObject("FlashID");
    swfobject.registerObject("FLVPlayer");
    //-->
      </script>
      <!-- InstanceEndEditable -->
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
    <br class="clearfloat" />
      <div id="footer">
        <p><img src="Graphics/Kootenai_HF_1CLR_WH_V.gif" width="233" height="47" alt="KH Foundation" /></p>
      <!-- end #footer --></div>
      <!-- end #container -->
    </div>
    <script type="text/javascript">
    <!--
    swfobject.registerObject("Festival of Trees");
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>

    Don't have an answer to your question but the link you provided in broken because file names are case sensitive on your server.
    I suspect that you've typed the URL in to your post rather than paste it from the browser.
    Should be http://www.thefestivaloftrees.com/Home.html with a capital "H".

  • How to access to Business Components deployed to Oracle 8i

    Hi,
    I succeded in deploying an Application Module to Oracle 8i and publishing it through JNDI.
    The test wizard is also ok.
    Now I obviously want to access the module from a client.
    The lookup phase is successful, but what I get back is a oracle.jbo.common.remote.corba.RemoteApplicationModuleHome, and I suppose I have to invoke its create() method to get some actual Module object reference.
    The proble is that the create() method wants a strange SessionInfo parameter, that seems undocumented.
    Does anyone know how to solve the problem ?
    Or where is the necessary documentation ?
    Thanks in advance
    Giuseppe Tanzi

    Hello!
    Sorry for the delayed response...
    Here is an EJB client for a BC4J-EJB in 8i:
    package tester;
    import java.lang.*;
    import oracle.jbo.*;
    import oracle.jbo.JboContext;
    import java.util.Hashtable;
    import javax.naming.*;
    /*This project properties should include:
    JBO EJB Runtime, JBO EJB Client and User created Library .
    public class BC4J_EJB_test extends Object {
    static Hashtable env = new Hashtable(10);
    public static void main(String[] args) {
    // set up variables for environment settings
    // Modify User, Password, HostName, SID and DeployedMod
    String User = new String("BUD");
    String Password = new String("SPUD");
    String DeployedMod = new String("BC4J.BC4JModule");
    String HostName = new String("jtora815.us.oracle.com");
    String ConSid = new String("ORCL");
    //IIOP Port MUST BE A STRING!!!!!!!!!!
    String ConPort = new String("2481");
    String ApplicationPath = new String("test/ejb");
    String Conn = new String("jdbc racle:kprb:");
    try {
    // set variables in hashtable to be used as the environment
    env.put(Context.INITIAL_CONTEXT_FACTORY, JboContext.JBO_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, User);
    env.put(Context.SECURITY_CREDENTIALS, Password);
    // only difference other than libraries from 8i Corba
    env.put(JboContext.DEPLOY_PLATFORM, JboContext.PLATFORM_EJB);
    env.put(JboContext.APPLICATION_PATH, ApplicationPath);
    env.put(JboContext.HOST_NAME, HostName);
    env.put(JboContext.CONNECTION_PORT, ConPort);
    env.put(JboContext.ORACLE_SID, ConSid);
    // setup application module variable
    ApplicationModule appMod = null;
    javax.naming.Context ic = new InitialContext(env);
    ApplicationModuleHome home = (ApplicationModuleHome)ic.lookup(DeployedMod);
    appMod = home.create();
    //connect application module
    appMod.getTransaction().connect(Conn);
    /* At this point you have the application module connected, now do what you want
    here. This example just iterates through the dept table and prints each row */
    ViewObject deptVo = appMod.findViewObject("DeptView");
    Row r = deptVo.first();
    do{
    System.out.println(r.getAttribute("Deptno")+" "+
    r.getAttribute("Dname") +" "+
    r.getAttribute("Loc"));
    r = deptVo.next();
    }while( deptVo.getCurrentRowSlot()!= deptVo.SLOT_BEYOND_LAST );
    catch(Exception Oops) {
    Oops.printStackTrace();
    System.out.println(Oops.getMessage());
    Hope this helps.
    Regards,
    Arun

  • How to bind all the components in a form to have the same property

    i have a form with components and containers arriving from many objects to it fill up, and although there is not one line of code to change the font any where the font is sometimes bold and sometimes plain in different components, same components every time though.
    so my question is:
    what is the shortest way to bind the font property of all the component and sub-components added to the form to be the same one?

    [UIManager Defaults|http://www.camick.com/java/blog.html?name=uimanager-defaults]

Maybe you are looking for

  • New operation for reference operation set

    Hi, I want to create a new operation for an existing reference operation set. Is a function for that use available? It would be optimal if there is a function that copy one operation and insert it the same reference operation set as an new operation.

  • Daughter can't download on her "computer"

    Using Mac OS 10.3.9 on an iMac, all four family members are set up with admin privileges. But one daughter can't download a pdf or file. She keeps getting the error message "Cannot create file". All of the other users can download. It's only on user

  • Query efficiency

    I have a table I'd like to report on based on ten or so LOV values stored as check boxes. In the past I've used substr to join my filtered key stored in the LOV, separated with colons with the key sandwiched between colons on the table I am querying.

  • Library transfer

    I have been using iphoto for a while now and have downloaded the trial aperture version. I imported my entire iphoto library into the aperture library, and now I'd like to delete my iphoto library to free up space. However I've noticed that when I go

  • Grant privilage to access diff database objects

    How can we grant access to user1 from db1 to access user2 schema objects in db2 database ? Well, the user1 needs to perfrom insert, update and delete on db2's user2 schema. hare krishna Alok