Flash Menus cause my session variables to drop or not show temporarily until I refresh the page

I have a login routine that once a user logs into teh site it
creates a session variable. I have used this same script many times
without any problem but I now have Flash menus and it seems that
after logining in (session created) I will click on a menu item and
the debugging shows that the session variable isn't there. If I hit
the REFRESH button on the browser it appears.
Has anyone gotten this and know a way to get around it. I
have 5 pages I need for a user to navigate to after loging in but
the initial load doesn't seem to have the session set even though
it was set when they logged in but a REFRESH of each page
individually now has the variable.
Any Ideas...Is this something with Flash menus or
something?

Problem is solved by removing these 2 lines from iframe.html
if(navigator.appName=="Microsoft Internet Explorer")
document.location.replace("");

Similar Messages

  • On Sympatico homepage, my local weather and news does not come up unless I refresh the page. But when I return to the homepage during the same session, local news/weather is gone again. Is this correctable?

    When I first open the browser and it goes my homepage, Sympatico.ca, there are 2 areas of the homepage you can personalize. On the left hand side "News" Column, the bottom box "Local News" allows you to select a location (Toronto, Ontario Canada for me) to display news from that area. On the far right hand column, below the advertising bar, is "Weather" where you select your city (Brantford in my case) and it will display the 4 day forecast in C or F degrees. Once you close the homepage the settings are saved. The problem is that when I leave the homepage to any other website, if I return to the homepage the weather and local news is back to the default setting of having to select the city again. I did find if I just refreshed the page, the personalized settings appear. I have Firefox 4 and it seemed to correct the problem when I installed 4 as the same problem had been occurring with my previous version of Firefox. But now it's back to having to refresh the page to get the saved location for local weather and news. My wife uses IE8 on the same PC and has not had this problem on her Sympatico homepage.

    aha!
    Wed Feb 14 12:29:16 2007
    PUSH:
    Received control message:
    'PUSH_REPLY,
    route 192.168.100.3 255.255.255.255,
    route 192.168.1.0 255.255.255.0,
    route 192.168.3.0 255.255.255.0,
    route 172.16.0.0 255.255.0.0,
    route 10.123.123.0 255.255.255.0,
    redirect-gateway,
    dhcp-option DNS 172.16.70.12,
    dhcp-option WINS 172.16.70.2,
    dhcp-option DOMAIN timberline.int,
    route-gateway 172.16.70.254,
    ping 10,ping-restart 120,
    ifconfig 172.16.70.216 255.255.255.0'
    The ifconfig line the server is pushing is not right. That is meant for a point to point connection. That is why the local client is puking on it...it is not correct. At least for a tun type device. If it was a tap, then it would be fine.
    http://openvpn.net/man.html
    (look for "--ifconfig l rn" )
    so.... change the line to dev tap, and then do this stuff..
    http://wiki.archlinux.org/index.php/OpenVPN_Bridge

  • How can we get a value in a drop down box without refreshing the page

    In my application i am having 14 drop down boxes. On selcting a particular value in a drop down box i am doing its corresponding functionality. I would like to get these values without refreshing the page each and every time i select a text box, Is it possible to get these values without refreshing the page each and every time.
    Raghu

    There is a new hype going on called AJAX. It is either that, or dumping a lot of information in javascript arrays and reading the information from there when you make selections. I would choose AJAX.

  • MY LAYER STYLES AND PHOTO EFFECTS ARE NOT SHOWING UP WHE I CLICK THE BOX, NO DROP SHADOW, ETC

    MY LAYER STYLES AND PHOTO EFFECTS ARE NOT SHOWING UP WHE I CLICK THE BOX, NO DROP SHADOW, ETC,
    I ALSO GET AN ERROR WHEN I OPEN THE EDITOR ONTITLECREATEWITHPARONS COULD NOT BE LOCATED IN THE DYNAMIC LINK ONCORE2DLL

    Seems like the database has been accidently deleted. Browse here on how to get it back http://forums.adobe.com/thread/759100

  • How to make session invalid when user refresh the page?

    How to make session invalid when user refresh the page?

    I have a <form> in a JSP file that has another JSP file as an action.
    I have main.jsp that has <form> with action.jsp file as an action.
    Now when I submit the <form>, request forwarded to action.jsp and it will take the action. But this file is taking so long, hence user refresh the page again and again, hence duplicate request processing is occuring.
    I want to prevent this.

  • How to store session variables in drop down menu (and radiobutton/checkbox)

    How am I going to store session variables in the drop down menu, radio button, checkbox.
    In text area, I do like below:
    <input type="text" name="membershipno" size="5" maxlength="50" value="<%=((session.getValue("Smembershipno")!=null)?session.getValue("Smembershipno"):"") %>">
    Any idea?

    Hi jeffkyt79, I could have answered this on Expert's Exchange. But I suppose it would be hard as the site is down right now :-(
    Here is sample code for the form:
    <form action="" name="form1">
    <input type="text" name="field1" value="<%
    if (session.getAttribute("field1")!=null) {
    out.println(session.getAttribute("field1"));
    } %>"><br>
    <input type="text" name="field2" value="<%
    if (session.getAttribute("field2")!=null) {
    out.println(session.getAttribute("field2"));
    } %>"><br>
    <input type="text" name="field3" value="<%
    if (session.getAttribute("field3")!=null) {
    out.println(session.getAttribute("field3"));
    } %>"><br>
    <input type="checkbox" name="check1" value="tick"<% if (session.getAttribute("check1")!=null) out.println(" checked"); %>><br>
    <% String selRadio=(session.getAttribute("r1")!=null)?(String)session.getAttribute("r1"):""; %>
    <input type="radio" name="r1" value="yesdot"<% if (selRadio.equals("yesdot")) {out.println(" checked");} %>>
    <input type="radio" name="r1" value="nodot"<% if (selRadio.equals("nodot")) {out.println(" checked");} %>><br>
    <select name="sel">
    <% String selOption=(session.getAttribute("sel")!=null)?(String)session.getAttribute("sel"):""; %>
    <option value="option1"<% if (selOption.equals("option1")) {out.println(" selected");} %>>OPTION 1
    <option value="option2"<% if (selOption.equals("option2")) {out.println(" selected");} %>>OPTION 2
         <option value="option3"<% if (selOption.equals("option3")) {out.println(" selected");} %>>OPTION 3
    </select>
    </form>
    And here's the revised javascript function to put in form1.jsp:
    function newWin() {
    f=document.form1.elements;
    str="?";
    mypage="test2.jsp"; // I've hardcoded the url for testing but you can fix this
    for (i=0;i<f.length;i++) {
    if (f.type=="text") {
    if (f[i].value!="") {
    str=str+f[i].name+"="+f[i].value+"&";
              continue;
         if (f[i].type=="checkbox"||f[i].type=="radio") {
         if (f[i].checked) {
         str=str+f[i].name+"="+f[i].value+"&";
         if (f[i].type=="select-one") {
         str=str+f[i].name+"="+f[i].options[f[i].selectedIndex].value+"&";
    str=str.substr(0,str.length-1);
    // now open the popup
    mypage+=str;
    win=window.open(mypage, 'myname'); // I've left out the winprops but you can fix this
    If you can ask any more questions, could you do it on EE (if possible!!). I know this works because I've tested it.

  • When i try to open Yahoo mail, a green box appears with a flash message that my session has expired and to sign in.  when i do, the same message appears.

    when i try to open my Yahoo mail, a small green box flashes with a message saying my session has expired and to sign in.  when i do, the same thing happens and i am unable to get my mail.

    Welcome to Apple Support Communities. We're users here and don't speak for "Apple Inc."
    If you haven't already tried again and been able to successfully connnect, try again. If necessary, Quit Mail, and re-open it.
    Some errors aren't caused by anything we're doing wrong, or problems with our equipment.
    Major web service providers like Yahoo! experience 'downtime' now and then, sometimes planned, sometimes unplanned.
    During the time you posted your question (about 18 hours before I post this message with the chart) Yahoo was 'down' as indicated by end-user reports, and illustrated by the colorful bands in the chart below.
    www.downrightnow.com is just one of several places where the downtime of popular internet destinations is tracked.

  • Having Adobe Flash Enabled caused Firefox to Hang, and then to "Not Respond".

    I Have the Following:
    Firefox 19.0
    Adobe Flash 11.6.602.171
    Windows 7 Home Premium 64 Bit SP1
    After I first install a new version of Adobe Flash, everything works perfectly.
    If I shut down my computer & start it up again maybe 10 minutes later, I will START having a problem.
    I Click on my Firefox Icon.
    Then I click on one of my bookmarks, like for Tucson Weather ( at www.weather.com ).
    While Tucson Weather is "transferring data' or "waiting" or "connecting" the small blue indicator that spins to indicate that the computer is working to get the requested page loaded freezes & stops spinning.
    Now, If I click any where on the page including the scroll bar, the page becomes dim & a very light color, white the cursor resembles an hour glass. This only lasts a minute or so.
    If I click on the "X" to close the window, either nothing happens, or I get a message that Firefox is not responding, & do I want Windows to close the page. I have Windows close page.
    Next I return to Firefox, disable Adobe Flash, & Firefox now works perfectly - Only Videos at You Tube are mostly not possible. I have had this problem since at least last September.

    hello, maybe it's an issue with the protected mode in the flash plugin - you could try if [https://support.mozilla.org/en-US/kb/flash-113-crashes#w_solution-2-downgrade-to-flash-10-3 downgrading to flash 10.3] (which is still supported) or [http://forums.adobe.com/thread/1018071#TemporaryWorkaround disabling protected mode] makes a difference.

  • Drop down selection is not refreshing the page data correctly

    I have a drop down menu for a CREATE DATE. The record is based on a Identification ID. This identification ID can be in our system for multiple CREATE DATES. The CREATE DATE drop down is populated by checking how many different CREATE DATES there are for a particular identification ID.
    The last identification ID looks great. It populates all the fields. However if you select an older CREATE DATE, the page does not get populated with that CREATE DATES data. The whole page even looks different. It looks like an older version of the page before I added all the new fields.
    What is causing the older CREATE DATES not to look like the current create date.
    Please let me know if you need any additional information. Thank you!!
    Pattibz

    Thank you for your reply. Here are some details. Please let me know if I am not giving the information you need.
    One page item called CREATE_DATE displayed as a Select LIST with submit. The source type is a database column called ID_IDENT. The ID_IDENT is just a
    The List of Values is: Named LOV is the Select Named LOV. The list of values definition is a query against a table in our database:
    select CRE_DT, ID_IDENT from IDENT_TABLE where UNIQ_ID = :P3_UNIQ_ID
    ORDER BY CRE_DT DESC
    This is the date on which the ID_IDENT data was created. The date is displayed in a pull down menu, which allows you to select from a list of available "as of" dates when viewing the data. Only data on the most recent ID_IDENT record may be manually altered.
    I have a UNIQ_ID = '34587443'. It acutally has records in the database with that UNIQ_ID. The only difference is the create date. On record of 345778 was done on 10/1/2008 and the current date 10/13/2008.
    I see these two dates in the CREATE_DATE pull down menu. This is fine. The drop down orders the dates by DESC so I have the lastest date on top fo the pull down.
    If I want to pick the date of 10/1/2008, I need go into the web page, open the Create Date pull down and select the older date.
    When I pick the older date 10/1/2008, the page does not look the same as the defaul tor oldest time date and numbers.
    The page is different and most of the data on the webpage is there.
    What should have happened is that I choice the newer date from the drop down, the page refreshes with the data from 10/1/2008
    and all the parameters are displayed from the date of 10/1/2008. It isn't only part of the fields are being populated and the page itself doesn't refresh to the look of the original page. Thank you.
    Edited by: pattibz on Sep 12, 2008 11:15 AM

  • LOV does not show newly added data in the same session

    Hi guys,
    I work with JDeveloper 11g Release 2. We use Oracle ADF to develop our web app.
    In a page we have a LOV (say the page name is "a"). The related data for that LOV is inserted to the db in another page ( say the page name is "b").
    When new data is added in the page "b" and goes directly to the page "a" the LOV does not show newly added data. But if the user log out and log in again
    LOV shows newly added data correctly.
    Is there a way to show the newly added data in the same session without logging out? Please help.
    Regards !
    Sameera.

    Add the following method in your ViewRowImpl base class:
    public void refreshLOVAccessorQueries() {
        List lovs = getViewDef().getListBindingDefs();
         if (lovs != null) {
             for (Object obj : lovs) {
                getListBindingRSI((ListBindingDef)obj).getRowSet().executeQuery();
                 ListBindingDef lbd = (ListBindingDef)obj;
    Export that method to the Row Client interface, add him to the pageDef, and invoke in the executables section of the pageDef:
        <executables>
    <invokeAction Binds="refreshLOVAccessorQueries" id="callRefreshLOVs"
    RefreshCondition="#{!requestContext.postback and empty bindings.exceptionList}"/>
       </executables>

  • Flash not showing up AFTER I upload the Scripts folder

    I added a Flash object to a page in dreamweaver. The object
    does not appear in any browser after upgrading to DW 8.02. The
    flash object plays by itself. It plays when previewed in a template
    (a dwt file) in the browser. However when placed on a html file
    based on a template nothing shows up. I have never had this problem
    before. Also, I am still having the same problem AFTER I added the
    Script folder as suggested in other posts on this forum. Can
    someone offer a suggestion? Thanks in advance.

    This file -
    http://www.cis.laguardia.edu/Scripts/AC_RunActiveContent.js
    is not on the server. That's where this call expects it to be
    <td colspan="2" valign="top"><script
    type="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','714','height','54','src','../Flash/TOP','quality','high','pluginspage','http://www.ma cromedia.com/go/getflashplayer','movie','../Flash/TOP'
    ); //end AC code
    </script>
    and this one -
    <script type="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','501','height','115','src','../Flash/BOTTOM','quality','high','pluginspage','http://ww w.macromedia.com/go/getflashplayer','movie','../Flash/BOTTOM'
    ); //end AC code
    </script>
    and it's where this line says it is -
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    but it's not.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mister Tacks" <[email protected]> wrote in
    message
    news:ej0gj1$801$[email protected]..
    > The page can be found at
    http://www.cis.laguardia.edu.

  • Adjusting a URL and reloading causes it to go to Google - any way to just let it reload the page?

    I was testing some calls to a Solr index with different URL query parameters. But each time I adjust a parameter and reload the page, instead of making the call again I'm dropped into Google search.
    However, if I (tediously) manually edit the URL to specifically add back in "http://" at the beginning of the line I can reload the page.
    This doesn't happen in Safari or Chrome. It seems to be a problem unique to FireFox.
    It makes testing cumbersome and I was wondering if there was a solution for this.
    Thanks,
    doug

    Could you describe how you are making the calls? For example, are you setting window.location.href, using window.open(), etc.? Submitting a form?
    One reason for getting a search could be a space in the URL. Is there any way to avoid spaces in the URL, or can you confirm that they are being properly encoded to %20?
    Do you want to try disabling address bar search (keyword search) as a workaround? https://support.mozilla.org/en-US/kb/search-web-address-bar#w_turning-off-the-internet-keyword-search

  • Flash player not showing all of pix on web page

    Have latest flash player 11, IE 10, windows 7 64bit. Have tried everything that I have found on your site, still having problem when I go to a page, all of pix will not show up. Have downloaded firefox, but it is the same. Also talked to internet provider, says its not their problem, but they tried a lot of different thing. Activex filtering not checked. Shockwave flash object enabled. What should I do next?????

    Can you provide a link to where that happens?

  • Drop Zones not showing

    I have a student who is using iDVD from iLife 08. She has put pictures in the three drop zones and added the movie. In the preview, everything looked good. Drop zone pictures showed up, music played, movie played. We burned the DVD. When we play the DVD no pictures are showing up in the drop zone. We are using the water droplet one and it just shows the drop and the ripple but no picture. We have thrown the project away and remade it three times and it has happened each time. Anyone have any ideas of what is up with this?
    We are using macbooks to create these.

    iLife 8 will not run under Tiger/ Do those Macbooks meet the requirements?
    iLife 8 System Requirements:
    http://www.apple.com/ilife/systemrequirements.html

  • Drop Shadows not showing up with iweb 2.04 in firefox please help!

    Drop Shadows on my frame are not showing up with iweb 2.04 and firefox please help!
    They show up with safari but not firefox. I've read that publishing to mobile me solves it but I publish to my hard drive and ftp to my host (not mobile me).
    Thanks for any help

    Drop shadows, borders etc are a bad idea in that they increase the file size and the download time of your page.
    Create your image, drop shadow etc on your iWeb page, take a screenshot, crop it and replace the original image with the, much reduced, JPEG>
    Example....
    http://roddymckay.com/PhotoStuff/PhotoFile.html

Maybe you are looking for

  • Safari closes unexpectedly constantly when I'm trying to surfe the web

    My Safari keeps "closing unexpectedly" while I'm trying to surf the internet. This has been going on for almost two months now. I tried to take it to the genius bar and we thought he fixed it when he deleted my history, but alas it is still crashing.

  • IDE STUDIO CREATOR OR SWING

    I am new to development and started on VB where they had a GUI that was easy for me to learn. I was worried when I switched to JAVA, although I enjoy it I was worried about the GUI, until I found Studio Creator. Can you use Studio Creator for program

  • My iTunes library has been corrupted.  Can I restore it from my iPod?

    My iTunes library was corrupted by my corporate IS back-up process.  Is there any way to restore it from my iPod? 

  • Emctl failed creating database.

    Hi, I am installing the database using .dbca and got the following error for emctl at the end of the installation. Database Version : 10.2.0.5 OS Version : RHEL 5; Kernal 2.6 Aug 22, 2011 8:02:31 AM oracle.sysman.emcp.util.PlatformInterface executeEM

  • HELP! iPod Shuffle Pauses for no reason!

    Ive had my iPod shuffle around 6 months and around a week ago it randomly started pausing frequently half way through songs without my command. It just suddenly has outbursts of pausing and keeps pausing and as soon as I press play it pauses again un