Professional :: Flash - Not Updating In Browser?

Apr 12, 2011

Firstly i am not sure if this is the correct forum, basically i have updated my flash movie on my website, and the updates have taken effect in mozilla and google chrome, however in IE 7 & 8 the old flash movie still displays.  I get this is down to the cache and i have tried several code snippets to correct this but nothing seems to make a difference.Is there anything that i can do with the flash code to force the browsers to reload the the movie each time they visit?

View 2 Replies


Similar Posts:


Flash :: Updating Website Browser Download The New Version?

Apr 3, 2012

This might be a simple question, but I'll ask it anyways. I know when I update my flash website I have to clear the cache to view the changes. Now, will all users have to do that to see the new changes, or will the browser eventually detect changes and download the new version?

View 1 Replies

ActionScript 2.0 :: Updating SWF And XML Files On Browser - Flash Cache

Dec 18, 2008

This question is more about updating swf and xml files on the browser. I have a gallery site that has muliple swf files loaded on the master swf on button click. These swf files loads an xml file. My problem is that whenever I update the xml or swf file, the browser still has the flash cache stored so I have to manually refresh the file to see the changes. As in, I can't just refresh the index.html. I have to refresh the
/xml/filename.xml or /flash/filename.swf
Which works but then when other people view the site again, they won't know that they have to refresh the files because they don't know the file name or path. Know what I mean? I researched the net and found solutions like using index.php instead of html or using a random variable string like index.php?mod="34342234" but that only seems to update the master swf.

View 1 Replies

Flex :: Flash Player In Chrome Is Not Updating Unless The Browser Is Resized?

Nov 18, 2011

I have a strange issue where Flash Player in Chrome is not updating unless the browser is resized. The app is an online design tool, written in Flex, and one of the features allows the user to upload an image and crop it. The image loads fine, and the crop action does not reload the image but uses Bitmap.copyPixels to create the cropped version.When I test on localhost (though a local server not just straight from the file system) the issue does not happen. However on our QA server the image does not appear unless you resize the browser, when I suppose a screen refresh is forced.I've tried all the usual suspects in AS3/Flex to force a redraw, updateAfterEvent, invalidateDisplayList, etc.we came up with is to resize the browser by a pixel, but this is obviously not ideal and I'd prefer a solution to a work-around.Here's the Bitmap code for reference...

var cropData:BitmapData = new BitmapData( _crop.width, _crop.height );
var originalData:BitmapData = new BitmapData( _loader.width, _loader.height );
originalData.draw( _loader );[code]....

View 3 Replies

Flash :: Professional - Updating PSD Files In A Movie

May 28, 2010

I'll start off by saying that I'm new to Flash. I'm using the CS5 Web Premium suite and want to publish an updated version of a Flash movie that contains PhotoShop files which I've recently modified. Unfortunately, when I open the .FLA file in Flash Professional CS5, it's not apparent to me how to do this. I don't see the PhotoShop files anywhere in the Library pane and thus can't figure out a way to update the Flash movie to recognize my newly modified .PSD files.

View 1 Replies

Flash :: Professional - Install CS4 After Installing - Activating & Updating Photoshop CS5?

Mar 30, 2011

Can I install Flash CS4 after installing, activating & updating Photoshop CS5?

View 1 Replies

Professional :: Properly Updating Flash CS5.5 To Use The Latest Flash Player/Debugger?

Dec 13, 2011

I'm just about to uninstall and reinstall at this point but I'm getting my install all screwed up trying to update Flash Pro CS5.5 to use Flash Player 11. I had it fine using the MXP provided in this adobe blog. Though that's 11.0 not 11.1. It did work however.
 
I downloaded the latest Flash Player / Debugger .exe and the latest SWC for 11.1 and now Stage3D is no longer being seen. Clearly I screwed something up. I uninstalled and reinstalled the MXP after deleting the FP11 XML and FP11 directory but it's not working anymore.
 
Is there a clear cut simple way to explain how to overlay the latest Flash Player for FPCS5.5? I used the AIR overlay instructions for 2.6 - 3.1 and it worked every time. Now I just need Flash Player overlay instructions. I'm very interested to start trying to Starling framework with Stage3D. I select FP11 to export and it tells me it can't find Stage3D.

View 1 Replies

Professional :: Flash CS5 And Updating To Flash 10.3 And AIR 2.7

Jun 20, 2011

