Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








Tracking "page" Loads Within My Flash MX Website?


I'm just getting into Flash and this may be a very basic question, but if somebody could tell me how to do this, that would be great.

Is there a way to track which "pages" (keyframes) a visitor to your site visits?

For instance, say I have www.abc.com, and there are buttons for 15 different "pages"/areas of the site the visitor can go to, and they all fall under www.abc.com (in other words, the URL doesn't change), how can I track where the person went?, and also, is there a way to clock how long they were on each "page"/area of the site?

Thanks for all of your help.

Justin




FlashKit > Flash Help > Flash MX
Posted on: 12-20-2002, 03:45 PM


View Complete Forum Thread with Replies

Sponsored Links:

Tracking "page" Loads Within My Flash MX Website?
I'm just getting into Flash and this may be a very basic question, but if somebody could tell me how to do this, that would be great.

Is there a way to track which "pages" (keyframes) a visitor to your site visits?

For instance, say I have www.abc.com, and there are buttons for 15 different "pages"/areas of the site the visitor can go to, and they all fall under www.abc.com (in other words, the URL doesn't change), how can I track where the person went?, and also, is there a way to clock how long they were on each "page"/area of the site?

Thanks for all of your help.

Justin

View Replies !    View Related
Website On CD : What To Do With Internal/external Flash Loads?
Hi,

I would like to burn a CD of my website, whose structure is more or less :
-a main swf/html file(opening full screen) which loads other swfs if itself
-this swf file also opens swfs in EXTERNAL windows (opened with restrictions on window size)

My main question is,
in what format should I burn this ? Is it advisable to export to .exe ? Would there be a problem opening pup-ups then ?
Otherwise, is it better in html/swfs ? I was trying to open pop-ups at my local folders, and there was a problem opening them(I was unable to see the content of my file, but it works right on the net)

Thanks for the help,

Manojo

View Replies !    View Related
Page 2 - Tracking User Interaction - Flash Menu
Hi, try this out:

Code:


Pos1MC.bar.onRelease = function() {
if (ui.profileMC == undefined) {
xTargetPos1MC = Pos1Out;
Pos1MC.yTargetTitle = TitleDwn;
var amc = ui.Pos1MC.createEmptyMovieClip("profileMC", 1);
amc.createEmptyMovieClip("holder", 1);
amc.createTextField("msg_txt", 2, 10, 200, 200, 50);
amc._x = -530;
amc._y = -197;
amc.holder.loadMovie("profile.swf");
amc.onEnterFrame = function() {
if (this.holder.getBytesLoaded()>=this.holder.getBytesTotal()) {
delete this.onEnterFrame;
// get rid of the loading progress textfield
this.msg_txt.removeTextField();
} else {
// show how many bytes have been loaded
this.msg_txt.text = this.holder.getBytesLoaded()+" loaded";
}
};
} else if (this._x>=pos1In+1) {
// if already created and loaded, just set it visible
Pos1MC.bar.onRollOver = function() {
ui.xTargetPos1MC = pos1In;
ui.Pos1MC.yTargetTitle = Title1Up;
ui.profileMC._visible = false;
};
} else {
Pos1MC.bar.onRollOver = function() {
ui.xTargetPos1MC = pos1Out;
ui.Pos1MC.yTargetTitle = TitleIn;
ui.profileMC._visible = true;
};
}
};


When your coding within flash you can use the syntax checker. It's the little blue tick next to the format button, just above the code editor window. That pops up a window telling you what line the problem is on. Anyway the above is error free although it's hard to tell if the way I've worked it is how you want it!...

Lauri : have you tried contacting the forum admin? They might of stumbled on your problem before and may know a solution...

View Replies !    View Related
Flash Page Stalls Before It Loads
I have a site, html://www.nicolephoto.com, of which I have used the Flash Deployment Kit to create a index that either directs the user to the Flash Page (index2.html, if they have the Flash 6.0 player installed) or to a page telling them to go and get flash player. Ok, that works fine, but when I goto www.nicolephoto.com/index2.html it lags before anything loads, I do have a preloader on the movie, and some other things besides the movie, but they do not apear until the movie apears. Any idea's? Could you guys go and check and see if it is possibly just my terminal, Thanks for any help.

Please be patient with the load on the page, it takes a while ...

View Replies !    View Related
Flash Outros Before Next Page Loads ? ? ?
Hey everyone I have a question that I hope I can explain properly. I am fairly new to flash so the simplest answer would be much appreciated. Heres the deal:


When I build Flash sites I make a main page that has an empty interface with buttons. I assign actions to the buttons to load the movies into the interface. I am having no problems doing that but I dont want all my flash pages to only have an introduction to each page. How would I have a movie load on the HOME page for example and hold until the viewer clicks any of the other buttons. Then HOME page plays an outro then the next page selected loads.


If the above is confusing you: say the HOME page fades in when it loads. The user clicks the ABOUT button I want the HOME page to fade out and the ABOUT page fade in. When the viewer clicks CONTACT the ABOUT page fades out and the CONTACT page fades in.


Thanx for your help...I can post an example if this makes no sense whatsoever...

View Replies !    View Related
Loading Flash After Page Loads
I've been working on this problem for a few days and I can't find any information. What I’m trying to do is load a .swf file after the rest of my page has loaded.

for example, I have been trying to place a general placeholder into a web page (either a small image or small flash file of the same proportions) then, once the page has loaded, my flash movie will begin to load (this would be indicated by a progress bar).

The reason I’m doing this is to be modem friendly on my site. I’ve tried using several different types of javascript to write the code for the .swf file after the page has loaded (using the onload and other commands) but that will not work. I’m hoping there is a way to do this in flash.

any ideas?



QUICK SUMMARY: I want to create a small flash move that will load another flash movie when the web page has completely loaded.

View Replies !    View Related
Page Freezes Until Flash Movie Loads
Hey,

I have made a Flash image gallery that is working just fine. I'm preloading the thumbnails and loading the main images only when these are clicked for display, in order to save load time. The problem comes when the user configures say 100 images to be shown in the gallery. In this case the page containing the gallery freezes until all the thumbnails are loaded.

My question would be: is there any solution to load the rest of the page first? Or load everything in paralel assigning the page content a higher priority?

Many thanks in advance for any help!

View Replies !    View Related
Controlling How An HTML Page Loads That Has Large Flash File
I am intending on creating a pre-loader for this site but I wondered if there was any way that I could make the rest of the page load and then have the flash file load? The Flash file is about 400KB.

GrahamPackaging.com

Thanks

kdiff

View Replies !    View Related
Flash Popup Window Which Popsup When The Page Loads Amd Then Resizs Itself And Fit...
hi u are the only sorce of flash for me and i know this is a piece of cake for u guyz cos now adays every website is having this

flash popup window which popsup when the page loads amd then resizs itself and fit at a specified location on the webpage.

some site using this popups:

flipcorp (only popup)

ctcbahrain (only popup)

rediff.com this one has the flsh popup resizing on the top left side (if u cant see please keep refreshing as it is random)



please help me out or i will never learn this

thanks

bye

View Replies !    View Related
Flash Popup Window Which Popsup When The Page Loads And Then Resizes Itself And Fit..
Hi !

u are the only source of flash for me and i know this is a piece of cake for u guyz cos now adays every website is having this

flash popup window which popsup when the page loads amd then resizs itself and fit at a specified location on the webpage.

some site using this popups:

http://flipcorp.com/creatives/meBANK...ter/index.html

www.ctc-bahrain.com

www.rediff.com this one has the flsh popup resizing on the top left side (if u cant see please keep refreshing as it is random)



please help me out or i will never learn this

thanks

bye

View Replies !    View Related
HTML Page Opens Flash Site, Loads External Swf File
Ok, this is probably the weirdest question, and I have searched, but can't really find what I'm looking for...

I have an HTML page with buttons.
Each button needs to have a getURL to open the Flash site, but then somehow, needs to also load the appropriate swf into that Flash site...

My reasoning is because I have some scripts under my site that need to be in HTML (or PHP) for search engines, that way I don't have to do the whole site in HTML.. I hate having a HTML index page, but it's the only solution I could come up with. So, when a visitor selects any of the navigation buttons, I don't want them to have to select that button again, when the Flash site loads.

Anyone know how to do this for Flash 7 / AS 2.0? Or if there are any posts here about it?

thanx flashers!!!

View Replies !    View Related
Loads Right In The File, Not On Website
I have a list of games in a php file. I got everything working and when I run the file from my computer, everything loads. But when I uploaded it to my site, it won't display the list. It loads the file from a website so I know its not that, and I didn't put on any domain restricting script yet. I don't know for sure if it's just not loading the file (which i can't see why it wouldn't)or what. Has anyone had this problem before and managed to fix it somehow?

View Replies !    View Related
[F8] Help Me My Website Loads To Slow
ok i made me a flash website it looks good and all BUT IT LOADS WAY TO SLOW!!! will some one pls help me (i am on a standard DSL connection)

View Replies !    View Related
Opening New Page BUT That Page Loads In Behind The Page You Are On.
Is it possible to load a web page from an action script (just like when you click on a button to open a new page)

Basically I want to create a Flash banner and somewhere along the "movie" have it launch MY web page and have it load in the background, behind the browser that holds the banner.

BTW - I have the permission by the person who will host my banner.

I just have to make it work.

Can this be done???

And how????

Thanks in advance!

View Replies !    View Related
How To Get An Action To Start When The Website Loads
Hi

what is the best way to have an action begin when a page web page loads?

I have a Flip book component...i also have a asset cacher component that is supposed to load the flip book images to the users hard drive...i placed the asset cacher on the first page of the web site so when the user goes to view the flipbook the images are already cached and the book plays seemlessly...what would be the best wat to trigger the assest cacher...

i hope i have made some sense of whats going on here?

Ponyack

http://koocaa.com/resource/

this is a link to the page where i got the components from...

View Replies !    View Related
Image Loads Locally But Not On Website?
I have constructed a slide show viewer for use on a website. The swf loads jpeg images which are contained in the same directory. This works well on my local machine but when uploaded to a website and called up by an html file, the swf runs and shows the correct backgrounds but fails to load any jpegs. I assume that the problem is to do with the transfer of the variable 'Select_picture" into the loadMovie statement?
The following loop (step variable = pic_no) works locally but not on website:-

>>var Select_picture:String="Pic"+pic_no+".jpg";
>>var Select_mc:String="mc"+pic_no;
>>
>>this.createEmptyMovieClip([Select_mc], depthnow++);
>>loadMovie([Select_picture], [Select_mc]);

In order to prove that a picture could be loaded on the website, I simplied the code to :
>>loadMovie("pic1.jpg",[Select_mc]);

and this worked.

So, I tried to transfer the same string directly via the variable;-

>>var Select_picture:String="Pic1.jpg";
>>
>>loadMovie([Select_picture], [Select_mc]);

But this does not work.

Any suggestions would be greatly appreciated.

Regards
Dave

View Replies !    View Related
Page-Visitor Tracking Inside SWF?
Hi,
I was wondering if there exist any well working methods to track pages/areas inside a SWF file and then use some service like Google Analytics or Clicky with it to see what the site visitors watched inside the SWF file?

I've tried loading in empty html files with LoadVars on a per-pager basis but this seems not to work. The pages don't appear on the statistics.

Are there any other solutions for this age-old Flash-problem available by now?

View Replies !    View Related
Linking My Flash To Website Page
Hi I have been playing around with flash and made a banner for my website. How can I make the banner link to another page? Is it through flash or html coding on the actual site? Please let me know with elaborate details. Thank you so much.

View Replies !    View Related
Flash Website - Page Scrolling?
Hi,

I creating a Flash website in Flash 8. This is my first full flash site so needless to say, i am running into some problems. I have a row of buttons that when clicked on, will activate a certain movie. For instance when you click on the "MAIN" button, i want a page to scroll out from the left and when another button("PROFILE") is clicked have that Main page scroll out to the right, and have PROFILE scroll onto the page. I know this is probably simple to do.

Attached is a copy of my fla.

Thanks for the help!

View Replies !    View Related
Is It Possible To Put An Html Page In Your Flash Website?
i wanna make a flash website but some pages need to be in html...is it possible to do that?

View Replies !    View Related
Scrolling Page In Flash Website
Hey... I am creating a flash website and would like to know some useful coding that would move the flash movie vertically only... if possible moving the foreground and background at different speeds for a nice effect. Can any1 help? Thanks

View Replies !    View Related
Possible To Password A Flash Website Page?
Is is possible to password a flash website page so that username and password are needed for access?

Is this something that can be created within Flash app itself or is third-party software needed?

Thanks.

View Replies !    View Related
VERY ODD -- MX 2004 Bug, GetURL Only Loads DARPA Website
I use Firebird (Mozilla) as my primary web browser. I just bought MX 2004 with Flash Pro.

In a movie loaded in either Flash Player, or tested in the Flash editor (as in, Ctrl-Enter), then no matter what the getURL is supposed to go to, a new Firebird window pops up and opens two tabs. The first one stays blank, and the second one loads the DARPA website. (Defense Advanced Research Projects Agency)

What gives? This is hilarious, but also kind of disconcerting.

View Replies !    View Related
Flash Website Page Blinks When Published..
Hi!
I have created a basic website in FLASH cs3 with 4 images. I have 4 buttons, and each image is in a movie clip and triggered by a button. Every layer has only one frame. I have not extended the timeline out.
When I test movie, everything is fine...but when i actually publish and go to the site, the images blink for a second before the page actually settles in.
Its like I have the opacity for the images at 100 for one frame and then down to zero for the next frame.
In actually, the images should all be at zero opacity until triggered.
Please help if you all have any suggestions.
As I said, the timeline is all on frame one.
THanks so much...IM pulling my hair out!

View Replies !    View Related
Flash Website Html Page Problem
Hi,
I've just uploaded a flash website. I embedded it into a dreamweaver html page and then uploaded the files through FTP. The website works fine but in order to reach the flash site/flash movie I must type the html extension after the main web address i.e. rather than simply typing www.tintedaudio.com I have to type www.tintedaudio.com/homepage.html. How can I change it so that it still acsesses the html file, but without me having to type its extension in the address. I hope that explanation isn't to confusing. Please help
thanks
neil

View Replies !    View Related
Flash Animation Website Opening Page
I am looking to have an opening page on a website that is a flash animation that will transition to a Dreamweaver webpage after about 5 seconds. I am realitivly new in this area and am not sure how to make this happen. Can anyone help?

View Replies !    View Related
Help With Flash Website - Dynamic Page Indicator
Hello All,

This is my first time posting here. I am new Flash and actionscripting, but I just want to say hi and thanks in advance for any help you all can provide. That said, here is the problem.

I have a website, basic overview. I have my main movie, which contains the logo and navigation. I have a blank movieclip created with actionscript that loads the individual movie swf files. That works fine.

What I want to do, and which I can't figure out is dynamically have the main navigation buttons' text indicate what page you the user is on. Right now the code is on each button instance, example:


Code:

//work button Definition
on(press){
if(_root.pageHolder != "work") {
_root.pageHolder = "work";
_root.mcContainer.loadMovie(_root.pageHolder+".swf", this);
//_root.work.gotoAndStop(2);
_root.setCurrentMarker();//this the line that calls the function for setting the page indicator
}
}
on(rollOver){
if(this._currentframe == 1){
this.work.textColor =0x000000;
} else {
null;
}
}
on(rollOut){
if(this._currentframe == 1){
this.work.textColor =0x707070;
} else {
null;
}
}
I posted the whole code because I have another question. Each button has the same code, just pointing to their respective pages.

Here is the code in the first frame for setCurrentMarker()n function:


Code:

var aMenu = new Array(home, jschaer, work, contact);

function setCurrentMarker(){
for(i=0; i<= (_root.aMenu.length-1); i++){
if(_root.aMenu[i] == pageHolder){
_root.aMenu[i].gotoAndStop(2);
trace("called if true");
} else if(_root.aMenu[i] == _root.pageHolder){
_root.aMenu[i].gotoAndStop(1);
}
}
}
so the variable aMenu holds the moveclip names of the buttons. pageHolder holds the the name of the current page that is loaded. Thats how I change the pages to be loaded. To explain, if you look at the button code, the text for each button is by default greay and when you rollover it becomes black and off and it becomes gray again. That is on the first frame. On the second frame the text is black.

In the code I tried to make the black dynamically, but it didn't work, so I settled for going to the second frame and stopping.

I am sorry this is long, do you understand what I am trying to do? Do I need to explain less, and how do you get those little scroll boxes where you can put code.

My second question(much shorter I promise). I guess its preference, but is it generally good to put the code on each instance of a button or put in in the main frame where your code lies. Is there any benefit either way?

Sorry for the essay,
Brian

View Replies !    View Related
Help With Flash Website - Dynamic Page Indicator
Hello All,

This is my first time posting here. I am new Flash and actionscripting, but I just want to say hi and thanks in advance for any help you all can provide. That said, here is the problem.

I have a website, basic overview. I have my main movie, which contains the logo and navigation. I have a blank movieclip created with actionscript that loads the individual movie swf files. That works fine.

What I want to do, and which I can't figure out is dynamically have the main navigation buttons' text indicate what page you the user is on. Right now the code is on each button instance, example:


Code:

//work button Definition
on(press){
if(_root.pageHolder != "work") {
_root.pageHolder = "work";
_root.mcContainer.loadMovie(_root.pageHolder+".swf", this);
//_root.work.gotoAndStop(2);
_root.setCurrentMarker();//this the line that calls the function for setting the page indicator
}
}
on(rollOver){
if(this._currentframe == 1){
this.work.textColor =0x000000;
} else {
null;
}
}
on(rollOut){
if(this._currentframe == 1){
this.work.textColor =0x707070;
} else {
null;
}
}
I posted the whole code because I have another question. Each button has the same code, just pointing to their respective pages.

Here is the code in the first frame for setCurrentMarker()n function:


Code:

var aMenu = new Array(home, jschaer, work, contact);

function setCurrentMarker(){
for(i=0; i<= (_root.aMenu.length-1); i++){
if(_root.aMenu[i] == pageHolder){
_root.aMenu[i].gotoAndStop(2);
trace("called if true");
} else if(_root.aMenu[i] == _root.pageHolder){
_root.aMenu[i].gotoAndStop(1);
}
}
}
so the variable aMenu holds the moveclip names of the buttons. pageHolder holds the the name of the current page that is loaded. Thats how I change the pages to be loaded. To explain, if you look at the button code, the text for each button is by default greay and when you rollover it becomes black and off and it becomes gray again. That is on the first frame. On the second frame the text is black.

In the code I tried to make the black dynamically, but it didn't work, so I settled for going to the second frame and stopping.

I am sorry this is long, do you understand what I am trying to do? Do I need to explain less, and how do you get those little scroll boxes where you can put code.

My second question(much shorter I promise). I guess its preference, but is it generally good to put the code on each instance of a button or put in in the main frame where your code lies. Is there any benefit either way?

Sorry for the essay,
Brian

View Replies !    View Related
My Website Starting Page ( And Some Flash Problems )
My website atm
URL has some major problems for starters the starting page sucks it is crap , i was wondering if someone cld help me with this ,

the actual website itself is badly put together on the face it looks ok but this causes the filesize to be much greater than it actually needs to be , this is because instead of making the buttons and the edge one separate thing and for each page only the centre change , i simply made the whole thing reload , even though u cannot see this it adds about 20k a time which adds up , also in my scroller i dont have a clue how to do it properly so i simply made it so the scroller takes you to a frame which has the text one click down then this is repeated , so again adds more size for each pointless page , i was wondering if someone cld show me how to make it more efficient ( actually explain steps how to do it rather than say the problems cos i already know what they are ) , well i know how just not actually how to do it in flash mx


pls someone help me!

View Replies !    View Related
Help Converting Main Page On Old Website To Flash Intro
dear all i am in desperate need of some help, me and a friend created a website last year just using html. As i was chosen to do the site i have been selected to update it with flash. I created an intro and have been trying to get it to load up as the first page to open with a "enter" link to the original site. I have looked through previous posts and tutorials but cant get to grips with it.
Can anybody help plzzzzz???????? west-ham-fan@ntlworld.com stupot06@yahoo.co.uk. stu_art2002@hotmail.com

View Replies !    View Related
Cant Interact With Any Flash Website Untill I Click Page
I noticed today that every flash site i have been on when the site intially loads it has a outlined border and the whole swf in the page is clickable.

Once clicked everything is ok, but i need to click the page first before i can interact with the content. This is everything from small flash banners to fully fledged flash sites. Has anyone else came across this today?

View Replies !    View Related
Link Flash Intro Page To Html Website
I have a Flash animation page that runs for about 20 or 30 sec. Once the animation is done playing I want it to automatically go to the home page of my website. Is there some code that I can use to accomplish this?

thanks in advance,
ar

View Replies !    View Related
Cant Interact With Any Flash Website Untill I Click Page
I noticed today that every flash site i have been on when the site intially loads it has a outlined border and the whole swf in the page is clickable.

Once clicked everything is ok, but i need to click the page first before i can interact with the content. This is everything from small flash banners to fully fledged flash sites. Has anyone else came across this today?

View Replies !    View Related
Link Flash Intro Page To Html Website
I have a Flash animation page that runs for about 20 or 30 sec. Once the animation is done playing I want it to automatically go to the home page of my website. Is there some code that I can use to accomplish this?

thanks in advance,
ar

View Replies !    View Related
Tracking And Displaying Mouse Cursors From Multiple Users On One Page
Think a multiplayer game, except this is tracking multiple mouse cursor positions on the page.

www.doodlenow.com is an excellent example of something I want to accomplish.

When a user logs on to my page, I want his mouse position to be visible to every other user on the site, and I'm not expecting more than 5 people on the site at a time.

Anyways, does anyone have any tips or tutorials or just a push in the right direction of how to accomplish this, or can provide a simple demo of even tracking one other persons mouse position?

Also, will I need any special server technology to do this? I know php and mysql will be used to track the user names and such, but other than that, tracking the actual mouse positions and displaying them to other users.....

Any help out here?

I'd really appreciate it.

View Replies !    View Related
The Way A Page Loads
does anyone know of the sequence in which a web page loads images, swf's, etc. is there anyway to control it?

View Replies !    View Related
Best Way For Multiple Page Loads?
lol!
what i'm trying to ask is i have a website and one of the pages is a lyrics page. 80% of the page stays the same and only a new lyrics/scrolling page pops up depending on what title you click. there are about 15 lyric pages to choose from.

right now i have the title/invisable buttons calling for a swf file that loads up. would it be easier to have all of the lyrics on different frames with stop actions and when the title/invisable button is clicked it goes to that specific frame???

the more you dive into a project the more you want to tweak it to make it work better!

View Replies !    View Related
[MX] Page Loads Slow
Hello. I am a photographer and I bought a flash site template and created my site, but as soon as I added my own music to the site, it slowed it down. I am trying to figure out how to speed it up without sacrificing the music. I'm hoping there is some way to make each song load seperately while the page is already up. Someone had mentioned a 'pre-loader' but when I looked this up all I found was the 'loading %' and I already have one of those.

The page is http://clareheggphotography.com

Also, please be gentle (and act like you're talking to an idiot here) I'm a flash virgin.

Thanks,
Clare Hegg

View Replies !    View Related
Can You Check To See If My Page Loads?
for some reason it is not loading (it gets to 97% and stops) on my work computer, a 400-something mhz compaq. i haven't tried viewing it on another browser since i uploaded it to my server, but i was able to successfully preview and load the movie in safari when it was just on my hard drive. agh,!

the temporary file is located here:

http://sonmi.150m.com/03.html

View Replies !    View Related
Can You Check To See If My Page Loads?
for some reason it is not loading (it gets to 97% and stops) on my work computer, a 400-something mhz compaq. i haven't tried viewing it on another browser since i uploaded it to my server, but i was able to successfully preview and load the movie in safari when it was just on my hard drive. agh,!

the temporary file is located here:

http://sonmi.150m.com/03.html

View Replies !    View Related
Loading MC After Page Loads
can anyone see why this wouldn't work?

i'm trying to create a tiny swf file that would load a larger file once the rest of the html page would load.

i can get this to work if i use the loader component and change the actionscript to autoload=true once mcpercent ==100. but for whatever reason i can't get anything loaded into myLoader_mc.


ActionScript Code:
onClipEvent (load) {
    mctotal = _parent.getBytesTotal();
    mcloaded = _parent.getBytesLoaded();
    mcpercent = Math.round((mcloaded/mctotal)*100);
    if (mcpercent == 100) {
        myLoader_mc.loadMovie("myFile.swf");
    }
}

View Replies !    View Related
How Can I Create A Website Load Page By Page ?
Dear All,

In Flash Website, I alway see they load 1 page in initial. If you click in menu and 1 page is loaded.

I created a web with load all page in initial.

I want to create a web that only load 1 page in initial and if you click on web's menu then another page is loaded.

So How can I do that?

Plz help me.
Thank you so much

Best regards,

View Replies !    View Related
Steady Music Over Page Loads...
Hello,

I just finished the entire public area of my site with one small problem. The finishing touches were to be a music tuner in flash that one could choose several different loops from while browsing the site. While this is easy to do within frames - My site isn't in frames. It's html/php/flash hybrid - minimal on the flash (header and menus).

So...my question is - is there a way to have a .swf file play steady music through page loads? Or is there a trick to doing this? This is the ONLY thing I have left to do, so please, any help is greatly appreciated!

Brando

View Replies !    View Related
Autoplay Flashtrak When Web Page Loads?
Hello,
I'm using macromedia mx (not flash) and I'm adding the standard flashtrak into my html. It works great! The thing is: how do I tell the html (script)? to autostart the flashtrak with the sound fine when the web page loads?

I searched everywhere, and all I see is answers when you have the flash builder: which I don't have...

Any help would be great!

Thanks

bajanman

View Replies !    View Related
Formdata To Asp. Asp Page Loads Into Browser
Using Flash MX forms.
Sending form to asp page and on to database.
My code works if I use this code:

formdata.send("AddNew.asp","_blank", "post");

However, I don't want the asp page to load into the browser. Have tried substituting "_blank" with "0" but no luck.

Any ideas.

Thanks

View Replies !    View Related
Refreshed Images For Page Loads.
This is a similar question to the one below regarding song.
How would you set up your files to load a different image everytime the page loads or gets refreshed. For example I am using five pictures labelled 1.jpg, 2.jpg etc..
thank you for your help

For example see
KCC website

View Replies !    View Related
Next Image Every Next Time The Page Loads
i have an image on my main page which i want to change everytime the page is reloaded.

in other words, i have abt 3-4 images, which should show up in the same space, one at a time, every time the page reloads.

how do i do that?

View Replies !    View Related
Home Page Loads Cache
A general question.

When you type in the URL address it automatically defaults to the index.html page, right. Well, when I update that file on my server, often I will get the older, cached, file even though the updated one has a new date.

Any suggestions?

Also, can anyone tell me the difference between an .htm file and an .html file

View Replies !    View Related
Swf When Loads Automaticaly Goes To An Html Page ?
hello there,

i have done a small movie in a site and i want when this movie finished to load automaticall another html site ...

i tried with get URL but it doesnt work...
???

View Replies !    View Related
White Boxes When Page Loads
hi! can someone please tell me how to eliminate the white boxes that appear when each of my flash pages load. i have imported the flash into dreamweaver and published it from there. I want a black background when the pages load, but this white placeholder box always appears. anyone? thank you!

View Replies !    View Related
To Only Show The Animation When It Loads The Page
I have a problem, I need to only load my animation when I load the principal page, e in link in the way or end it link it goes to have "&1ST=1", the other pages do not go to have this, then the animation would be stop in a frame, example 35.
a person of the work it made something in Javascript here, to show popup one time, only in the page that will have this "&1ST=1".

Code:
sPag=document.location.href.toUpperCase();
if(sPag.indexOf('1ST')>=0)

It would have to make this in AS? but without using the SharedObject.
if the flash to read in link "&1ST=1", it shows the animation of frame 1 to the 35, but if in link it will not have the "&1ST=1", it is stoped in frame 35????

Sorry about my English.

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved