ActionScript 3.0 :: Swfaddress Google Crawler?

Aug 7, 2011

The example posted is somewhat limited and there's no meta tags based on the link, only the meta tags presented on loading the SWF. Clearly there has to be a post about getting custom meta tags based on each link (for massive applications like adobe video player) but I don't see any posts about it.

Now what I've done is used javascript to check the swfaddress information and return custom meta tags depending on the variables in the url. IE "index.php#/link1" returns

Code:<meta name="description" content="This is my webpage about getting a search engine to read meta tags for links in Flash"/>
Obviously this is probaly not going to work but I thought I'd give it a shot anyways.

Then I started thinking, what if I redirect the page if it's the first time someone is loading it? So if someone is loading the page I can grab "link1", redirect back to index.php and post info to dynamically generate the meta tags in the php file.

View 7 Replies


Similar Posts:


ActionScript 2.0 :: Integrate SWFaddress Google Analytics?

Aug 27, 2009

I have an as2 site that calls different swfs to the stage from movieclips.The buttons are movieclips and the content that is pulled in is a different swf for each button.How would I go about integrating SWFaddress in here and being able to get analytics functionality out of it?

View 1 Replies

ActionScript 3.0 :: SwfAddress Class Seems To Pick Up An OnChange Event From SwfAddress

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

ActionScript 2.0 :: Crawler Text Effect With ComboBox Support

Mar 7, 2011

I managed to do this on another project with a friend but it was in AS3. Now i'm trying to repeat the same trick in AS2 and..... it seems to be harder than expected. Basicaly, it's a dynamic text box with instance name crawl_txt in witch I managed to insert a horizontal scrolling effect. (layer actions, and layer crawl)
Now the really tricky part:

I need: 1 to import them through a xml file ass a continuous RSS feed. It's a news crawler in essence. I edit manualy the xml file with the latest news. But I also need a combobox to be added, from the latest info I got, in witch it's important to have 2 categories: expired news and latest news. Latest news it's logically are loaded by default. But the second category it's important to contain all the news I had and are no longer active.

View 3 Replies

Actionscript 2.0 :: Flash 8 - Deeplinking - SwfAddress - Use SWFAddress Within MCs?

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

ActionScript 3.0 :: Flash Publish & SWFAddress - Include The Swf With The Flash Method Swfaddress Doesn't Work?

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

Flex :: Dynamic Filtering (like Google's Or Google Finance)

Jun 21, 2010

I wanted to put a search box in my flex app that would act just like google or google finance: you start typing and a drop down list just below starts filtering the results dynamically. Does anyone know how to do this in flex? I am using flex and php so as the user types it will pull results off the server dynamically.

View 1 Replies

ActionScript 3.0 :: SWFAddress In Ie6?

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

IDE :: SWFADDRESS + URL Variable

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

Actionscript 2.0 :: Flash 8 - How To Use SWFAddress Within MCs

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

Professional :: Swfaddress And Load Bar?

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

ActionScript 3.0 :: Can't Get SWFAddress 2.4 To Work

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

ActionScript 2.0 :: SWFAddress For XML - Script?

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

Actionscript 3.0 :: SWFAddress 2.4 Not Working

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

ActionScript 2.0 :: SWFaddress And External SWF's?

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

ActionScript 3.0 :: How To Combine XML And SWFAddress

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

ActionScript 3.0 :: SWFaddress Ads A Mark?

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

ActionScript 3.0 :: SWFaddress With XML Menu?

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

ActionScript 3.0 :: Get SWFaddress Hooked Up?

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

ActionScript 3.0 :: Go To Fullscreen With SWFAddress

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

ActionScript 2.0 :: SWFAddress Not Working?

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

ActionScript 3.0 :: SWFaddress & Loading External Swf Via XML?

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

ActionScript 2.0 :: Deep Linking With SWFaddress?

Jan 15, 2010

I'm trying to get to grips with SWFaddress and struggling a littleJust trying to work out how to place the mc buttons into one movie clip.The code on the mc buttons is :

Code:
this.deepLink = '/about/';
this.onRelease = _parent.btnRelease;

[code]....

View 3 Replies

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

ActionScript 2.0 :: SWFAddress Not Updating Or Responding?

Aug 4, 2009

So I usually don't post in forums because I can usually find the answer to my question online. But I have been messing with this for days with no success.

Import AS2 version of swfaddress into flash movie... check. Place SWFAddress.js file into webpage... check. Call SWFAddress.setValue("home")... not check!

View 0 Replies

ActionScript 3.0 :: Get SWFAddress Working In A Project?

Nov 19, 2009

I'm trying to get SWFAddress working in a project. When I open my page in Firefox Firebug gives me and error: asual is not defined _util = asual.util, swfaddress.js (line 230)

The Flash end seems to be working as I get the the swfaddressEvent. The JS side refuses to put the name in the title of the browser.

I'm using SWFAddress 2.4. I'm also using SWFObject v2.2, which I have imported first, as per suggestions.

I tried the older version of SWFAddress following along with the Tutorial at GotoAndLearn.com. But, this also did not work.

View 0 Replies

ActionScript 2.0 :: SWFAddress.onChange Firing Twice?

Dec 15, 2010

Or at least that's the impression I'm getting. Locally in Flash, it all seems to work fine. When I open it in Safari or Firefox, it messes up some of my functions, and I THINK it's because the onChange function fires twice. Just can't figure it out.[code]Then changePage2() comes into play, but the problem is before this apparently.when I go to the URL directly, or when hitting the back button. It goes wrong when the change is triggered inside the movie.

View 0 Replies

Flash 10 :: SWFaddress Bypasses Preloader?

Mar 13, 2011

I'm developing a flash website with swfaddress. Everything works fine, but when I paste a deep link of the site in my browser bar, the preloader is bypassed.I've downloaded the swfaddress 2.4 code, but when in index file I replace the website.swf with mywebsite.swf the only thing I see is a still picture of my preloader blocked on 100%.

View 0 Replies

ActionScript 3.0 :: Deep Linking With SWFAddress?

May 4, 2011

Yo. Im trying to get deep linking working with a flash website im building. Im using SWF Address (asual.com/swfaddress). In my code I can set and get the current address value my using SWFAddress.setValue(), and SWFAddress.getValue(), but I can't for the life of me get the address bar to update accordingly.

View 4 Replies

ActionScript 3.0 :: SWFAddress And Loading External SWF Via XML

May 10, 2009

On my site, each of the pages is its own swf loading onto the stage via an xml document. Simple enough. How to get the linking and browser buttons working with this dynamic loading site [URL].

Relevant code:
XML code:Code: Select allvar xmlPath:String = "index.xml";
var settingsXML:XML;
var loader = new URLLoader();
loader.load (new URLRequest(xmlPath));
loader.addEventListener (Event.COMPLETE, xmlLoaded);
function xmlLoaded (e:Event):void{
[Code] .....

View 2 Replies







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