Tab navigator and swf loader issue

I have written two flex applications. Each of the
applications contains a tab navigator control. The direct children
of this tab navigator are canvases, sized to max.
i.e.
<mx:Canvas label="WhateverLabel" width="100%"
height="100%">
<!--whatever additional children here-->
</mx:Canvas>
Everything works fine, the navigator, all its children and
grandchildren Application does exaclty as it should ... untill I
load it into another application using swf loader.
Our main application is a menu driven app that loads
individual swf files based on user selection. When either one of
these programs (using the tab navigator described above) is loaded,
I get a White Bar across the top of the screen, sized as the Tab
navigator width.
the white bar goes away as soon as the user interacts with
any control, but it still is there on application load. Here is a
picture of what I am speaking about.
http://members.cox.net/dragon.magik/whitebar.jpg
You can see the menu atop the screen as the base application.
You can then see the panel right beneath it, that is the main panel
of the application i am having problems with. The white bar, as you
see, is as wide as my tab navigator. The TN labels are positioned
correctly, but I don't know why I am getting the white bar. I am
having the exact same problem with tab navigators in two different
applications I load into this one control panel. Any help would be
greatly appreciated. Thanks in advance.

There is an unsolved bug in adobe.
You have to solve it manually overriding the function:
package
     import mx.containers.TabNavigator;
     public class TabNavigatorFixed extends TabNavigator
         public function TabNavigatorFixed()
             super();
         override protected function  commitSelectedIndex(newIndex:int):void
             super.commitSelectedIndex(newIndex);
             if(tabBar.numChildren > 0){
                 // Select the corresponding Tab in the Tab Bar (this  fixes a bug in Flex)
                 tabBar.selectedIndex = newIndex;

Similar Messages

  • Tab navigation and clusters

    Is there a way to make tab-navigation skip highlighting the frame of a cluster and instead jump straight to the first control in the cluster?
    I do not understand why tab navigation highlights the cluster frame, there is nothing you can do with the cluster with the keyboard anyway; it's the controls within it you want to navigate to...the fact that the controls are in a cluster should be transparent to the user. Sure, I can skip the cluster and use individual control on the front panel, however that introduces a need for bundling a large number of values and makes the diagram bigger and less readable...
    Any tips and/or views on this?
    MTO

    Reading the higlight property of the cluster and acting on that by highlighting the first control in the cluster instead...is perhaps a partial solution, but not a very elegant one...
    The cluster frame would reveal itself in a flash (I did not mention that the cluster frame has been made transparent, but the frame is revealed as a black line when tabbing highlights the cluster. The "Skip this control" option does not help either as you still need to access the controls within it using the tab key...function keys are off course also possible, but that does not fix the ugly tab behaviour)
    MTO

  • ConversionManager - Override and Class Loader Issues

    Hi
    We are using Toplink 10.1.3 deployed withiin 10gAS 10.1.3.
    We have overridden the ConversionManger as documented in tips.
    1. MyConversionManager extends ConversionManager.
    2. We have overriden convertObject
    3. We have a pre-login SessionEventAdapter that sets the ConversionManager.
    We have had issues of classloading within the application previously, particularly where we have two versions of our application deployed on the same App Server instance (potentially with differing versions of MyConversionManager).
    For this reason we only set the ConversionManager within the preLogin event on the Session as follows:
    *//Just set the conversion manager for the session.*
    event.getSession().getLogin().getPlatform().setConversionManager(getConversionManager());
    We no longer set the default conversion manager, as my understanding was that this would set it at the root level within the OC4J instance (meaning that each deployment would override the previous).
    Additionally, we have had to sepcify the class loader to use, within the ovverriden convertObject method, as otherwise start up of Toplink falied, as it was unable to solve references to application classes specified within class indicator mappings. We do this as follows:
    *@Override*
    *public Object convertObject(final Object source, final Class javaClass) {*
    super.setShouldUseClassLoaderFromCurrentThread(true);
    The only know issue with this, is that if I try and use OEM to veiw the Toplink Cache, I just get and AnnotatedClassNotFoundException as it is attempting to use the system class loader (that does not contain our Application classes).
    Two questions therefore:
    1. Is the deployment we have now stable, i.e. overriding the class loader within the overriden Conversion Manager, and only loading this against the session??
    2. How can I get mutiple versions of the application to still work, together with being able to view the Toplink Cache from within OE:M.
    Any help or insight, would be greatly appreciated.
    Marc

    Looks fine, you may also wish to investigate using Converters in your mappings instead of customizing the ConversionManager.
    For the OEM issue, try setting the class loader to be your application class loader instead of the thread one, i.e. MyAppClass.getLoader().
    James : http://www.eclipselink.org

  • Dynamic swf loader issues...

    Hey guys,
    Im working on a flash project that dynamically loads other
    flash videos into a 'holder' movie clip. This holder should never
    be larger than 500x330 however, some of the files it loads may be
    larger than that. At any time, there maybe 1-N files because Im
    using XML to store the filenames (and display names) so when I
    click on a button (1,2,3,4 and 5 and "pagination" is used) I clear
    the previous movieclip (or so I think), load the current file into
    the holder_mc and then calculate offsets for centering the
    holder_mc (the holder_mc is actually a child of 'main_mc') I also
    try and scale the holder_mc down to fit the required dimensions of
    500x330....
    This is where it goes wacky. First off all, I have to click
    the button 3 times (reload the same swf 3 time) before it will
    scale and position correctly. Im 100% positive that the previous
    movie is being cleared and if it isn't then theres a problem with
    flash it self because i have followed the documentation and about
    10 articles just to ensure that I was doing it right)
    Anyway, the problem is... sometimes they are PERFECT and
    other times they are to large, to small, etc. Im going nuts trying
    to solve this. I was actually having the same issue with another
    project where once I tried to "restart" the game (ie. resetting
    everything back to original values) the collision detection was
    totally messed up... it almost seemed as though the previous data
    was causing collisions even when the actual movie clip (and I put a
    box for the bounds for visuals) was tripping a collision WAY TO
    EARLY).
    Anyway, I really need help with the previous issue. Please
    help!!
    -Jason

    I played around with the moviecliploader the other day but I
    don't really know what the benefits are over the standard
    loadMovie. Heres the basic function (was much more complex than it
    is now)
    function LoadMc()
    var file = mcList[curPage*5+index];
    main_mc.holder_mc.clear();
    loadMovie(file, main_mc.holder_mc);
    //this gets called in onEnterFrame so only allow this
    function to be ran once
    //per 'click'
    loaded = true;
    if(main_mc.holder_mc._width > 500 or
    main_mc.holder_mc._height > 330){
    main_mc.holder_mc._width = 500;
    main_mc.holder_mc._height = 330;
    var xcenter = ((500 - main_mc.holder_mc._width)*0.5);
    var ycenter = ((330 - main_mc.holder_mc._height)*0.5);
    main_mc.holder_mc._x = xcenter;
    main_mc.holder_mc._y = ycenter;
    }

  • SWF loading issue

    Dear All,
    Stuck with a peculiar problem..
    We have developed a course and content file size in that
    course is 1 MB.
    New files get loaded on click of navigation buttons.
    Network constraints are such that after we click any
    navigation button, maxium size of the packet can be 100 K.
    So we need to load the 1MB file in packaets of 100 K.
    Can we control this using action scripting?
    Please let me know if someone can help us..please let me know
    if any additional information is reqd.
    Thanks

    Thanks for your inputs ..
    the problem with 1MB files is that, once we click on
    navigation buttons, the 'inbound byte rate' on the network comes
    out to be that of fils size.. (i.e. 1 MB)
    Netwrok constraints are such that this inbound byte rate
    should be as small as possible..
    so we were wondering if it is possible to control this
    'inbound byte rate' somehow..

  • Spotlight keyboard navigation and window size issues

    I have two issues with Spotlight in Leopard and can't seem to find a solution.
    1. Keyboard navigation - If I open the spotlight list with command-space, type in my search and get my list, I can navigate up and down the list and open any item with the enter key. But there doesn't seem to be a way to use Quick View from the list. If I open a Spotlight Window with option-command-space (which I prefer) I can type in my search and get a list. But I can't get to the list to navigate it with the arrows without using the mouse to click on one of the items first. Once I have one item selected it is great to scroll through them with the arrow keys and then use Quick View by using the space bar to open and close the view. Is there any way to move the cursor from the search enter box into the results list in the Spotlight Window view using just the keyboard? Or is there a way to use the keyboard to invoke Quick View on the Spotlight list view?
    2. When opening the Spotlight Windows View with the option-command-space command, the window opens up to a relatively small size. I would like it to open to a much larger window, but I can't seem to find a way to do it. I resize the window and change the column size and positions to the way that I like them, but once I close out of the window it doesn't save that configuration. I have to start over every time. Is there a solution?

    I just realized this is in the wrong forum. I've posted it in the Leopard forum.

  • Database and page Load Issue

    Well recently I needed to change the database tables and had to remove one table within the databse. Using MySQL 5
    After I cleaned up all traces of information related to the table which was removed I decided to deploy and try out the application. When I try to enter one of the pages I get this error:
    java.lang.RuntimeException: java.sql.SQLException: Error in allocating a connection. Cause: The connection is not valid as querying the table roles failed: Table 'database.table' doesn't exist
    And here is the stack trace that came with the error:
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:384)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:297)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:247)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
    sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
    java.security.AccessController.doPrivileged(AccessController.java:-2)
    javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
    org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
    org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    java.security.AccessController.doPrivileged(AccessController.java:-2)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:723)
    org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:482)
    org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:417)
    org.apache.catalina.core.ApplicationDispatcher.access$000(ApplicationDispatcher.java:80)
    org.apache.catalina.core.ApplicationDispatcher$PrivilegedForward.run(ApplicationDispatcher.java:95)
    java.security.AccessController.doPrivileged(AccessController.java:-2)
    org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:313)
    com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:311)
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
    java.security.AccessController.doPrivileged(AccessController.java:-2)
    javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
    org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
    org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    java.security.AccessController.doPrivileged(AccessController.java:-2)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:210)
    org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    java.security.AccessController.doPrivileged(AccessController.java:-2)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
    org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:189)
    com.sun.enterprise.web.connector.grizzly.ProcessorTask.doProcess(ProcessorTask.java:604)
    com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:475)
    com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:371)
    com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:264)
    com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:281)
    com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:83)
    The problem is I can't find any traces of the table i removed left in the project, I did a find all in the project of a keyword which will pick up on the table and removed it.
    Another interesting fact is that when I remove the data providers in the page which have no connection to the table I removed the program will load fine. I also checked all my queries and they were all displaying correctly.
    Any ideas?

    I found out the reason for the error, the validation table I had set was used by the datasource, after I removed the table Java Studio Creator left traces of that and still tried to use the table for validation.
    If anyone else has this problem, the way I fixed this was to open the Servers Window, expand the Deployment Server Node, expand the Resources folder and remove anything there even remotely related to your database, remove your database and re-add it.
    Also, could this be considered a bug? I believe I have a way to reproduce it:
    1) Create a database
    2) Add a datasource set the Validation table to one of the tables
    3) Remove that table from the database
    That should cause the error to show up. When the datasource is removed shouldn't JSC remove any traces of the connection?
    Lastly does this mean that JSC is checking the validation table everytime on deployment?
    A response regarding this would be appreciated

  • Anyone working with Ascential and has loading issues

    Hi,
    Is anyone out there working with Ascential? We are loading data using Ascential to BW ODS. We would get a log that saids "sending 0 rows in package..." from Ascential, but when it gets loaded to BW, it said there is 1 record and the record row has blank field values when I reviewed the PSA.
    Why is Ascential doing this? Is there any settings that I would have to set on the BW side? Would I have to add any code to the Update Rule routine to set the RETURNCODE? Please advise.
    Thanks,
    RT

    Hi Rob,
    I had faced some problems loading data using Ascential Data stage. Below mentioned are some of them:
    Make sure that all the parameters in the transfer structure are mapped correctly in Ascential, according to the specified business rule.
    (ii) Make sure that the number of fields in the transfer structure in BW are same as the mapped fields in Ascential.
    (iii) Make sure that the size of the all the fields in BW are same  as the mapped fields in Ascential.
    My assumption for your problem could have been with the mapping of the fields.
    Hope the answer was helpful!
    Please let us know if you were able to resolve the problem.
    Regards,
    S.P
    *****Assign points for helpful answers****

  • IS-U Mass Simulation and BW Loads Issue

    Hello
    We are on BI 7.0 and our source system is IS-U (ECC 6.0).
    I'm running transaction eams11 in IS-U system for one installation and I get the following error;
    DataSource 0UC_SALES_SIMU_02 is not yet initialized
    I can't find any explanation for this error message, can you help me?
    Noga

    Hi,
    The datasource you want to use is obsolete.
    refer this link- http://help.sap.com/saphelp_nw70/helpdata/en/72/452f76545c0d4fbc10ccc644fc5bdd/frameset.htm.
    inplace of this datasource use - 0UC_SALES_SIMU_01 to get unbilled revenue reporting in BW.

  • SWF LOAD UNLOADING SWFLOADER ISSUES

    Hello Everyone,
    I wonder if anyone ran into this issue. I have a view stack
    with 3 visual screens. One of the screen has SWFLoader placed in
    with "id = contentLoader";
    I have two buttons on this screen on the top: "LOAD MOVIE 1"
    and "LOAD MOVIE 2".
    So pretty much, user can load the movie into the SWF LOADER
    via this two button navigation. Well, I am able to load the first
    movie with "AUTOLOAD". But when I click for the "LOAD MOVIE 2", the
    second movie does load in but then the application crashes and
    closes itself.
    My Questions:
    How can I unload the currently loaded SWF Movie before
    Loading the next one. I have searched for days for this on google
    and nothing has come through.
    ContentLoader.unloadandStop() doesn't work and application
    still crashes.
    ContentLoader.source = ""; doesn't work, app still crashes
    ContentLoader.source = null; doesn't work, app still crashes
    Any help would highly be appreciated on this, please.

    Hello Everyone,
    I wonder if anyone ran into this issue. I have a view stack
    with 3 visual screens. One of the screen has SWFLoader placed in
    with "id = contentLoader";
    I have two buttons on this screen on the top: "LOAD MOVIE 1"
    and "LOAD MOVIE 2".
    So pretty much, user can load the movie into the SWF LOADER
    via this two button navigation. Well, I am able to load the first
    movie with "AUTOLOAD". But when I click for the "LOAD MOVIE 2", the
    second movie does load in but then the application crashes and
    closes itself.
    My Questions:
    How can I unload the currently loaded SWF Movie before
    Loading the next one. I have searched for days for this on google
    and nothing has come through.
    ContentLoader.unloadandStop() doesn't work and application
    still crashes.
    ContentLoader.source = ""; doesn't work, app still crashes
    ContentLoader.source = null; doesn't work, app still crashes
    Any help would highly be appreciated on this, please.

  • SWFLoader and tab navigation

    Hi,
    In two applications that I'm writing, the content inside a SWFLoader does not participate in the tab navigation. The textfields in the loaded SWF are focusable and I can even detect Tab keystrokes in them, but there is no tab navigation.
    The setup is very simple - an application (in one case mx, another case spark) which contains a SWFLoader.
    I've seen one thread in a dev forum where the solution was to implement a focusmanager. I'm hoping for something simpler...
    Cheers

    All tabbable entities in a Flex app must implement IFocusManagerComponent or
    else they have to override the FocusManager.  If the sub-app is not written
    in Flex you'll probably have to do the latter.

  • Loading and Unloading of swf files in SWF Loader

    Hi all,
    I have a doubt reg. SWF Loader.
    I have created two mxml files A & B.
    A. local.mxml
    B. SwfSample.mxml
    i have two labels and a button in A file and i have set values to those labels and have a method to handle the click event of the button. In B file i have loaded this A file and accessed the labels and methods using SystemManager Component and changed the values of the A file's label and accessed data from A file to B file.
    Here comes the problem,
    I have two buttons named LoadAgain and Unload
    When i click the Unload button, the SWF Loader unloads its content by the method i handled for  the Unload button, after that i have clicked on the LoadAgain button to load the same content of A's mxml to the SWF Loader, it loads succesfully,but i was not able to access its Label or Method from the B mxml. Please help me to solve the issue.
    local.mxml
    <?xml version="1.0" encoding="utf-8"?><mx:Application 
    xmlns:mx=http://www.adobe.com/2006/mxml layout="absolute">
    <mx:Script>
        <![CDATA[
    Bindable]
        public var varOne:String = "This is a public variable";
        public function setVarOne(newText:String):void
              varOne = newText;
        ]]>
    </mx:Script>
    <mx:Label id="lblOne" text="I am here" x="28" y="88"/>
    <mx:Label text="{varOne}" x="166" y="88"/>
    <mx:Button label="Nested Button" click="setVarOne('Nested Button Pressed');" x="28" y="114"/>
    SwfSample.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application 
    xmlns:mx=http://www.adobe.com/2006/mxml layout="absolute">
        <mx:Script>
        <![CDATA[
              import mx.controls.Alert;  
              import mx.managers.SystemManager;  
              import mx.controls.Label; 
    Bindable]
              public var loadedSM:SystemManager;
              private function initNestedAppProps():void
                  loadedSM = SystemManager(myLoader.content);
              public function updateLabel():void
                  lbl.text = loadedSM.application[
    "lblOne"].text;
              public function updateNestedLabels():void
                  loadedSM.application[
    "lblOne"].text = "I was just updated" ;
                  loadedSM.application[
    "varOne"] = "I was just updated";
              public function updateNestedVarOne():void
                   local(loadedSM.application).setVarOne(
    "Updated varOne");
              public function unload():void
                   myLoader.content.loaderInfo.loader.unload();
              public function loadAgain():void
                   myLoader.load(
    "../bin-debug/local.swf");
            ]]>
         </mx:Script>
    <mx:Label id="lbl" x="72" y="47"/>
    <mx:SWFLoader id="myLoader" width="438" source="../bin-debug/local.swf" creationComplete="initNestedAppProps();" y="73" height="238" x="72" alpha="1.0"/>
    <mx:Button label="Update Label Control in Outer Application" click="updateLabel();" x="72" y="319"/>
    <mx:Button label="Update Nested Controls" click="updateNestedLabels();" x="72" y="349"/>
    <mx:Button label="Update Nested varOne" click="updateNestedVarOne();" x="72" y="379"/>
    <mx:Button label="Unload" click="unload();" x="72" y="409"/>
    <mx:Button label="Load Again" click="loadAgain();" x="72" y="439"/>
    </mx:Application>
    Thanks & regards,
    Sathish.K

    creationComplete only fires once when the SWFLoader is created.  Therefore you never reset your variables to point to the new sub-app.  On a slow network, creationComplete may fire before the sub-app loads.  It is best to use the COMPLETE event.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Spry Accordion - Tabs open and then close after page loads

    I am using a Spry Accordion menu driven from a database.
    The menu opens up during the page load and then closes.
    I'm using SpryAccordion.js 1.6.1
    And to open a preset tab, I'm using:
    <script type="text/javascript">
    <!--
    var Accordion1 = new Spry.Widget.Accordion("Accordion1",{useFixedPanelHeights:false, enableAnimation: false, defaultPanel: 0 });
    //-->
      </script>
    But, all of the tabs open and then close on page load.
    My page:   http://www.texashotjobs.us/00C01.aspx
    Any fix for this??
    Thanks, Ron

    Well to both thanks.  Actually I wasn't disappointed as I had a two part question...
    I tested the 1.6 JS and remembered that I had to modify the 1.4 so that tabs actually would link.  So I reverted back to 1.4.
    So, going to 1.6 fixed the open panel on load but "unfixed" the panel tab from linking.....
    So changing this in the 1.6 js fixed the link issue as well:
    Spry.Widget.Accordion.prototype.onPanelTabClick = function(e, panel)
        if (panel != this.currentPanel)
            this.openPanel(panel);
        else
            this.closePanel();
        if (this.enableKeyboardNavigation)
            this.focus();
    //    if (e.preventDefault) e.preventDefault();
    //    else e.returnValue = false;
    //    if (e.stopPropagation) e.stopPropagation();
    //    else e.cancelBubble = true;
    I t appears everything is working........
    Thanks, Ron Gaddis
    Visual Reality Productions

  • Firefox does not show url in navigation toolbar while loading webpage (in new tab)

    Firefox 3.6 when opening a link in new tab the url does not show in navigation toolbar while loading the web page. All ypu see is "Type a Web Adress" until the page load.
    Before with my older version the URL was visible in navigation toolbar even before page started loading. How can I get this back?

    A couple of possible causes. First check for an incompatible add-on, for details of how to do that see the [[troubleshooting extensions and themes]] article.
    Another possible cause is a problem with the file that stores bookmarks. One of the symptoms is the URL not being updated in the Location Bar as you browse. For details on this see [http://kb.mozillazine.org/Locked_or_damaged_places.sqlite locked or damaged places.sqlite].

  • SWF Loader and Power Point Slide

    Hi Xcelsius Experts
    I am using a tab set container and in each container i am trying to open another Xcelsius Dashboard - as soon as i provide the complete path of .xlf file the swf loader instantly says 100% but it doesnt show the xcelsius file and it does the same after hitting preview button.
    so how can I show another Xcelsius file within Xcelsius and I would also like to see that working in powerpoint after export.
    Many thanks in advance for your help
    Kind Regards,
    Waqas

    Burn it to CD and re-import it.
    This is not for a public presentation, correct? It's for your own personal (not job related) use?

Maybe you are looking for

  • JAX-RPC And Non-Java Web Service

    Hi, This is a total shot in the dark. I'm attempting to consume an RPC web service developed in Delphi. I've created a JAX-RPC client in NetBeans from the published WSDL, attached below. I've created calls to several of the procedures available. What

  • Product number CQ183A can not access setting in EWS keeps asking for admin login and password.

    HP Photosmart 5510d B11H CQ183A Windows 7, Vista, and Linux I installed the printer everything works until I try to access certain settings in the Embedded Web Server.  I pops up a box asking for admin login.  Initially, the status page claimed the A

  • Urgent - INSTR() Functions in OBIEE?

    Hi All, I just got some very good help from the DB experts on these forums about solving a problem with a table join that I had. But now I have this SQL query and I'm trying to figure out how to implement this in OBIEE: select * from TABLE1,TABLE2 wh

  • ActionListener

    Hi all I have an assignment to create a program to take a loan amount and years paying on the loan. When the submit button is pressed the program should output the rate of the loan starting with 5 and ending at 8.5, compute the monthly payments made,

  • BI EE Presentation Services Connections error

    After I try to create a BISoapConnection in EM,and when saving this connection,i got errors says "javax.management.RuntimeMBeanException: javax.management.RuntimeMBeanException: These mbeans encountered exceptions and may not have been saved biserver