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




Trouble With Flash Template



Hi there,

I'm new and having a problem with a Flash template I have. Well a couple of problems. First of all, it came as a menu, and a seperate content file which has an animated intro. Once the intro finishes, it is static.

What's the best way to link these together as a website? I think it would be better to have the navigation as flash and the content as HTML once the intro finishes, but I don't know how to do that, or if it's possible.

Secondly, the menu doesn't have buttons that I can go in and edit for the different links.. instead it has a huge chunk of code in the main stage part. The menu looks good and seems to be a working navigation, but the links on it don't work when I publish the file and click the buttons. Below is the code


Quote:






//import the tween and easing classes
import mx.transitions.Tween;
import mx.transitions.easing.*;
//total number of tabs, default: 7
var totalTabs:Number = 7;
//tracks the x value for the tab generation, default: 0
var tabPosition:Number = 0;
//set the starting left position of the first tab, default: 50
var tabStart:Number = 50;
//set the spacing inbetween tabs, default: -20
var tabSpacing:Number = -20;
//set the tab highest position, default: 13
var tabTop:Number = 13;
//set the sitting/middle position, default: 26
var tabMiddle:Number = 26;
//set the text link's highest position
var txtMiddle:Number = tabTop+tabMiddle-3;
var txtTop:Number = txtMiddle - tabTop;
//set the bottom position - best to leave alone, default: 61
var tabBottom:Number = 61;

//define what the link text should say
var linkArray:Array = ["home", "biography", "press", "new releases", "sign up", "shop", "contact"];
//define the website urls
var urlArray:Array = ["home.html", "biography.html", "press.html", "newreleases.html", "signup.html", "shop.html", "contact.html"];
//track the depths so we can put tabs behind one another
var depthTracker:Number = 999;
//**dynamically create all tabs **
//start off with 1, as long as 1 is less than the total tabs, carry on
for (i=1; i<=totalTabs; i++) {
//grab the tab movieclip and put it on our stage with a unique name
this.attachMovie("tab","tab"+[i],this.getNextHighestDepth());
//reduce the last depth to make the tab lower in depth
_root.depthTracker -= 2;
//use that value to swap the new tab so it's behind the one before
this["tab"+i].swapDepths(_root.depthTracker);
//** dynamically create our text with 50px wide and 50 high
this.createTextField("linktxt"+[i],this.getNextHighestDepth(),0,0,50,50);
//* setup the styling values for the link text

var my_fmt:TextFormat = new TextFormat();

this["linktxt"+i].autoSize = true;
//we need this to be declared for reference in our onRelease function
//basically, it keeps track of which button we're referring to...
this["tab"+i].i = i;
//..same for txt
this["linktxt"+i].i = i;
//assign the text we defined above in our list. whichever 'i' we're in will correspond
this["linktxt"+i].text = linkArray[i-1];

my_fmt.font = "Avenir";
my_fmt.bold = true;

this["linktxt"+i].embedFonts = true;

this["linktxt"+i].setTextFormat(my_fmt);

//we don't want it selectable, it also lets us use the rollOver effects
this["linktxt"+i].selectable = false;
//define the width of the tab to center it later on
var tabWidth = this["tab"+i]._width;
//define the width of the txt to center it later on
var txtWidth = this["linktxt"+i]._width;
//animate the tab(s) coming in from the bottom
var tabLoad:Tween = new Tween(this["tab"+i], "_y", None.easeIn, tabBottom, tabMiddle, 6, false);
//..same with the text
var linktxtLoad:Tween = new Tween(this["linktxt"+i], "_y", None.easeIn, tabBottom, txtMiddle, 6, false);
var linktxtLoad2:Tween = new Tween(this["linktxt"+i], "_alpha", None.easeIn, 0, 100,20, false);
// just in case the particular tab's depth is needed:
var tabDepth:Number = this["tab"+i].getDepth();
//** if the tab is set to 0, that means its the first tab created
//** so set it to tabStart (0 by default)
if (tabPosition == 0) {
this["tab"+i]._x = tabStart;
this["linktxt"+i]._x = tabStart + tabWidth/2 - txtWidth/2;
this["linktxt"+i]._y = tabMiddle+tabTop;
//redefine the tabPosition each time, so we can place the next tab properly
// ! including the tabstart position or else the first tab won't sit right
tabPosition += this["tab"+i]._width+tabSpacing+tabStart;
} else {
//if it's not 0 then set the tab's x to whatever the tab position should be
this["tab"+i]._x = tabPosition;
this["linktxt"+i]._x = tabPosition + tabWidth/2 - txtWidth/2;
this["linktxt"+i]._y = tabMiddle+tabTop;
// again, store the position for the next tab created
tabPosition += this["tab"+i]._width+tabSpacing;

}

// rollover the this unique tab and..
this["tab"+i].onRollOver = function() {
//move it from the middle position up to the top
var myRollOver:Tween = new Tween(this, "_y", None.easeIn, tabMiddle, tabTop, 3, false);
var linktxt = eval("linktxt" + this.i);
var myTxtRollOver:Tween = new Tween(linktxt, "_y", None.easeIn, txtMiddle, txtTop, 3, false);
};
//on roll out
this["tab"+i].onRollOut = function() {
//do the opposite: move from top to middle position
var myRollOut:Tween = new Tween(this, "_y", None.easeIn, tabTop, tabMiddle, 3, false);
var linktxt = eval("linktxt" + this.i);
var myTxtRollOut:Tween = new Tween(linktxt, "_y", None.easeIn, txtTop, txtMiddle, 3, false);
};

//if the tab is clicked
this["tab"+i].onRelease = function() {
//grab whichever the current tab value is (this.i) and store it to linkNum
var linkNum:Number = this.i;
//the stored number is linkNum
switch (linkNum) {
//if it's the same as this tab
case this.i :
//grab the value from the array using the current tab number (this.i)
//..and minus 1 as arrays start from 0.
trace(linkArray[this.i-1]);
break;
//the default being the first item in the linkArray, "home" by default.
default :
trace(linkArray[0]);
}
};
}