I'm currently running Adobe Flash Professional CS5, and would like to update it to utilize some of the features in AIR 2.7 and Flash 10.3 / Flash 10.2. I encountered a similar problem a ways back when AIR 2 was being released, and I had to resort to ultimately "overlay" the existing installations. I've looked around and found some similar third party resources pertaining to the latest updates, but I've failed to get them to work - some instructions for adding in 10.3 as a build target compile, but they don't seem to be running in 10.3, or the debug player is not running in 10.3.Am I missing something really obvious? I'd think that when a major release is made, it should be straightforward to update your version of CSx to target that release, but it's anything but. I found the release notes for Flash 10.3(url...), and under authoring it says:
 
"Developers can access new APIs in the Flash Player 10.3 by making manual changes to their existing SDK/tooling configuration. To learn more about the new APIs, read the online ActionScript 3 reference documentation. Adobe Flash Professional CS5.5, Flash Builder 4.5, and Flex SDK 4.5 will not be updated for the new runtime."Where can I find the manual changes required? And why do these releases require manual overlaying anyway?

View 6 Replies

Php :: FLEX Database Will Not Refresh After Updating Database Unless Browser Is Restarted?

Jun 7, 2010

I have researched this issue all over and most people say use the .refresh() method to update a datagrid after updating or adding a new record. This does not do anything. So, my issue is this. I have a mySQL database hosted I am connecting via PHP, I have 1 mxml file and 2 php files (I know I can use just 1 but I am learning and this was easier for me to use for troubleshooting). The issue is no matter what I change on the datagrid the update does not show on the datagrid unless I close out of IE and reopen it. I can refresh or open the page in another window and the update does not show. I have to exit entirely and restart in order for any updates or additions to show.Here is my licenseTracker.mxml

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[code]....

View 9 Replies

Php :: FLEX Database Will Not Refresh After Updating Database Unless Browser Is Restarted

Aug 31, 2011

I have updated the mxml code to only show the needed code for the program to run the update.

I am new to Flex and have an issue I hope you all can help me out with.

I have researched this issue all over and most people say use the .refresh() method to update a datagrid after updating or adding a new record. This does not do anything.

So, my issue is this. I have a mySQL database hosted on 000webhost.com, I am connecting via PHP, I have 1 mxml file and 2 php files (I know I can use just 1 but I am learning and this was easier for me to use for troubleshooting). The issue is no matter what I change on the datagrid the update does not show on the datagrid unless I close out of IE and reopen it. I can refresh or open the page in another window and the update does not show. I have to exit entirely and restart in order for any updates or additions to show.

Here is my licenseTracker.mxml

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[Code].....

View 1 Replies

Professional :: Updating Images In An FLA?

Jun 14, 2011

This may sound simple but it's not at all from what I can tell. Hell it may be impossible but I might as well ask...Anyways, what I'm trying to ask for is a way to update the images embedded in an FLA somehow without having to manually re-import each individual file every time they get changed on the hard drive. We have a massive project with a large amount of FLA files, and having to manually re-import all of the images every time new things are committed to the repository is going to get rediculous very fast.

View 3 Replies

Professional :: SWF Not Updating Whenever I Update My Code/library?

Mar 17, 2012

I am a learning programmer who is trying to do some simple experiments. However, when I go to change my code, the exported SWF never updates; it simply tests an older version of whatever I am testing. The only way for me to fix this is by restarting Flash, which is not ideal in any way.BTW I am using Flash CS5.5, if that means anything.

View 8 Replies

Professional :: Using Flash In Websites Browser Display?

Jan 28, 2011

I am very new to flash ads and we are on a new platform after a website redesign.  I'm having trouble with flash display settings I'm guessing since the ad displays fine in IE, but not fine in Firefox and Chrome.  Images to follow (for the curious it is a YWCA ad):
 
Here you see overlap on the current version of Firefox.
 
This ad has wings! Current version of Chrome.
 
This is IE. What? IE is right and the other browsers aren't? What gives!?
 
Additional details:  The position is a plugin position for Wordpress.  The ad is being placed via Ad-minister with the following code:

[Code]...

View 1 Replies

Professional :: Works In Flash Player But Not From Browser?

Apr 5, 2011

I've created a Flash file that reads from several different xml files and displays them when requested. When I run the Flash player, (by pressing Command-Space within Flash), it all works flawlessly. But when I open it within a browser, only one of the xml files loads, the other two just spin away on the preloader.I have another Flash file that is doing the same thing. A click on a scrolling new list should take you to another web page. In Flash Player it works fine, but from a Browser nothing happens

