473,385 Members | 1,400 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Flash button not working in IE

2
I have an web application, for a menu to go to page to page wit in the web app I am using flash buttons. The problem is that the first time I click on the flash button everything works fine the page load fires and the web page is displayed. But then if I close that page and then click on the same button the page load does NOT fire and I get the original web page back again. If I do this in Fire Fox it works but not in IE. If I put a simple redirect button on the page everything works fine in IE. So it has to be the flash button.
Here is the script I am using for the flash button
btnFareHistory.onRelease = function(){
getURL("MonthlyFareHistory.aspx", "_self");
};

btnFareHistory is the name of the button and MonthlyFareHistory.aspx is the name of the page it should go to.

Please help
Thank You
May 24 '07 #1
5 11963
ufitzi
3
I'm a little confused. Your getURL function has a target of "_self" (this is the deafult setting BTW, so not needed, but anyway...), yet you've described the action of clicking the button as

the page load fires and the web page is displayed. But then if I close that page and then click on the same button the page load does NOT fire and I get the original web page back again.
Does your button open a new page?
It should load in the same window. (_self)
When rolling over your button, do you get "the finger?"
If not, make sure you are not going to a frame where your button onRelease function IS NOT DEFINED. In fact, just place the code ON the button, using the on(release){} method handler.
good luck
May 25 '07 #2
nomad
664 Expert 512MB
I have an web application, for a menu to go to page to page wit in the web app I am using flash buttons. The problem is that the first time I click on the flash button everything works fine the page load fires and the web page is displayed. But then if I close that page and then click on the same button the page load does NOT fire and I get the original web page back again. If I do this in Fire Fox it works but not in IE. If I put a simple redirect button on the page everything works fine in IE. So it has to be the flash button.
Here is the script I am using for the flash button
btnFareHistory.onRelease = function(){
getURL("MonthlyFareHistory.aspx", "_self");
};

btnFareHistory is the name of the button and MonthlyFareHistory.aspx is the name of the page it should go to.

Please help
Thank You
you might have to do this
getURL("www.MonthlyFareHistory.aspx", "_self");
you can add the http:// as well
nomad
May 25 '07 #3
Atran
319 100+
I have an web application, for a menu to go to page to page wit in the web app I am using flash buttons. The problem is that the first time I click on the flash button everything works fine the page load fires and the web page is displayed. But then if I close that page and then click on the same button the page load does NOT fire and I get the original web page back again. If I do this in Fire Fox it works but not in IE. If I put a simple redirect button on the page everything works fine in IE. So it has to be the flash button.
Here is the script I am using for the flash button
btnFareHistory.onRelease = function(){
getURL("MonthlyFareHistory.aspx", "_self");
};

btnFareHistory is the name of the button and MonthlyFareHistory.aspx is the name of the page it should go to.

Please help
Thank You
Hello, maybe I can help you.
First publish your flash file, click on the publish button, then go to the "Flash" tab, there you see option about flash publishing, then go to "Local playback security", and change it from "Access Local files only" to "Access Network only" and click publish.
When you getting the Url in "_self" type, you might put your flash player (swf) in an html page (or aspx.....), because _self is for url, I mean when you run the flash player normally, the button cant hide the movie and go to the URL in the Flash Player Program.......
First try with _blank.
I hope this was helpful.
May 27 '07 #4
Allright, i got it and here is what i did:

You need to use absolute path for flash files eg.

Do not use
http://www.url.com/blog/flash/flashmenu.swf

Use
flash/flashmenu.swf

Thats it! Problem Solved

Best regards,
Deffex Media
www.deffex.com
Jan 26 '10 #5
From what you wrote I'm guessing you want a popup, you need to use "_blank".
Erm kjogsite, this question was asked 3 years ago. You digging through old questions? :p
Jan 28 '10 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

9
by: Keith Rowe | last post by:
Hello, I am trying to reference a Shockwave Flash Object on a vb code behind page in an ASP.NET project and I receive the following error: Guid should contain 32 digits with 4 dashes...
115
by: post2google | last post by:
I was thinking about where to go for lunch the other day, so I went to hardees.com to see what the menu looked like these days. What comes up is a big note that my flash version is not new enough...
8
by: Neo Geshel | last post by:
Greetings. BACKGROUND: My sites are pure XHTML 1.1 with CSS 2.1 for markup. My pages are delivered as application/xhtml+xml for all non-MS web clients, and as text/xml for all MS web...
6
elamberdor
by: elamberdor | last post by:
Hi All! Trying to get a drop down hide/show div on a html page triggered by a button in flash. (Intro: Very very Little experience in dynamic flash) setup: html page, flash map on page, button...
9
by: anuparvathy | last post by:
i am using a flash template for my website.i am working on asp.net 2.0 for creating my website. this flash template has got buttons.on the click of the button i want the user to be redirected to the...
1
by: anuparvathy | last post by:
i am using a flash template for my website.i am working on asp.net 2.0 for creating my website. this flash template has got buttons.on the click of the button i want the user to be redirected to the...
1
by: johnlanglois | last post by:
I found several discussions that hinted at my issue, but none that contained a solution. I have a main page that contains a FLASH movie/Menu. The rest of the site is contained in an IFrame that...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.