Can anyone help me?



FlashKit > Flash Help > Flash Newbies
Posted on: 07-18-2008, 02:48 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Flash Template (Full Site) Use Problems Button Trouble
http://tmrskate.com/page01.zip
First of all this is the file that i will be talking about so download it if you please

Ok first things first if any of you are up to that level and can please tell me how they did a few things and where i can go to change themLink to another page from the buttons from the right side
Also can you help me out with insetring the product of the "Photo Gallery" tutorial on this site in there (making a new page and takeing out the main picture of a sunset and putting that in its place)
One last thing im not really sure but somehow you will see that if you preview this in the browser that the first button does not function as the other ones do and will not let me roll voer it anymore
A friend bought this for me for christmas and now i want to get it working and post it on the web so i can get down to business! Thanks!

Flash Template (Full Site) Use Problems Button Trouble
http://tmrskate.com/page01.zip
First of all this is the file that i will be talking about so download it if you please

Ok first things first if any of you are up to that level and can please tell me how they did a few things and where i can go to change themLink to another page from the buttons from the right side
Also can you help me out with insetring the product of the "Photo Gallery" tutorial on this site in there (making a new page and takeing out the main picture of a sunset and putting that in its place)
One last thing im not really sure but somehow you will see that if you preview this in the browser that the first button does not function as the other ones do and will not let me roll voer it anymore
A friend bought this for me for christmas and now i want to get it working and post it on the web so i can get down to business! Thanks!

Template Trouble, Please Help
This might be a stupid question but I am new to the world of Macromedia Flash MX.

Nontheless, how does one delete a Flash template file or find it for that matter. This is a file that I created from a layout, just playing around. I want to delete it, but I cannot find out where the file is stored. It's not in the "template" folder within the Flash program files where all the "original/included" templates are located, nor did it give me an option to choose a location to save.

I've done a search on my CPU for the file but it is no where to be found.

Furthermore, how do you delete any of the "original/included" templates? As you can not just delete the folders in which they are located, as it seems they are imbedded within another file. I say this because even if you delete the template folder then go back into Flash the templates in which you just deleted are still useable.

Any help would be greatly appreciated.

Rick

Trouble With Template
OK, this is my dlema,

I purchased a template from the interent as I do not at present have the money to get a site designed or the time to really learn flash, on purchasing the template I realised what a mistake it was, but hey ho make the best of what I have now. Due to my limited knowledge I'm struggling to find the parts I want to edit for instance at the bottom there is a link focalled 'Privacy' which if you click on brings a popup window, I have now spen the best part of 3 days trying to find the contents of this window so I can enter my own text but for the life of me I cannot find it, there is another button within the design that also has a popup when clicked on and this text I can find, can anyone point me in the right direction of where I need to look? I can supply more information if required, also I can email the file.

Many thanks

Nick

Portfolio Template Trouble
I'm having touble with a photo portfolio template. The template design allows the user to click on a small picture and see it enlarged in another window. The template came with 6 stock photo images(one small and one big) and it was simple enough to swap those corresponding images with my own thumbnails and bigger pictures but...I have more images I need to put on the site and I don't know how to add images to the library and designate where they will go as a thumbnail and where they will go as the larger image. How do I do this???

Thanks so much for any help or ideas!

[F8] Having Trouble With Text In A Template...please Help
Hey all,

I just purchased one of those pre-designed templates to spruce up my website a bit...the one I got was at http://icetemplates.com/show-template-1929.html, as you may need to see the template to answer my question correctly. Also, I'm using Flash 8.

As you'll see on the template, if you click the "Services" link - it's the one with the camera - it'll bring up an extended window with some text. So here's my problem. The text that's highlighted in yellow seems to be able to bring up a link, as once you move the mouse over it, it goes from a cursor to the hand. What I want to be able to do is change that yellow text (which I've already done, no problem)...but make the text below it change based on which item they click.

For instance, the first yellow line is going to be "wedding photography", and when they click it, I want to have a paragraph or two about my wedding services. The next line will be "product photography", and when someone clicks that, I need the wedding stuff to disappear and have info on my product photography services come up. I was hoping to be able to do this with layers, but I'm not sure if that's possible.

Can someone please let me know the easiest way to achieve this. I struggled through the rest of the site and actually figured out most of the issues, but this one has me pulling my hair out now for two days.

Thanks a bunch!

Brian

Having Trouble Editing A TM Template
I'm having trouble editing a template monster template, its just a certain thing im stuck with. I was wondering if someone could take a look at the .fla file and help me out?

If you think you can help, get back to me and i'll let you know the full details.
Thanks.

Having Trouble Editing A TM Template
I'm having trouble editing a template monster template, its just a certain thing im stuck with. I was wondering if someone could take a look at the .fla file and help me out?

If you think you can help, get back to me and i'll let you know the full details.
Thanks.

Quiz Template _lockroot Trouble
When loading an external quiz swf (created with the MX quiz template and using the loader component or loadMovieNum), the results page doesn't work. I used
ActionScript Code:
this._lockroot = true;
in the external quiz. Any other ideas?

Trouble With Built-in Quiz Template
I've recently started learning how to use Flash on my own and was trying to using Flash 8 Pro's built-in quiz template. I've run into difficulty modifying the preset interactions. Whenever I either remove an interaction/frame or add a new interaction/frame/keyframe(such as multiple choice), the quiz either stops early(stops at question 2 and will not advance any further by clicking on the next button or the quiz result page is inaccurate, sometimes showing a zero for question correct, incorrect and score, or showing 6 correct 0 incorrect and a percent score of 0.
Am I messing something up by deleting the original keyframes? I did make sure to remove each frame in all of the layers before the interaction layer like it states in the tutorial. Any help would be appreciated.

Swithching Function From Test File To Template? Loop Isn't Working In Template
Hello everyone,

I've finally come back to my original document that I need this function to work on. There's a problem with it continuously looping to undefined when I move it from images1-1 to bubba1-2.
Bubba1-2 is my default template that I need to make this work on.

I've placed a zip file if I'm not making sense, for someone to help me on this little loop problem.
I think the problem is on line 116 of bubba1-2, when I tell it to loop again.

images1-2 is what I'm trying to achieve in bubba1-2.fla

Looping to undefined????????????
I know it has something to do with me calling my xml function all over again. But, I cannot figure out where my problem lies.

If anyone could help me on this good day I would appreciate it!


cbs

Swithching Function From Test File To Template? Loop Isn't Working In Template
Hello everyone,

I've finally come back to my original document that I need this function to work on. There's a problem with it continuously looping to undefined when I move it from images1-2 to bubba1-2.
Bubba1-2 is my default template that I need to make this work on.

I've placed a zip file if I'm not making sense, for someone to help me on this little loop problem.
I think the problem is on line 116 of bubba1-2, when I tell it to loop again.