View 3 Replies

Professional :: Flash Player Freezing IE Browser

Apr 8, 2011

So I recently got a new laptop. It came installed with Windows 7 64-bit and Internet Explorer 8. However, after installing the current Flash Player update, IE started freezing. I would open certain pages, and the browser would become unresponsive, leading me to end the program. I would try it again, and still the same result. The culprits were always the same, hotmail and tvshowsondvd, among others. Internet Explorer 9 was released a few days later, so I uninstalled IE8 and installed IE9.

The browser worked fine for a few days, but then it started to do it all over again, with the same web pages! Then I noticed something, all these pages were heavy in flash objects. So I tried uninstalling Flash Player 10 and guess what, it started working! No more problems loading pages. I can no longer view flash objects, especially on YouTube. I haven't had the problem since, but I need Flash Player installed.

View 1 Replies

Flash :: Professional - Browser Back Button After Leaving

Apr 8, 2010

I am currently working on a site where a button in the flash takes you to an external link. The user would like the browser back button, when you are on the external link, to take them to the page on the flash that was last viewed without restarting the flash. Is this possible?

View 5 Replies

Professional :: Get Stuff Off The Stage To Show In A Web Browser On Flash CS4?

Apr 24, 2010

I have a picture that I want to be my background.  So I put it around the stage, but when I test my movie in a web browser, only my stage shows.  Is there a way I can get it to all show?  I don't really care if my background is cut off, as long as you can see it, because it's a tile sort of picture.

View 4 Replies

Flash :: Professional - Centre Content In Browser Window?

May 3, 2010

How do I centre my Flash content horizontally in the browser window? In the Publish Settings I see there are options to align the HTML to Default, Left, Right, Top and Bottom, but no Center. Is there a setting somewhere else? Do I need to write some ActionScript to do this? (If so, what?)

View 2 Replies

Professional :: SWF Flash Won't Work With External Videos In A Browser?

Jun 5, 2010

I created a flash website component and everything works great in flash when I preview it, or if I view it from my hard drive via the flash player. All the flash components work except for the external videos. When I try to add it to my html file in dreamweaver and then publish it, none of the videos pop up, just the main layout.I've searched every forum and tried everything I saw and still no luck.I was able to get it to work if I link directly to html, but not if I'm linking to my hard drive which I upload to the server.Here is a link to both the html file and the swf file[URL]

View 1 Replies

Flash :: Professional - NetStream And Player 10.1 - Crashing In Browser

Jun 24, 2010

I'm into LMS courses, and use a lot until today the combination of flv's for characters and loadSound for make them talk. Until today because after this week I've update my flash to 10.1 and boom, all my courses now are crashing in any browser that have the update. I already noted that the problem is the netStream. Here's my current Actions just to quote, I've been using this since version 9 of the flash player with no problems:

[Code]...

View 3 Replies

Professional :: Cannot Center Html Flash File In A Browser

Feb 19, 2011

After i publish a flash project and try to open the html file with a browser it is always at the left of the browser, why? In addition i have some problems with size too..
 
What is the size of the browser's area for viewing any content(i mean the parts below the navigation tabs to start menu)? How can i adjust my project to this? Note: My html settings seems true, it says "center center" but i dont know how to solve this.

View 6 Replies

Professional :: Opening A Browser Inside A Flash Application?

Apr 1, 2011

