Loading Referrer From Flash
I am more or less new to Flash but I will be loading a Flash file inside a frame page and I want a button inside my flash movie which will return to the homepage but I do not want to enter a fixed address.
Is there anyway I could have a button which loads the referer? e.g. getURL(referer)
Thanks for any help,
jonny
DevShed > Flash Help
Posted on: September 27th, 2004, 07:32 AM
View Complete Forum Thread with Replies
Sponsored Links:
:::>Log Referrer In Flash 4?
Does anyone know if it is possible to 'capture' the referrer URL to the page with the movie on it, then pass it as a variable as part of a form,
e.g.
enter name:
enter email address:
you were refferred by: http://www.the-page-they-clicked-on-to-get-here.com
Its possible in JAvascript but can it be put into flah 4?
Maybe possible in later versions?
View Replies !
View Related
Flash And Referrer Q?
I have "Server A" were my swf is hosted. I've embedded it in a page on "Server B". Can the swf get this referring webpage that they came from to get to the page on "Server B" and send it somehow to "Server A" or email it?
I have limited access to "Server B" and full access to "Server A".
I just want to see were visitors are coming from when they load my swf on another page that I post it on.
I hope that made sense....
View Replies !
View Related
Document Referrer In Flash ?
hi,
is there any way to get the document referrer in flash without passing it through javascript or params. I wan't to prevent deep linking to swf files containing images and guess the best way is for the swf file to check it has been loaded from html which is hosted on my own isp but I don't know how to do that.
percepts
View Replies !
View Related
Flash Does Not Send Referrer... Any Way Around This?
Hey folks,
I have a flash widget on my MySpace page, and I want to place it on a few other websites. I wanted to track where my widget is loaded by using the referrer, but when i use LoadVars sendAndLoad to tell PHP that the widget has loaded, the referrer shows up as blank.
Further investigation turned up a live doc that says they took out the referrer after flash 7. So, I ask you folks, is there another way to get access to this? Is there somehow a way Flash can see what page it's currently on? _root._url refers to the SWF file itself, but never shows the page it is on.
Any help would be greatly appreciated. The goal is to connect to PHP with some info, and have that referrer available. If it's not PHP, another server side language will do.
Help! Tann?!?!?!
~Noel
View Replies !
View Related
MSIE And Flash Movies As A Referrer
Hi all,
I've encountered a small issue with MSIE and flash.
I have a standard HTML page that uses PHP to restrict access to users who aren't referred by a certain page. The link to the restricted page is in a flash movie.
Now this works in Netscape 7 (my default browser). NN7 recognizes both the flash movie and the page it's on as the referrer, and the page gets displayed. In IE, however, it doesn't seem to see *any* referrer, because on the restricted page that issues the refusal, I have a line of code that prints the referring document to the page, and in IE, *nothing* gets printed.
I've posted a message concerning this to a PHP forum as well. I hope this isn't off-topic, but I would think someone seasoned in Flash may have an answer.
Thanks,
Mike
View Replies !
View Related
Need To Retrieve Site URL (http Referrer) Of The Site My Flash Player Is Placed On
Hello All,
I am trying to implement a custom flash player where my embedded source code (<OBJECT></OBJECT>) can be placed on various websites. I would like to gather some information of the users who are using my flash player on their site. I wrote the following code inside the flash player to gather the site URL (http referrer) so I can send this piece of information back to my server.
javascript: if(null != document.all) {
window.document['adbVcmAd'].Movie += ('&site_url='+encodeURIComponent(document.URL));
}
else {
window.document['adbVcmAd'].setAttribute('src', window.document['adbVcmAd'].getAttribute('src')+'&site_url='+encodeURIComponent(document.URL));
}
void(0);
var sl = _root.site_url;
I am able to get the site URL in IE, but I cannot get the site URL from users using Fire Fox.
If anyone has any ideas, please post a reply or send me an email.
Much Appreciated!
Edited: 01/24/2008 at 02:48:16 PM by Flasher37
View Replies !
View Related
ASP Referrer Variable
How come when I link from a .swf there is no Referer variable. I am linking to an ASP page????
Netscape sets the HTTP_REFERER, but IE does NOT. What do I need to do to get IE to set the variable.
View Replies !
View Related
Hiding Referrer Url
Hello All,
I have been doing freelance work for a client over the last year, who has asked me NOT to post any of that work on my portfolio, since his clients will see my portfolio's address in their referrer logs (with google analytics.) However, I found this article:
http://kb.adobe.com/selfservice/view...1712&sliceId=2
Which seems to state that flash can't publish referrer information. If this is true, great, but I'd like to offer my client some way to know for sure that my site isn't showing up in these referrer logs. Is there a way I can do this?
Thanks!
View Replies !
View Related
Referrer And Browser Type
Hey guys and gals, My first post here, Im very new to actionscript, my experience lies in php/ajax/js... so please bear with my ignorance.
I am wondering if its possible to detect browser type and refferring URL with as3. I am aware of how to accomplish this in php and js but unfortunatly in this particular instance that will not do.
Code examples, function names, or just a point in the right direction would be much appreciated.
Thanks,
DrDankMendez
View Replies !
View Related
Default HTTP Referrer
What is flash ment to return as HTTP Referrer. As under IE7 with Flash 9.0.48, i think, its returning the flash app address (ie *player.swf) and under Mozilla based apps and Opera with Flash 9.0.48 it returns the webpage address containing the flash app (ie *player.htm) Which of these is it ment to return, or which do different versions of flash return if not overridden.
View Replies !
View Related
Flex Framework Caching And Referrer
Something odd just happened. I enabled Flex framework caching in my
project and all of a sudden my url changed to have /[[dynamic]]/1 or
/[[dynamic]]/2 after the swf. After beating my head against the
keyboard a few times I came up with a wild theory. Could it be related
to the framework caching? So after a quick recompile... sure enough it
was gone. Anyone have any info on why I am getting this?
View Replies !
View Related
Weird Loader Behavior For FF2, Headers, Referrer...
Hi All,
So the first strange item is that in Firefox when you make a loader request:
Code:
var loader:Loader = new Loader();
var request:URLRequest = new URLRequest('someurl');
loader.load(URLRequest);
the referrer isn't sent, but only for Firefox this works fine in Safari and IE. We figured thats just some stupid thing in FireFox and we moved on, we'll just make our own X-OurReferrer header. Bzzzzt.
Code:
var loader:Loader = new Loader();
var request:URLRequest = new URLRequest('someurl');
request.requestHeaders.push(new URLRequestHeader('X-OurReferrer', 'whatever');
loader.load(URLRequest);
The new header isn't sent in FF, wtf? After some poking around and copying the example in the helpdocs line for line I came to these discoveries:
1) You _have_ to do a POST for the header to be passed, GET won't pass it.
2) You _have_ to pass some arguments along, even if its just foo=bar, request.data = new URLVariables("foo=bar");
If you don't do both of these in FF2 your custom header isn't sent. Plus, get this, if you do do a POST and pass arguments along then your Referer and Cookies headers are finally now passed in FF2.
So the questions are:
-Why does FF2 not pass the referrer header always
-Why do you have to do a POST _and_ send arguments if you want to pass custom headers
-Why do you have to do a POST _and_ send arguments if you want the referrer and cookies headers to go in FF2?
Thanks for any help, these seem like silly requirements.
Sam
View Replies !
View Related
Small Flash File Loading Into HTML - Weird Sporadic Loading
Hi,
I'm hoping someone can help...
I have a very small Flash file (less than 5k) loaded into a table cell of an HTML page .
On occasion (on Mac/IE) there is a flash of white appears in the table cell before the file starts. On other occasions only a portion of the file appears (while the rest of the cell is white). And at other times, none of the file appears (the table cell that it's in is appears as white).
The background of the flash file is orange (not white) so I guess that means that none of the Flash has loaded. Sometimes when I refresh the page, the problem resolves itself.
Does anyone know what the problem may be? Is there any sort of pre-loading JavaScript that would help, even though the file is very small to begin with?
Thanks for any help, I really appreciate it!
View Replies !
View Related
Loading Flash AFTER Html Finishes Loading - IE Not Working
Im using some javascript to load a flash music player after the rest of the gfxs have loaded (IE was trying to load the first song while the gfx were loading & was slowing the page load down to a CRAWL) ... I found this code on the web & THINK I did it right.
in my onLoad I have window.document.soundPlayer.setVariable('loaded', 'true');
my object is named soundPlayer
Then in my Flash (using MX if it matters) I have 3 blank keyframes at the beginning of the movie. In the first keyframe I have a dynamic text box called loaded with the var set to false. The in the 2nd keyframe I have this actionscript:
if (loaded == "true") {
gotoAndPlay (4);
}
then in the 3rd keyframe I have this code:
gotoAndPlay(2);
It works fine in ALL browsers except IE. In IE the movie is just sitting there flashing on & off even when everything else has loaded. I cant actually tell if its working right in the other browsers because Im testing it on my local machine but it loads & starts playing .... more than I can say for IE!
Any ideas on this one? Im not a flash guru ... only use it when a customer cant live without it! Thanks
View Replies !
View Related
[Flash Loading Options]How Can I Prevent Flash From Loading?
Hello,
I'm new to this formum so hello every one (and sory for my bad english )!
I have a problem regarding loading a certain set of frames and prevent flash from downloading the rest.
I'm making a download and upload tester and was hoping to do it all in AS.
I'm hoping to get an answer to the question: is there a function which I can call lets say on button click/event ocurrance which will stop furthere downloading the aplication from a server.
The idea is very simple, I tried to put a big jpg in the last frame of the movie, and based on the information from getBytesLoaded , getBytesTotal and getTimer i would specify the speed of my internet connection.
Pleas help.
Note:
For those who would like to implement the bandwidth tester, I had several problems which I solved:
- forced re-downloading by getting a random number in php and passing it to the flash by specyfying the embed src as "flashmovie.swf?rand=some_random_number:"
-problem with units (flash has the function getBytesLoaded() which specyfi the ammount in B of the WHOLE application so I had to convert B to bits (the ammount of getBytesLoaded times 8 ) .
the efects are on: http://student.agh.edu.pl/brunar/speed2.php
not much but I will be agging graphics and better functionalyty soon
View Replies !
View Related
Help With Loading Flash Page Loading Clocks
Hello users i don't really know alot about flash. What happens is when i click on the link to open one of my .swf it takes about 6 seconds but all you see is a white box until then. How do i put one of those loading clocks where it has loading 1-100 % until my flash is ready to be viewed.
Thanks guys
GBRadio
wakeup.to/gbradio
View Replies !
View Related
XML Loading In Flash, Not Loading In Browser
Could anyone give me a clue as to why when i test a movie in Flash my XML document is found and successfully loads (xml.status returns 0). However when the swf is used inside a browser, the swf can no longer find the XML document ( or something else ) ???
is there a way to pipe XML.status into a javascript function or some way to see what is going on inside of the browser environment?
thanks for any help.
-
View Replies !
View Related
Flash 8 Loading External HTML Pages Inside Flash Window
Hi
I was wondering if it is possible to load a google map into a window within my contact page that one can scroll about like you can in actual google maps. At the moment i just have a static picture that when you click on it it takes you to a seperate page. But i dont want to clog my site up with extra graphics if i can avoid it.
Many thanks
Greg
View Replies !
View Related
Loading External Flash Files Onto Flash Website
I need help on how to load .swf files on a flash site as a portfolio section, each one will have their own image or animation. The way I want them is to when you change the pages it loads the next object rather than have it on the site and make the site file bigger to load than having it minimual. I found only one tutorial but it incorporates something I don't want and tried working around it to have it load under a frame (not animation frame but like picture frame) in a certain location.
View Replies !
View Related
Loading A Flash Movie Into An Existing Flash Screen
I would like to know how to call a flash movie into a window on an existing flash page, so that this movie does not have to be loaded with the initial flash page - as in the Font for Flash website advertised on this site. Also, I would like to know how to make it appear with a preloader with a percentage bar in it. I have Flash 5 and don't know very much about action scripts as yet.
View Replies !
View Related
Loading Techniques: Flash 5 & Flash MX Tutorial Question
Hello,
I am trying to dynamically load sound into my movie, but my problem is that when i follow this tutorial the sound doesn't play, here is a link to the tutorial:
http://www.kirupa.com/developer/mx/loading.htm
Now I don't understand what goes in the URL section of the code. Is this a place for a target path like in HTML or a place for a linkage ID name. If it is a place for the linkage ID, when I set the properties to export for AS and set in export in the first frame my preloader doesn't preload until after the sound is already loaded. I hope that wasn't too confusing. And I hope someone can help. Thanks in advance.
drumrby
View Replies !
View Related
Loading Techniques: Flash 5 & Flash MX Tutorial Question
Hello,
I am trying to dynamically load sound into my movie, but my problem is that when i follow this tutorial the sound doesn't play, here is a link to the tutorial:
http://www.kirupa.com/developer/mx/loading.htm
Now I don't understand what goes in the URL section of the code. Is this a place for a target path like in HTML or a place for a linkage ID name. If it is a place for the linkage ID, when I set the properties to export for AS and set in export in the first frame my preloader doesn't preload until after the sound is already loaded. I hope that wasn't too confusing. And I hope someone can help. Thanks in advance.
drumrby
View Replies !
View Related
Flash Begginer - Loading Flash Site...
Yes, I made a flash loading animation of my site (in flash) and I'm
interested how
can I make make that animation loop till my site completely loads in
my web browser (Internet Explorer).
Yes, how can I do it and do you need to put any actionscript to make that happen?
View Replies !
View Related
Flash Progress Bar When Loading Non-flash Content
Hi folks, I have a question and someone might be able to help...
Basically I have a standard HTML site which contains loads of large images. Is there any way I can use a flash progress-bar to show how much of the non-flash content has loaded before entering the site. When all of the large images are cached, then redirect to the homepage.
I know I can do this with a Javascript loading bar, but I need the loading page to be much more complex than a simple prog bar so it really calls for a flash movie.
Any help would great, thanks.
View Replies !
View Related
Loading A Flash Intro Into A Flash Header ?
hey people,
i've currently got a flash header for my site, and i want to add a flash intro to the header, which is only activicted when the user clicks a button.
So once they click the button to start the intro, it then goes to an intro which loads seperatly to the flash header - once loaded the flash intro then plays - once the intro has finished it then goes back to the flash header..
I've found an example of exactly what i want at http://www.hostrocket.com - the normal header will load up, then it has a button saying 'activate launch sequence' - you click on the button, it then loads the intro, pays through the intro and then goes back to the normal header once the intro is finished.
If anyone could help me out with how this is done, it would be much appreciated. Or if you could direct me to a tutorial or a source file.
Thanks!
View Replies !
View Related
White Flash Before Loading Flash Movie
I'm not sure if there is an easy answer to this one...
I have a complete Flash website (www.driversedge.org) The background color is grey. When you first go to the site the index.html page loads the grey background, but there will be a quick white flash in the swf file.
Is there any way around this??
Here is an example of a site that does not do this. It seems to keep the red background. No white flash.
http://www.thelodgeatsonoma.com/
I would very much appriciate any help. Thanks.
View Replies !
View Related
Flash Files Not Loading Within A Flash File
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
*** Security Sandbox Violation ***
SecurityDomain 'http://www.djzyx.com/resume/8009-10.swf' tried to access incompatible context 'file:///C|/Documents%20and%20Settings/Sebastian/Desktop/photowebsite/photowebsite.swf'
hi there, i made a little photo portfolio of my work. I made the main file to guide you through my photo work. When you click on each small photo it enlarges and makes it bigger. It basically guides you to each .swf file and loads it in a box. But for some reason when i point the main file with all the small pictures, it spits out that error... it works one my computer in a directory. but when i upload it to my server www.djzyx.com/resume/ it doesnt want to work...
any ideas
thanks in advance!!!
View Replies !
View Related
Q On Loading Techniques: Flash 5 & Flash MX JPEGS
Hey can someone tell me where everything goes? and i was also wondering if i can make the jpeg clickable (when its clicked on it will open a _blank window with the bigger picture)
PHP Code:
_root.createEmptyMovieClip("container",1);
container.loadMovie("photo.jpg");
container._x = container._y = 50 ;
_root.onMouseDown = function () {
startDrag ("container",false) ;
}
_root.onMouseUp = function () {
stopDrag () ;
}
the file name is 1small.jpg and the bigger file is called 1big.jpg
View Replies !
View Related
Problem: Flash 8 Loading Flash 7 SWF'd Media
Is anyone else experiencing the problem of Flash 8 loading Flash 7 compiled media via loadClip? The media just doesn't load at all (v7 media are very simple vector graphic files).
But if I make the basemovie Flash 7, then it is fine (or export the old v7 media as v8 files - this works too).
Any suggestions?
View Replies !
View Related
Flash 8 Xml Flash Slideshow Loading Problems
Hi to everyone
Big hi and thankyou to Kirupa you have helped with code for flash in the past. Your the best.
Ok guys i have a real dilemma. Dont know where to start? but i'll try. Im fairly new to flash im trying to load xml slideshow into flash now i can get the slideshow movie to load into my site ok. But the problem is that when its loaded and say a user clicks the button 2 or 3 times like some people do the xml slideshow has a view list switch at the top with gallerys that keeps geting longer every time a you click the button. Now ive been in touch with DWUser and they have given me some ideas of code but it still does the same thing please can anyone help? code i have is below for a button allthough im trying to load several swf's each with there own button into a movie clip?
Thanks
Danny
nav_bt.onRelease = function() {
// load in the low res swf
loadMovie("lover.swf","plate");
};
nav2_bt.onPress = function () {
loadMovie("lover1.swf","plate");
};
nav5_bt.onPress = function () {
loadMovie("lover2.swf","plate");
};
nav6_bt.onPress = function () {
loadMovie("lover3.swf","plate");
};
nav8_bt.onPress = function () {
loadMovie("lover4.swf","plate");
};
View Replies !
View Related
Flash Player 9 Not Loading Flash 8 Files ?
hi , im sorry if this has been asked before , the database gave me an error while searching ...
i only have access to flash MX 2004 Professional and need to create a very basic site for my game server.
when loading the page with flash player 9 installed all i get is a blank white .swf file and nothing happens , no loading whatsoever , anyone know if i can still build a flash site in flash 2004 ?
did some thinking and is it the .html page it is embedded on ? do i have to change the html code for script class , its on javascript now , and is the same as it was when flash 8 was working back a year or two ago.
View Replies !
View Related
Flash Satay: Flash Not Loading Properly
I have just used the Flash Satay method of putting my swf into my php page and all that shows up is a white space that is the size of my flash movie.
What part of it could I be doing wrong.
Right now I have added the embed tag just to get it up and will switch it out once I have figured out this problem...
The code I was using was this:
<object type="application/x-shockwave-flash"
data="c.swf?path=mediaPlayer.swf"
width="780" height="240">
<param name="movie"
value="c.swf?path=mediaPlayer.swf" />
</object>
and I have a c.swf that calls upon this:
_root.loadMovie(_root.path,0);
in the first frame.
Yet all I get is a white space that is the size of what my movie is supposed to be.
Any idea what is not working?
Thanks,
Brad
View Replies !
View Related
Flash Wrapper Quick Flash Loading
I've got 12 flash animations used throughout my site (each 150 X 150 pixels). Each one is 5 to 35 KB in filesize. I've read that the best way to serve the animations is to embed a <1k animation. That small file would be coded to load the actual swf file.
My knowledge of actionscript is rated at zero, and I have had difficulty finding an answer to my simple question.
View Replies !
View Related
Loading Flash Within A Flash Movie?
I've seen many sites that are by themselves Flash, but then when you click on links within that Flash movie, another Flash movie loads from inside one of its windows, complete with its own "Loading" dialogue. Basically I'm looking for help on how to have the main movie load other movies that each have their own built-in preloader (or perhaps they all feed into one single preloader script?).
Can someone point me to any tutorials on this concept? I understand that Swish can do this by using something called "sprites," but I have Flash MX, and was wondering if there's a clear procedure for obtaining the same functionality.
Any help or specific URLs to tutorials would be greatly appreciated.
View Replies !
View Related
Flash 6 SWF Loading Flash 5 SWF Problems...
I'm developing an interface for a series of flash demos a client has, and am running into some problems:
Here is the beta interface:
http://www.bleedingtree.com/idologic...ogicComp2.html
The interface is at 28 FPS, but the demos were made at 10 FPS. I know I'll have to throttle it down a notch
Anyway, if you go to the "please select demo" and then CPanel > rvskin, the nav buttons will load in the lower section. Only the first button is active currently. Select it to load the demo.
When the demo loads, the scrubber bar at the bottom (which is embedded in the demo) is moved all the way to the right, not allowing the user to slide through it.
Is there any way to work around this?
It's bugging the client and myself.
Thanks guys,
View Replies !
View Related
Problem Loading Flash 5 Swf In Flash 8
The problem is this:
I am trying to load a flash 5 swf movie using the loadMovie function.
The problem is that it loads on my computer, but it doesn't on the client's computer! I have Flash Player 8. Could this be a problem? Could it be that he's having an older version of Flash player? I asked him and he didn't answer me yet. So I'm also asking you...
Do you know what the problem might be???
Here's the code...
loadMovie("game.swf", "gameHolder_mc");
right, not that complicated! :) I can't see why it would work on ONE computer and NOT WORK on ANOTHER.
Please, can someone help me?
Thanks
View Replies !
View Related
Loading Flash 6 Swf Into Flash 5 Main Swf
I have heard that if you load a .swf published at Flash 6 into a main .swf published at Flash 5 then the files are all changed to Flash 5 because of the main .swf.......
------
If so...
I have put a component scrollbar in the externally loaded .swf, the output error box when viewed in flash says that only flash 6 can make this work so I publish it at Flash 6. Then I go to my browser and view it when brought into the main .swf and the scrollbar still works great...
Is this just because I HAVE flash 6 installed on my computer or will it work for ppl with Flash 5 since my main .swf is flash 5?
Sorry for the long question :c)
~~ Serertha
View Replies !
View Related
Loading Flash 6 Swf Into Flash 5 Main Swf
I have heard that if you load a .swf published at Flash 6 into a main .swf published at Flash 5 then the files are all changed to Flash 5 because of the main .swf.......
------
If so...
I have put a component scrollbar in the externally loaded .swf, the output error box when viewed in flash says that only flash 6 can make this work so I publish it at Flash 6. Then I go to my browser and view it when brought into the main .swf and the scrollbar still works great...
Is this just because I HAVE flash 6 installed on my computer or will it work for ppl with Flash 5 since my main .swf is flash 5?
Sorry for the long question :c)
~~ Serertha
View Replies !
View Related
Loading Flash Inside Of Flash...?
I want to be able to load a flash site and then clicking on a button would make a certain area display, but that content wouldnt be loaded yet, not until the user hits the button. Like frame style HTML sites, where you have a frame with buttons, and a main frame with content. How do I get it to do this without loading it all upon entering the movie (page).
This seemed very simple till I actually got down to it. I am sure it is really simple in the long run, just cannot figure it out. Most sites are like this and one example would be 2a of course. Eagis is another.
Can anyone help me...?
View Replies !
View Related
Flash 6 SWF Loading Flash 5 SWF Problem?
I'm developing an interface for a series of flash demos a client has, and am running into some problems:
Here is the beta interface:
http://www.bleedingtree.com/idologic...ogicComp2.html
The interface is at 28 FPS, but the demos were made at 10 FPS. I know I'll have to throttle it down a notch
Anyway, if you go to the "please select demo" and then CPanel > rvskin, the nav buttons will load in the lower section. Only the first button is active currently. Select it to load the demo.
When the demo loads, the scrubber bar at the bottom (which is embedded in the demo) is moved all the way to the right, not allowing the user to slide through it.
Is there any way to work around this? Is it a v5 into v6 problem or a "user error" ? The SWFs are loading into a MC, not a level.
It's bugging the client and myself.
Thanks guys,
View Replies !
View Related
Loading An MP3 In Flash?
How would I load an MP3 from a set directory and play it when a user clicks a button?
Also... if it isn't too much trouble is there a way I can put a preloader in it too?
(I consider myself a bit over the newbies when it comes to actionscripting in Flash 5... )
Any help would be appreciated... I need to try and get this done tonight...
Thanks,
ICCold
View Replies !
View Related
Flash Loading
Is there any way to stop the swf 'flashing' as it loads into a page? I sometimes get a white box before the movie loads up. (I use dreamweaver to build my pages).
View Replies !
View Related
|