images1-2 is what I'm trying to achieve in bubba1-2.fla

Looping to undefined????????????
I know it has something to do with me calling my xml function again. But, I cannot figure out where my problem lies.

If anyone could help me on this good day I would appreciate it!


cbs

Contact Form In Template Monster Template
Hello. I need help...i have seen a lot of posts, but the script provided is all different...can someone please take a look at what I am using and tell me what is wrong. Once I hit the SUBMIT button, the email is sent to my address, but the email does not contain the informaion typed into the form, even my thank you for submitting window works...

PLEASE HELP!!!!!!!!!

Texthere is my action script on the submit button:

on (release) {
getURL("contact.php","_blank","GET");
t1="Your Name:";
t2="Your E-mail:";
t3="Your Message:";
}

Here is my contact.php script:

<?php

$your_name = $_GET["t1"];
$your_email = $_GET["t2"];
$your_message = $_GET["t3"];

$recipient_email = "justin@the-woods.com";

$subject = "from " . $your_email;
$headers = "From: " . $your_name . " <" . $your_email . ">
";
$headers .= 'Content-type: text/html; charset=iso-8859-1';

$content = "<html><head><title>Contact letter</title></head><body><br>";
$content .= "Name: <b>" . $your_name . "</b><br>";
$content .= "E-mail: <b>" . $your_email . "</b><br><hr><br>";
$content .= $your_message;
$content .= "<br></body></html>";

mail($recipient_email,$subject,$content,$headers);
?>
<html>
<body bgcolor="#282E2C">
<div align="center" style="margin-top:60px;color:#FFFFFF;font-size:11px;font-family:Tahoma;font-weight:bold">
Your message was sent. Thank you.
</div>
</body>
</html>
<script>resizeTo(300, 300)</script>

Flash MX Template Bug (I Think)
Just noticed a very small 'bug' in the default html templates that means that Flash MX movies don't load properly in some Nescape browsers. When you choose to center the movie in the browser window, Flash inserts a table around the movie - but it forgets to put in the end table (<!--/TABLE-->) tag - something that rubbish old Netscape seems incapable of coping with.

I'm not entirely sure how these 'default' templates were created, so it could be that the Flash MX updater miscopied an old template that I created - but it might be worth checking if you care about those 2 Netscape users.

Best,

Alex

Flash Template *:?:*
Ok ive downloaded this (Free Flash Template) of this site,

Free Flash Templates

Ok, this is the one ive downloaded

My Choosen Flash Template

When i finished downloading the files this is what i got.............



Now i opened the index1.html in Microsoft FrontPage and i tryed to use the html but its abit hard, also i wanted to put links in the flash template the one i downloaded and so on.............. so my question is, is there any1 out there that is a WizKiD and has alot of time writing guides out for me, are just plain old text, i really need the help, as i want to show of to my mate, as he dont know what im gettin up2 ........................OH i have a free web host, its called www.netfirms.com and i heard that you can upload the flash templates on a ftp program, but ive already got the ftp program and ive tryed uploading a flash tamplate without configuring and it worked check out here

My WebHost, with a not so good flash template

i played around with that one and i got some text! XviD MPEG-4 somethink like that, well anyone wanna help a newbie out

Flash Template Help
I purchased a flash template from templateheaven.net and I am having trouble modifying it. Any suggestions?

Flash Template
I am shure this question has been asked before but I cant find it when I search. I have bought a heavy flash template and wonder how I can modify it? I have flash mx 2004.I havent worked with flash before. Maybe there is a lot designers here that hate templates, but please help

Flash Template
I have purchased a flash template. I am trying to edit to. When I make changes and save it then do a test movies not all of my changes show up. Can someone help?

Flash Template
I have purchased a flash tamplate that I am trying to edit and put on my webpage. However, when I edit it and than click save and try to do a test movie not all of my changes show up. Any help on this would be reatly appriciated.

**flash Template Help**
I have tried and tried to download flash templates to put together,and every time I do,the folders have files in there that my computer will not allow me to open.The files that will not open are the flash files.I can open up the index,and whatever else has a picture on it,but when it comes to the sound file and whatever else deals with the actual flash,it wont let me even open it.It tries to send me to a site that I can look for what created the file to open it,but I'm not going to look through that stuff for hours just trying to find something I'll never find.Is there something that I have to have on my computer(some kind of download)that will allow me to open and view these files????Please help me out with this because I would love to have a flash template for my website.Thanks in advance.