my organization is in the process of building a touchscreen interactive kiosk. We've designed a flash application to run on the kiosk to display information about our business, our publications, etc. We'd also like to be able to access our website through the flash application. We're having trouble figuring out how to do that effectively. The best we can do is to have the application launch Internet Explorer in a seperate window. This isn't so bad if we run IE in kiosk mode, however it becomes difficult/impossible to navigate back to the flash application (or to close the browser) without a mouse and keyboard (which users won't have access to).Wondering if there's a way to open or access a browser inside of the actual flash application, so users can access the flash menu, home buttons, etc and easily navigate back to the information contained in the rest of the flash application.

View 2 Replies

Professional :: Auto-fit Flash Website When Resizing Browser?

Apr 21, 2011

I am trying to create a flash website, my document size is 1024 X 766 pixels. My goal- when I publish it and view it in the browser, when I resize the browser window I DO NOT WANT the website to scale up/down accordingly.At the moment my flash website is scaling according to the resizing of the browser window which is causing awful aliasing to my logo (jagged edges).The logo is 250 x 50 and I don't want the logo to change size while resizing the browser window. And at the moment the logo is growing or shrinking when changing the browser window.

View 4 Replies

Flash :: Professional - Keep Mc In Fixed Loc Within Scaleable Full Browser?

Jun 2, 2011

I have a full-browser background slideshow. To do this, I'm using some AS in conjunction with the handy dandy swffit. I would like to ensure that the slideshow scales appropriately with the browser window size (as it is currently doing), but I would lilke the location of my logo, which is in the lower left hand corner, to remain fixed so that it is not pushed out of view when the browswer gets scaled to a small size.

View 3 Replies

Professional :: Center Flash Movie In Browser Window?

Jun 28, 2011

how to horizontally center my Flash movie in the web browser window after publishing?
 
A bit of background: I was able to achieve this using <center></center> tags a few years ago. But I have since upgraded to CS5 and I understand that this old method is now obsolete.
 
I have found a few threads/forums that address this, but I know nothing about HTML and these threads don't help me because they assume you have more knowledge than I possess. When opening up the index.html file in Dreamweaver I can't find anything that looks vaguely familiar to what is being discussed. I have found some code samples using <div></div> tags but have no idea where to place it.
 
So I will need it explained to me in a step by step fashion, including which file I need to fix and what program I should use. Code samples will be very welcome if you can tell me exactly where it goes.

View 7 Replies

Professional :: Flash - File Moves On Load In Ie Browser?

Feb 11, 2012

Recently I designed and programmed a website.... and today I have come  (this happens only in internet explorer web browser)Every other web browser like firefox, safari it's loads totally fine.click on the URL link below and click on any buttons in the navigation bar with your mouse cursor.As you can see a quick blink, the flash file is at the very top left hand side before its in the correct position. (underneath the nav bar)It seems that the wmode / transparent is causing it.If I remove wmode - it loads fine in ie.ut I need the transparent / wmode for the drop down menu to work (so its visible while the flash file is there.)

View 41 Replies

Flash :: Professional - Mouse Scrolling With Internet Browser

Feb 22, 2012

I made a website in Flash CS3. I published the file into html format. Now when I open the html file in a web browser I cannot use my mouse wheel to scroll the page up nor down. However the browser's scroll bar allows me to scroll up and down and i can scroll the page up and down if I place my mouse to the left side of the page where the page shows the background color of my flash document's stage. I want to be able to scroll using my mouse wherever the mouse is located on the website. Details about my flash file are as follows:

- It contains only Action script 2.0 coding. - the layout is made out of movie clip and button symbols. - i used a scrollPane component for one of my text and image contents. - I used a UIscrollbar component for all the text inside my image gallery (which is a movie clip containing the scrollable text areas) I am including below the coding formats used for buttons in my file in hopes that it provides clues to the scrolling error :

[Code]...

View 10 Replies

Actionscript 3 :: Preloader Not Working In Browser But Does In Flash Professional

May 10, 2010

I've got a SWF to which I added a Preloader scene. The preloader works fine when I hit Ctrl+Enter in Flash CS4, and select View > Simulate Download. The preloader displays, and when full, the movie continues as expected. However, the moment I embed the SWF into some HTML, and load from localhost in any browser, the movie doesn't continue until I right click and select Play. When I use the Charles Web Debugging Proxy tool and throttle the connection, then again preloading works fine, and the movie proceeds when done? Here's the source for the preloader:

[Code]...

View 2 Replies

Professional :: Substituting JScript/ HTML When The Browser Blocks Flash

Jan 8, 2010

Many people install an add on to their browser - such as Flashblocker, or FlashOff - in order to stop annoying advertisements from auto-running. Is it possible to detect that this has been done, and then (obviously) use JScript to put up an alternative if this is the case?
 
If you cannot do this, then there is really no point to using Flash's higher functions, because  the majority of users will see them only if they click a gray panel with a hopeful button in the middle of it. Flash becomes merely a decorative bolt on for web applications.

View 3 Replies

Professional :: Outline Or Border Surrounding Flash Movie In Browser Sometimes?

Aug 17, 2010

I've noticed when browsing my flash site sometimes--not on every computer but--when I click on something (like a button) suddenly an outline or border appears around my entire flash movie.  Anyone know what causes that and how to make it go away?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved