I have a intro for a website using a FLV. I set two cue points ("start","end"). What I am trying to do seems very simple (when I started,LOL), at the end of the FLV have it go to another web page using the "end" cue point. Here is what I have:
I'm working on a project in which I'm using a background movie playing in a Movie Object and on top of that I'm showing texts and images sort of like they are in the movie itself. The way I did this is by making the movie in After Effects and giving every frame in the movie the required position, alpha and scale parameters for each object in the flash movie.
I need to change some dynamic text when the video file encounters certain cue points. So far I've been able to do checks on the name of the cue point and trace text when a cue point is encountered. I've added a text object manually and I've given it the instance name "cuepoint_text". I thought i could then do something like this (pseudocode):
I've created a 'flashvars' tag in my embed code (aid=test), which I simply wish to add to the end a GetUrl statement, contained in within a button (which is on the first level of the flash movie). This is the code I've added to the button...
on (release) { getURL("http://www.platinumselect.com?id="+aid);}
But this doesnt seem to work!? Is there anything else I need to do?
I am customising a Template Monster template that has a flash menu.When I changed the getURL code (using AS2) of my flash menu buttons they work for an external URL but do nothing in my site. EG.THIS WORKSgetURL("index.html");THIS DOESNTI have everything in the same root folder and the animated menu bar works perfectly in-situ, just wont go from page to page.
I have a pre built flash navigation menu. I am trying to add a getURL code to the buttons. The code looks like this:
function butnClick(event:MouseEvent):void { if (event.target.num == 0) { // For the 1st button: // Add your button click actions here[code]............
Im getting syntax errors and I know its wrong but thats the only way I know how to write it so far.
I am using Flash CS3, AS 2.0 and I have a button with -
on (release) { getURL ("http://www.axiomaudio.com/store.html", _blank) }
This is a small banner in an HTML page and I want it to open in the same window instead of opening a new window. I have tried using _self) instead of _blank) but it still opens a new window.
Are there known issues regarding the getURL command in Firefox 3.5?I made a very simple flash movie with some getURL commands and they work in IE7 and IE8 but not in Firefox 3.5.[code]I just tested in Opera (9.24) and it doesn't work either...
So we have some web-based training that we are making. Using CS4 to publish to Flash 7 and then the page is running in IE 6. (Got to love them corporate policies!) We have some resource documents for the users to download. Usually we make them pdfs and use getURL() and the files work just fine. However, this time we have a file that we want to keep as a .doc type. The code is:
I've created a login form in Flash that should post to a php login script on a different server.
I've given one input text field a variable name of user (for the username)
I've given the other input text field a variable name of pass (for the password)
I'm using the following AS applied to a button:
Code: on (release) { getURL("http://www.website.com/login.php?username="+ user +"&password="+ pass); }
[Code].....
I log in just fine to the site... If I attach the full code to the script I log in just fine... why is it that passing the variables is not working with getURL action script?
I've tried to accomplish this using several different scripts but I get the same result with everything I do.
I have modified simple photo gallery tutorial through XML at [URL] click on a thumb and an image scrolls in. Now I'm trying to add a link to the image - but can't get the url from the xml to the image.
I did a quick search to find how to load a swf into an already playing swf with a getURL action. Is this possible? Like loading a jpg but I want to load a swf. Does that make sense?Say I have an empty mc in my swf and want to call a swf from an absolute address, like
I have not tried it yet 'cause I'm at work (no flash here) but I was talking to someone . . . about creating a logo once and then just calling it from one location (site by subQuark). That way I only need to update it in one place for html sites (as I do now) or for all flash sites (which I do per site now).
I have most of the basics down in actionscripting. I want to learn a little bit more on if else statements. I have an issue right now that I am pretty sure needs to use the if else statement.
What I have is an FLV playing in a browser. When that FLV is done playing, I want it to getURL to a different location. So basically when the FLV is done it goes to the next HTML page.
I attempted and got this far :
[AS] var nc:NetConnection = new NetConnection(); nc.connect(null); var ns:NetStream = new NetStream(nc);
My client's site exists on both http:// and http://www. and I have a flash navigation system on the site. All links are absolute values and work fine from the www subdomain but do not seem to work from the http:// domain. It seems strange to me as the links are absolute paths...
i am still learning actionscript and i am tryin to make a dynamic xml menu. i have stored the url links in the xml file, but i cannot get the getURL function to work.
I developed a portable video player thats similar to YouTube's video player where you pass a video's info and the video loads and plays. The player can also be embedded on your own personal site using the embed tags. My problem is this, everything with playing / loading the video works fine. But I've got a link on the Flash thats hard coded to a url and links off using getUrl like so:
getUrl('http://www.site.com', '_self')
Now this works if the HTML and SWF are in the same location (ie both local, or both on the hosting server) but for some reason it doesn't work in the embed mode when the player swf is located on one server and the HTML that's loading the SWF is on another server. XML loads fine, videos load, images load, but the gerUrl does not work...doesn't go anywhere. Also, I've got my crossdomain xml file setup to accept all domains using the * option.
I just was notified by a web viewer using Internet Explorer that some of my site functionality is no longer working properly in their browser. I have looked into the problem, and found that in IE (both Windows and Mac), my getURL functions don't work.On an actions layer, here is an exerpt of my code:
Depending on the frame of the inner movie clip, the button goes to different html pages. This has always worked before, but perhaps now needs a workaround due to recent IE updates. A secondary problem i might also mention, has recently caused troubles in IE as well. I have an image on a page with a javascript link to open a swf file in a new window. This works fine in Firefox, but comes up with a page not found in IE, where it had previously worked.
I can't seem to get the buttons I have created in flash to open in the same window.. I've tried 1. leaving it with no target 2. on (release) { getURL("[URL]"); targetPath("_self") } 3. on (release) { getURL("[URL]", "_self"); }