Flash Template
hey...i wanted to know how hard is it to use a flash template. I have never used it before and i needed it for creating a web site. And also......do any of u know any site where i can download a free template sample. Some sites have pictures and tutuorials on changing things around. Is it relly easy as cut and paste text and logos or is there html tags involved. If so.how? Thanks.

Flash MX Template Help
Well Im making a flash template for a company called "Marshall Painting Company". and Im having trouble with flash.

http://www.marc-michaels.com/ is a site they really like and would like me to try to do. but how would i make the content show up in flash? like in Flash how do i make it so if they click they will enter the content part, in the same window?

Also how do i do flash rollovers? like it they go over the link it will turn a different color.

srry for all the question i just got flash...

Flash Template
Can anyone help me work with a full Flash site template?
Thanks in advance!

FLASH TEMPLATE (help)
Hi i made this template



thats a little smaller then actual size and i want to make it into a full flash template actually probibly better just the upper half the banner and the navigation

is there any tutorials that teach you how to make templates like for example when you put the cursor over a button on the menue i want that arrow to move from the right to the left and make a click noise. does anyone know any good tutorials or would add me to aim or msn and help me out i want to learn for my self aswell thanks

Help With Flash Template Please.......
Hi, i've downloaded a template from a site that i'd like to work with in flash. I'd like to change text, images, etc. It's from a template site and they say it's ok to download it and play with it in flash. I can't even figure out how to get started with it.

I know very little about flash, but i'd like to figure these things out and start learning. I'd eventually like to make my sons baseball team a website using flash. There are baseball templates i could just buy, but even if i would do that, i'd still need to change text,images,etc.

I got the template here template link

I downloaded the top middle template. The dark one.

If anyone could give me advice on how to get started changing images, etc. I'd appreciate it.

If it's going to be difficult, then i won't even consider buying a template.

Thanks.

[F8] Using Flash Template..
ok hey there guys... my question is very basic.. and i need some pointers in the right direction... ok here's the plan..

i have bought few flash templates from templatemonster.com..

now these zipped files.. when unzipped have a *swf file and *Fla file... they look complete..( No psd, or html ).. so is this all i need to start customizing it andmake my own flash site??

i assume i will hv to use some html editor to edit these files... or do i edit them in flash 8?

what next..?? any adivce in the right direction would be really appreciated..
"flashing" thanks..
Woody

Please Help With Flash Template
Here are some pictures of my problem. I don't know if everything is mess up because of me, or it's just me
I'm trying to create a site for a rock band, very simple. I did some work in the psd files and I don't know where to save the modifications.
My flash movie is very simple (I think). But I don't want to star editing it until I resolve the html problem I have...
Sorry... it's driving me crazy!!
Thank you to all
Diana

Is This From A Flash Template?
hey guys,

My friend made an animation for his assignment and claimed to be his. not sure what he did coz i didnt see it, but from what i heard, an animation of a ciggy box opening or sumfin, not sure. i only have his screenshot.

the thing is, everybody's saying that its from a very popular flash template. and i wanted to know so bad coz this guy is getting credits frm lecturers like hell.and it pisses me off how these kinda ppl get thru it. grah.

so if anyone can reconfirm this, i'd be more more more than happy, relief on my side actually, for not stooping that low, down to that level.

thanks guys

[F8] Flash Template + Swf + Psd = ?
hello all. i'm new to flash and new to flashkit, but am willing (and hopefully able) to learn.

i recently bought a flash template from perfectory.com. i wanted to learn more about flash by seeing a fully constructed template and then editing it/tearing it apart...and i'm also doing a website with it for a family member as a learning experience.

anyways

included in my source files were the fla and swf files, along with the psd's. i first began to edit the psd's (the only thing i _knew_ how to do for sure). i then started playing with the fla, edited it, tested it and published it to swf format.

my question is this: what now? how do i plug it into my psd files? what do i do next?

i should also mention that the flash is only a flash header...it can be seen here: http://www.perfectory.com/search.htm (enter ID#12670)

i feel like a total idiot right about now asking what is probably a overly simple question, but i just don't know what to do or what to even google about further developing this website!

