Flex :: Successfully Gotten Swfaddress To Work With IE8 And Above?
Oct 20, 2011
Has anyone successfully gotten swfaddress to work with IE8 and above?It seems that when using standards mode, swfaddress will appear to work fine in IE8 and IE9, however, once the user modifies the hashtag in the address bar, the history list becomes corrupted.In cases where the user starts the application via the hash tag url...), and then visits another hash (url...1), the history is never saved.I have tried playing around with swfaddress 2.5 in the svn repository. Interestingly, the code is similiar to JQuery Address (by the same author). I also note that JQuery Address suffers from the same problem.If I turn on compatibility mode in IE, the swfaddress and JQuery Address works perfectly. I have been looking into how compatiblilty mode works, and it does not seem like it would modify or affect javascript execution.Was anyone able to successfully solve this issue? If not are there any other deep linking libraries for flex or flash that contains all the feature sets of swfaddress?
View 1 Replies
Similar Posts:
Mar 21, 2007
However, digging through the SWFAddress forums (as well as their brief documentation), I'm left with the idea that a site must have a very linear navigation in order to take advantage of SWFAddress's deep linking feature. Basically, the Nav must be timeline based, rather than AS based.The site I've designed uses a very common dynamically loaded swf architecture. Does this mean that any site using this architecture will not support deep linking at allSome background on what I'm trying to achieve: I'd like a unique URL that links directly into a section of the Flash site. The 'section' of the site is reached by simply having the right swfs loaded into their container clips.
View 3 Replies
Jul 27, 2010
I'm having a problem with the flash publish method and swfaddres.I've included the javascript of the flash pubblication in a new javascript file with the swfaddress in the same page.If i use swfobject for including my flash file in the swf, swfaddress works ok...if i include the swf with the flash method swfaddress doesn't work.Here the link: http:[url]......
View 0 Replies
Dec 30, 2009
Even creating the simplest example, I can't figure out what I am doing wrong. Here's my swfaddress.swf code:
ActionScript Code:
import com.asual.swfaddress.*;
SWFAddress.addEventListener(SWFAddressEvent.CHANGE, onChange);
function onClick(e:MouseEvent):void
[Code].....
View 4 Replies
Jan 13, 2011
I have implemented SWFAddress 2.4, it works perfectly in Chrome and Firefox on Mac. But in Safari 5.0.3 on Mac, the back button doesn't trigger the AddressChangeEvent. Deep linking works on Safari, just the back button doesn't.
View 1 Replies
Jun 22, 2009
The timeline swf itself (the core of the site) is being loaded into a wrapper swf, as one of the requirements is that this timeline can be used elsewhere, in other projects. This wrapper, however, will have some additional visuals that pertain to a stand-alone version of this timeline. As a result of never knowing exactly where this is going to be used (either a subchapter in another flash website, or as a stand-alone site by itself), I've decided to dump all of the swfAddress code into the wrapper, in a child class of it. To handle the navigation changes, I'm dispatching custom events (from the timeline) with parameters that describe the nav changes, which gets picked up by the parent wrapper, which then calls a function in the swfAddress child class for handling.
Also done in this swfAddress class is the parsing of the URL onChange event (when a browser back button button or history changes the nav, rather than a Flash button). This, too, dispatches an event with info about the parsed URL, which the wrapper is picking up and then calling a function in the timeline's API to make the necessary changes.
[Code]...
View 4 Replies
Feb 16, 2011
how to use SWFAddress within MCs? All the tutorials I find seem to use the maintimeline, but I need to know how to make it work within multilevel mc's, dynamicly loaded in. Ive got a working code but this one is static. Everything is working, even when i copy and paste the URL of Testpage 5 for example in the browser. how to create a dynamic way than using the switch statement.
[Code]...
View 1 Replies
Nov 28, 2009
I'm not getting an error message when I publish my movie (CS4). I'm able to navigate to the end of the movie, so the nav bar and background image are there, but after a number of images and sound bites, other images don't appear nor do the associated sound bites play.I've removed lots of tween, which has helped some, but not enough. I've attached 2 examples. Example one is as it should be. Example 2 is what happens after several images. Attachments:example2.jpg(16.6 K)example1.jpg(39.2 K)
View 2 Replies
Mar 2, 2009
i am currently workin on a flash website...
the following works perfectly fine
Code:
import flash.events.*;
import flash.display.Loader;
import flash.net.URLRequest;
[Code]....
how can i unload the current loaded swf when moving on to another frame?
View 3 Replies
Sep 30, 2009
I can successfully trace out the movieclip instance name..Code: Select alltrace(regions[i].name);but if I try to use it in the following code to hide a movieclip Code: Select alluk.regions[i].name.turtleMc.visible = false;[code]
View 2 Replies
Aug 27, 2010
Successfully imported target swf and put into stage, when I publish this I see target swf is playing.
import flash.display.MovieClip;
var BGLoader:Loader = new Loader();
var BGurl:URLRequest = new URLRequest("HomeBG.swf");
[Code].....
View 2 Replies
May 21, 2010
I am trying to learn how to use EventDispatcher. I create xml gallery where I am loading content via xml.In this particular case, I am not loading a sequence of multiple images. I load just one image. I traced the path to the image location and it is correct. I have a very hard time placing the loaded item to stage. I can trace EventDispatcher functions from EventDispather Class.When I do that, the trace statements confirm that the image is loaded. I am wondering what I should do in order to place the image on stage. I definitely cannot do it from EventDispatcher class directly or I am missing something.Below is my EventDispatcher class.find out about the correct technique to add the loaded item on stage after EventDispatcher was run. Below is the class of my EventDispatcher.
ActionScript Code:
package net.EvtDisp {
import flash.display.Bitmap;[code].....
View 4 Replies
Jan 17, 2012
Using TCP protocol. Client is Flash. Server is Java (on Linux). Is there anyway to understand if a message is successfully sent to target server in client (Actionscript 3) ?
View 1 Replies
Feb 20, 2007
Why is when I trace my "xmldoc" object undefined after it's loaded successfully? I don't get it???
[Code]...
View 1 Replies
Feb 14, 2011
I am attempting to modify an FLV video file to have it stop looping. I launched FlashPro in Action Script 3, imported the file to be modified, applied the "stop on this frame" code on the last frame, but it still loops or goes back to the first frame. Perhaps I am using the wrong approach.
View 16 Replies
Nov 12, 2009
1. Can skip "Exporting SWF Movie" step once i successfully exported and built an swf.I dont need to to export & built it every time when there are no code/design changes. Wasting lot of time to export to swf file. Can I skip and run already built swf from CS4 workspace directly?
2. Is there any commandline/scripting provisions is available in CS4 to automate the exporting/publishing part. So that i can run the script to publish a swf?
View 1 Replies
Oct 5, 2010
For some really dumb reasons, I must support IE6 in the project I'm currently working on (think multi-paged microsite). I have SWFaddress, now, worked into my navigation system, and it is working as expected in chrome and FF.
When I get into IE6 I am having the following problem:
The "browser URL Update" phase of the SWFAddress.setValue -> SWFaddressEvent.Change
cycle fails to function, except when the mouse cursor leaves the SWF frame. When the mouse leaves the frame, SWFaddress history gets updated as expected and the browser navigation buttons function as expected.
But if the mouse cursor stays within the swf, none of this happens, and any stateChanges are skipped by the browser buttons.
View 4 Replies
Apr 28, 2010
Hello all.
Having a hard time getting info on SWFADDRESS so I thought I'd try here as Kirupa has saved my butt in the past.
So my question is this.
I am trying to attach a variable to the end of my SWFADDRESS url but can't get it to register. I can get it working fine using SWFOBJECT like so
http://website.com?Var=1&Var2=2
but once I add the deeplinking I can't get any results.
http://website.com/#/Home/?Var=1&Var2=2
or
http://website.com/#/Home?Var=1&Var2=2
My code in the html is :
Code:
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject('Example', 'website', '800px', '600px', '8');
so.useExpressInstall('swfobject/expressinstall.swf');
so.addVariable("Var", getQueryParamValue("Var"));
so.addVariable("Var2", getQueryParamValue("Var2"));
so.addParam("wmode","transparent");
so.write("flashcontent");
// ]]>
</script>
Anyone have a way around this or a good source for SWFADDRESS help?
Would really help me out!
Cheers
View 1 Replies
Sep 16, 2010
how to use SWFAddress within MCs? All the tutorials I find seem to use the maintimeline, but I need to know how to make it work within multilevel mc's, dynamicly loaded in.Ive got a working code but this one is static. Everything is working, even when i copy and paste the URL of Testpage 5 for example in the browser. how to create a dynamic way than using the switch statement.
Code: Select allfunction traceMyPage(id) {
SWFAddress.onChange = function() {
var addr = SWFAddress.getValue();
[code]....
View 1 Replies
Apr 17, 2010
Am successfully using swfaddress and love it. For the first time though I'm trying to implement it on a site that has a load bar. The issue is if I use the browser's back button I'll eventually get to a page that just shows the full loadbar and stops. It is the the page that I have labeled "$/". If I don't put that label on the first frame then other worse problems occur. [URL]...
View 9 Replies
Jun 20, 2010
I have created a menu with XML data. I have created a movieclip navigationMc this is placed on the first frame of the stage. Inside navigationMc I have another movieclip and named it as menuitems where I am calling the XML. I am calling a button from the library through linkage property called menuitem. I have another movieclip on the stage called pageContainerMC for loading external swfs. Now the script on the main stage - Frame 1 is:
stop();
this.pageContainerMC.loadMovie("assets/work/augmented-reality/augmented-reality.swf",2);
//
#include "SWFAddress.as"
[code]....
The swf address shows on clicking the button but it doesn't load movie once you click back and forward button on the browser also it doesn't change the name of the title.
View 0 Replies
Mar 10, 2010
I have spent several days now trying to make SWFAddress 2.4 work. I followed very closely Lee's video, but I can't make it work. I get the site working, but I cannot make the deep linking nor the title change to work. I am using CS3 with AS 3.0 and SWFAddress 2.4. My PC has Vista Home Premium and I tested this on several browsers (IE, Safari, Opera, and Firefox).
Here is my html code:
Code: Select all<!DOCTYPE html PUBLIC "//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml-transitional.dtd">
<html>
<head>
[Code].....
The FLA file is constructed the same way as in the video with 3 MC's which visibility I toggle based on which button is pressed. The trace() call in onChange displays correctly the value I am setting in each one of the button event listeners, however the url never changes and the back and forward buttons are never enabled.
View 4 Replies
Jul 19, 2007
i have been trying SEO to get it noticed. I came across Swfaddress and statemanager and decided to implement them. I have examined the sample files for both methords and decided i want to use SWFaddress (it works well with google analytics).My problem is that the examples of swfaddress use a frame based navigation and my site uses buttons which load the pages into a loader component via a preloader. Do you think it would be possible to use SWFaddress with my site?
View 5 Replies
Jan 23, 2009
I am using swfaddress for the moment but I am using it on the timeline which is not as dynamic as I would like it to be. How to combine xml and swfaddress? I would like swfadress to get the adress from an xml file and than do whatever its supposed to do.
View 2 Replies
Apr 29, 2009
ive been trying to get swfaddress working. And everything works fine ( the getValue function shows the right content, setTitle does its job etc ) except for setValue. When i set it to for instance setValue("news"), the url in the browser is updated to index.html?#news
that question mark shouldn't be there i guess... it also reloads my page every time. I have no idea where to start looking as i dont know what's causing it. anyone else had this issue before ?
View 1 Replies
May 27, 2009
- Does anybody knows If an XML menu works with the SWFaddress concept?I can only find tutorials about the classic buttons menu (with timeline based transitions)
View 4 Replies
Jul 1, 2009
I am trying to get SWFaddress hooked up, its kind of working at the moment:� Clicking buttons changes everything correctly (i.e page title changes, address url changes and also the content in the swf changes fine)� BUT when I type the url to access a certain page this is not changing anything
Heres the code:
Code:
/*
Website's Navigation Class
*/
package
[code].....
View 6 Replies
Aug 3, 2009
I am using SWF address.
With my site where I am NOT using the function to go to fullscreen works just fine. The problem is that when I use the HTML of SWFAddress I can't get the fullscreen working.
View 11 Replies
Feb 4, 2010
I have used SWFAddress before on a timeline driven site but now I am trying to do all actionscript and it suddenly doesnt want to work.I am trying to use SWFAddress 2.4 and even got as desperate as to try using all my older files (old .as files, and .js files and even switch my AC Object to the swfobject.js) and it refuses to work.Below is a broken down quick version of what I am trying to do
Code:
import com.asual.SWFAddress.*;
contact_pg._visible = false;
[code].....
View 1 Replies
May 11, 2009
on my site, each of the pages is its own swf loading onto the stage via an xml documentSimple enough.I've been pulling my hair trying to out how to get the linking and browser buttons working with this dynamic loadingrelevant code:XML code:
Code:
var xmlPath:String = "index.xml";
var settingsXML:XML;
[code].....
View 2 Replies