i would be more than happy to send the source files, etc. if anyone needs to look at them. i'm just so stuck right now, and majorly frustrated with my (lack of) skills

if anyone could take their time out to help, i'd appreciate it greatly. thanks!

[CS3] Help With Flash Template
Hi guys. got a question. I am editing a flash template, and everything seems to be going quite well. I can work out most things but one thing has stumped me.

If you view the flash here http://122.201.82.83/~playfitn/
the rest of my ramblings will make more sense.

I need to add a few more "title boxes" to the site but cannot seem to work out how to do it. I have tried to copy and paste the existing ones with some success, but they move to the existing menu box locations (if that makes sense).
I guess I need to change where the box moves to but have no idea where to start or how to go about it.

If someone can point me in the right direction that would be sweet. I'm happy to upload the .fla file if need be.

Thanks guys/girls!

Need Flash Template Mod
Hi,

I am in need of someone to modify a Flash Website Template. The mod is quite minor but I need it today.

I have an outline of what I am looking for. Will pay via PayPal for the work.

If anyone knows of or can do the mod or is interested in looking at what I need please post back or email

fenhow@yahoo.com for details.

Thanks Everyone.

Fen

[F8] Flash Template
Hi guys,

I have a flash template which I have maaged to customize to my needs. The entire site is flash.

Within each page, there are buttons which when clicked on open a pop up box with some text content. (this is a movie clip)

I want to copy this for another button/link but I cant get the button to play the pop up box movie clip. I looked at the original and cant find any action script.

Can some one advise

thanks

Flash Template
All,
I purchased a flash template and it is here: http://www.jerpat.org/main.swf, and I am using Macromedia Flash MX version 6.0.

I am very new to flash and on this template I am trying to add 4 more buttons to the main.swf file above, but everytime I try and copy a button and replace the text on the button, it also changes the button I am copying from. I just want to copy 4 buttons with different names and it doesn't seem to be as easy as just copying. How can I do this easily.

I also need to make 4 new wepages in this flash template that correspond to the new buttons.

Can I do all of this easily?

Someone please help me, and I thank all of you in advance.

Flash Template Help
Hey Guys,

I got this flash template from dreamtemplates.com and I know how to customize most of the things except I cannot get the links on the header to go where I want them to. For instance, I want the small home button in the top right corner to go to my homepage, but I can't find where it says the url. The file can be downloaded here: http://www.conroeluxuryhomes.com/header02.fla
Thanks for any help that you can give me.

Jeremy

Flash Template
Hello

I want to use a Flash provided template or build my own template and create pages from this. If I then make a change to the original template - will the pages I have created update automatically, as they do in Dreamweaver? If not - how do I get the pages to update with the template change?

Thanks

Flash Template
Hello everyone,

I am new to flash and I need some help. I have downloaded a template for my new website and am having trouble customizing it. I have a menu, and when one of the buttons is clicked a small window appears that loads text form an external html file. The problem I have is that I can not change the name of the window. I have used debug for the movie and have found the variables I need to change, but can not find the location of those variables, just the script for the buttons.

Does anyone know where I can change the global variables? It is proving to be a hard task, and I do not wish to have to find a new template b/c I really like this one.
If viewing the template could help you, go to www.djvladnistor.ro/TEST/index.html

Thanks!

Flash Template
i need to know how do i edit a flash template that i downloaded from another web site. I am trying to edit the text and some of the pictures i did not create this flash template i bought it from another site it says that i can edit it with adobel flash mx 2004
7.0 or higher. I cannot seem to get the whole file to download in macromedia flash so that i can choose what i want to edit. Please help. I am a beginner please use simple language.

Flash Template
I see by reading other topics that I'm not the only person in this boat. I was looking for an easy fix to building a site after having a really bad experience using a website building program that was full of problems. So, having to start over from scratch but not wanting to waste too much time, I found a template site that promised you don't need experience to use their web templates, that it's as easy as cutting and pasting in your own info. RIGHT!!! Corresponding with the unknown faces of the template store's customer support, I was then told I needed Adobe Photoshop and Flash. I bought both. Now I had a $60 template and $1,000 in programs and no idea what to do with any of it. So much for no experience needed. Now I asked them, where do I start cutting and pasting, and was told it was assumed anyone buying the template had flash experience (however it was not mentioned before). It was a very costly experience and I am nowhere and gasping for air. Can anyone give me ANY clue where to start with a pre-made flash template? You live and learn the hard way sometimes!!!!!

Flash Template
Can I find help here?

I am planning on buying http://www.templatemonster.com/flash-templates/20249.html?PHPSESSID=4vi5qdcbntc5uum6f0ibdktmm7 template off of templates monster.

I am in need of changing the picture of the guy on the right to one of myself, adding my text content that I will provide and changing of the logo.

I will need the contact us page to work and finally putting it up on my server.

Please write me wil@reguera.com if you have any questions.

If the price is right I will be doing another very simple website also buying a template.

Flash Template
Good Morning All:

I have two questions. I have a template that has a record player that plays mp3's that are embedded into the timeline. It's making my movie extremely large. I want to know how I can program that player to have it read the tracks through an XML file. I will gladly post the .fla file to anyone willing to help me.

I also want the same page transitions of the template but I want to break it up into separate .swfs. I just need to know the right route to take with this particular template. I've done some basic sites but this one seems slightly out of my realm. Thanks for any help that you can give me in advance.

Help With Flash Template
I bought a flash website template. On the homepage there is a bunch of links that I changed to reflect my content and want to make a page to go with each link. I am new at this and I don't know the best way to create these pages to add to a template. The template has 5 pages that are linked together through an animated menu. Each page has a different background. I want the linked pages to look like the background that the page with the links looks like. The links are a bunch of text lines. Each link has some kind of movie clip over it. As you can see I need help because I can't figure out how to add the pages.

Thanks,

Janis

How To Set Up A Flash Template?
Hi all,

I am planning to create 3 templates which users can choice from. My question is How to set up a flash template in general???

I am especially interested in the structure, like would it be suitable to use the MVC design pattern (need to read up on that.)

Any tips, advice or information is welcome.

From Where I Can Get Flash Template?
Hi all.

I am planning to make my own website on home decor. I am ready with the content. Now I am thinking of using Flash templates. Where can I get them from? Should I download them from internet or should I take the help of professionals? Can somebody help please?

Flash Quiz Template
Hi all from Edinburgh, Scotland

Would you know where i could pick up a quiz fla or template to use ?

I have something that sort of works but is very long winded and I'm sure there something much more streamlined.

It would need three levels of difficulty 4 / 7 / 10 questions respectively and would give feedback on each question.

The score would be displayed at the end of the level allowing a user to have another go or proceed to the next level.



Please help, many thanks, Cris.

Menu Template In Flash MX
Howdy everyone! I just want to say that I love checking in on the forums
everyday to try to learn something new. I've been coming to this forum for a
couple of years now. Well of course if I'm posting, that means I have a
problem. I've been messing around in Flash MX and currently am working with
the dropdown menu template. I've gotten it to look the way that I want and
have it working just fine. Just fine if the HTML file that I embed it in is
in the same directory as the .swf and xml file. I understand why the xml
file and the swf file need to be in the same directory, but why should the
HTML file be in the same directory as the swf and xml file? That doesn't
make any sense to me as long as I'm pointing to the swf file in the correct
directory right?

I would appreciate anyone's help on this!

Thanks in advance!
Chris

Flash Mx Menu Template
The menu template in Flash mx is great but the buttons link to a URL specified in an external xml file. Can anyone help me edit this movie and xml file to move to a frame number on the time line instead. Please help!!

Modifying A Flash Template
I've downloaded a Flash template and cannot find a way to modify it for my use. At issue is modifying the long movie clip which has most of the contents. I can't edit it with Fireworks 4, can't even see all of it, and placing text on it does not work. How to do?

Flash Template Header?
Does anybody know where I can get a cool hi tech looking flash header with animaiton,Music, and buttons for my links that I can use as a frame in frontpage and put my html content below the flash header? Essential I want a cool flash header with the effects, but my links are going to be pictures, message board, etc, so I have to use html for my content, right? Can I have the flash header on top (frozen frame like in MS Excel)and when I click the flash buttons for my links, the corespoding HTML pages loades below it.

Any advice or suggestions would be greatly appreciated. Thanks!

Just Downloaded By First Flash Template...what Next?
I just purchased and downloaded my first flash template. I have opened it in flash5 but am having trouble finding the section's where I modify the menus and insert my text!

help!

Copyright © 2005-08 www.BigResource.com, All rights reserved