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




Replicating Website + Flash



Okay. Here is my predicament. My Father's company (Natural Herbal Prodicts) is paying some people a large sum of money to design a website. The design that they are stuck with is mediocre and not very functional and I could do a much better job, and would like to do so, except for this obstable. They are making a replicating website, that would be plugged into the already existing database system. Let me explain...


The original domain name will be www.entreneteam.com
Say I ordered, then a site would automatically be created after the order at the url
www.entreneteam.com/eric.html
Now say I give my card to someone with my url on it and they will get the same frontpage as anybody else, but when they order, they will be put under me in the distributor line so that their orders benefit me.
So these frontpages would be replicated like a tree and tied into the distributor database. Now, he already has a programmer that can take care of the database part, and tying the database into it, but I would still personally have to do the replicating webbsite part of it myself.

Now I have no idea how to do that, and will gladly research, but is this possible to do in Flash MX or in Flash MX and Cold Fusion, so that I could include the funtionability of a replicating website, with a good flash design?
I would really be helping my father out of a situation if I could do so.
Thanks for your time.



FlashKit > Flash Help > Flash General Help
Posted on: 12-27-2002, 08:23 PM


View Complete Forum Thread with Replies

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

Replicating Website + Flash
Okay. Here is my predicament. My Father's company (Natural Herbal Prodicts) is paying some people a large sum of money to design a website. The design that they are stuck with is mediocre and not very functional and I could do a much better job, and would like to do so, except for this obstable. They are making a replicating website, that would be plugged into the already existing database system. Let me explain...


The original domain name will be www.entreneteam.com
Say I ordered, then a site would automatically be created after the order at the url
www.entreneteam.com/eric.html
Now say I give my card to someone with my url on it and they will get the same frontpage as anybody else, but when they order, they will be put under me in the distributor line so that their orders benefit me.
So these frontpages would be replicated like a tree and tied into the distributor database. Now, he already has a programmer that can take care of the database part, and tying the database into it, but I would still personally have to do the replicating webbsite part of it myself.

Now I have no idea how to do that, and will gladly research, but is this possible to do in Flash MX or in Flash MX and Cold Fusion, so that I could include the funtionability of a replicating website, with a good flash design?
I would really be helping my father out of a situation if I could do so.
Thanks for your time.

Replicating OnDragOver In Flash 5
Hi every1. First post, wondering if you can help me.

The deal is I've got an MC that I am dragging around my scene and I need other MC's to be highlighted as I drag over them, i.e. the mouse is still down. Buttons don't work, onClipEvent only runs once whilst mouseDown (so I can't do a continuous position check) and the only thing I can think of working is the onDragOver and onDragOut events in MX but I am using flash 5?

Any feedback welcome. Can't help feeling like am being very stupid, am sure this is possible, but can't for the life of me think how.

Cheers,
Sir.

Replicating Flash, Am Stuck :(
Hey,

I seen this flash thing. And i want to learn how the computer gets brought into it. Take a look here http://www.clipitsolutions.co.uk/flash/flashmovie.swf .. As soon as it starts, the computer comes in with like a cirle being tweened over it. But i dont understand how to do this?

If anyone could help, would be most greatful. I really wana learn this technique but its fryin my brain lol

Thanks,
Paul

Replicating Photoshop Text Tool Antialiasing Settings In Flash 8?
Does anyone have any custom antialiasing settings to match up with the 4 settings: smooth, sharp, crisp and strong?

Thanks

Replicating An Effect
say there's one particular "effect" i want to use on several different symbols, what's the best way to go about reproducing it? for example, let's say i find a particular way of affecting color and size with lots of tweens that makes a really nice "shine" effect, and want to use the same settings on 30 or 40 different text and/or image links - how should i go about it?

tyia

Help In Replicating Menu
Hi,
I am working on a website and want to integrate a Flash menu, with the same type layout as the one used here (http://www.islandrecords.com/thekillers/site/home.las). I'd like a menu list where you get sub-menu items when you roll over the buttons. I'm just getting into learning Flash, and could use some help. I've got my main image and my buttons created on seperate layers. But I don't know how I should put the sub-menu items in, or how to get them to appear when you roll over the buttons. Any assistance in how to properly set this up is much appreciated. Thanks in advance. - Eric

Replicating An Applet
Hi,
I saw this applet that basically had heaps of points arrange in columns and rows, that when u clicked and held the left mouse button down they would move towards the mouse, and move away if the right button was clicked.

so the question is how do i make this code 4 making the points arrange on stage simpler I am sure there is a better way.


Code:
a = 0;
j = 1;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 1+i);
a = a+60;
b = 60;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 2;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 20+i);
a = a+60;
b = 120;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 3;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 40+i);
a = a+60;
b = 180;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 4;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 60+i);
a = a+60;
b = 240;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 5;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 80+i);
a = a+60;
b = 300;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 6;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 100+i);
a = a+60;
b = 360;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 7;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 120+i);
a = a+60;
b = 420;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 8;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 140+i);
a = a+60;
b = 480;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 9;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 160+i);
a = a+60;
b = 540;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 10;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 180+i);
a = a+60;
b = 600;
_root[peete]._x = a;
_root[peete]._y = b;
}
also i am using a mouse down clip event to make the points move to the mouse how do i make this happen for the whole time the mouse is down not just the click?

Help Replicating Effect
Hi all,
just wondering if anyone could give any help... I am trying to copy the effect on this page.


www.bbc.co.uk/radio1

when you hover over a picture, info pops up from the bottom.

Any clues?

Many thanks :-)

Self Replicating Program
Can anyone use AS3 (or AS2 I suppose) to write a script that can reproduce itself? Successful program should export code (into a TF or the output panel) that can be copied into a new flash file and run to repeat the same output indefinitely.

I've seen this posed for other languages but I'm not sure how to tackle it in AS3...yet.

Replicating A Pattern
This time round i need to get the pattern drawn on the drawing board to be repeated on another area of the stage.I need it to be repeated 4x4 tile. Any idea??

Replicating A Pattern
This time round i need to get the pattern drawn on the drawing board to be repeated on another area of the stage.I need it to be repeated 4x4 tile. Any idea??

Replicating MM Search Input Box
Hi Guys,

I have tried this - only have flash 5

Here is the fla - I have it working except when I roll on and off the textbox it fades in an out.


I only want it to fade when I click on it and click off it.


onClipEvent (load) {
this._alpha = 100;
alpha = no;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (alpha == no)) {
this._alpha -= 13;
// this._alpha++ // very slow
// this._alpha*= 10 //a bit faster
alpha = yes;
} else if (alpha == yes) {
this._alpha += 13;
}
}
onClipEvent (load) {
}

http://www.actionscript.org/forums/a...=&postid=50155

Cheers,
SuzyQ

[CS3] Efficient Way Of Replicating MovieClips?
On my main timeline I have two dynamic text boxes and an input box that represent a math problem. I wanted there to be three problems on the screen at a time. Since I don't know much about classes and making packages I just copied and pasted the problem twice so that I have three instances of each text box. Next I basically just tripled my lines of code, one block for each of the three problems.

I'm assuming the proper way to handle something like that is to make the problem a MovieClip and then make a class for it. However, when I attempted to do that I got errors [possible undefined function] because code that still remained on the Main Timeline was referencing functions that had been moved from the Timeline into the mcProblem class. Could I change the code on the Timeline so that I won't be getting these referencing errors? If not, could you please provide some detailed information about what I should do regarding classes? Currently I am not using a document class.

If anyone understands what I'm trying to do, please guide me in the right direction. This is my first attempt at a solo project (for fun) and while I can achieve the desired swf sloppily I prefer to learn to do it the clean and efficient way.

Replicating Files On A Desktop In AS
Can i replicate files and create folders on a users desktop through actionscript?

Im creating a template builder that will have to replicate my swf's, write a variable to a html page where my flash is embeded, write a xml file, and create a folder on a users desktop with all the files above?

Is this possible in as or as3? Do I need to write my application in VB or flex instead?

Replicating HTML Forms
I am trying to put a HTML form into flash that has hidden fields. How can I put these in flash? Do I just set a variable value under the submit button function? Thanks!

Replicating Pages Turning
I'd like to replicate the turning of pages of a book, to show different information. I would either like (A) when you click on the lower right corner the page flips, flowing across the screen as if turning in real life or (b) *favorite* that when the lower right corner is dragged towards the left side, the page turns to the next. is this even possible? any help would be greatly appreciated (ps kinda new but my confidence and understanding is growing quickly)

Indications On Replicating Effect
Hello. I would like some indications on how to replicate the transition effect between the images on this site: link (the transition effect with the squares). Please offer some ideas on how to do that effect. As many indications as possible are welcomed. Thanks.

Replicating Pages Turning
I'd like to replicate the turning of pages of a book, to show different information. I would either like (A) when you click on the lower right corner the page flips, flowing across the screen as if turning in real life or (b) *favorite* that when the lower right corner is dragged towards the left side, the page turns to the next. is this even possible? any help would be greatly appreciated (ps kinda new but my confidence and understanding is growing quickly)

Replicating Left And Right Mouse Clicks
Was wondering whether anyone knows if it is possible to replicate a left and right mouse click in flash.

Need to distinguish between whether the user has right clicked their mouse or left clicked....also any ideas on replicating a double click?

Cheers....

Replicating The Menu On ERAIN Homepage.
The header bar of the Electric Rain webpage has a very nice effect when you rollover the buttons. I am just wondering if anyone knows how to re-create this effect. Also how to make the little pop-up bubble when rolled over the logo.

http://www.erain.com

Replicating This Effect With Bitmapfilter (Effects)
Hey there all, I'm just trying to replicate this effect

http://www.reactiondynamics.com/sd2.swf

using flash. So far, using Senoculars blurred trails example on his website, I've got this: blurtrail2.fla

Only, it doesn't look right and I'm not sure how I can get it looking better. For instance, how can I remove the spacing that appears as dots spin, and also, how do I elongate the trail, and make the blur falloff ? If it can't be done in flash, what program can I do it in?

Any help appreciated

Help Needed On Styling And Replicating Text Field
As a new AS3 coder I'm at a little bit of a loss on the most efficient way to replicate a styled text field.

I would like to use the following styled text info and load some text from an array. Do I need to create all this styling for every instance of the text in the array or can I create several new instances of the field in my function?

Thank you in advance for your help.


ActionScript Code:
var headlines:TextField = new TextField();var headline:TextFormat = new TextFormat();headline.size = 20;headline.font = new HelvBlack().fontName;headlines.alpha = 0;headlines.setTextFormat(headline);headlines.embedFonts = true;headlines.autoSize = TextFieldAutoSize.LEFT;

Searchable Website Vs Slick Website...when To Draw The Line
Just curious what everyone thinks here:

So, we all know how search engines have a hard time reading flash sites. Well, I have come to a road block in my designing...I have clients that want their sites in the search engines but also want a certain amount of 'tech' to them! I can design pages with 'some' flash, enough to make it interesting, BUT if they want a 'fully searchable' page, what do we do?
I can type html all day long but it will never compare to the slickness of flash. I just finished my first 'full html' site in over a year(stuck on flash) and I am blown away by the clarity! It makes flash sharpness look dull! (sorry)

**My Question:
If you had a client that wanted a high tech site and also wanted to be 'searchable', what would you do??

***I'd like to hear all opinions, reasons and answers***

Mike

Xml Flash Website - When I Change The Publish Settings To Flash 8 Its Not Working
I have done a xml flash website, It has been done in Flash Mx and i have set publish settings as Flash 6 Player. Now im facing a problem, when i changed my publish settings selected Flash 8 Player when i run it . It gives me only a blank screen, why is that what is the reason. Please help its urgent.

How To Make Such A Flashy Flash Site? Can I Use The Flash Website Builder V1.0
I am trying to make a site that looks or has animations similar to the ones shown here: http://hypertemplates.com/templates/9449.html

How and what do I need to do it. I hardly know any flash really. Can this new flash software Flash Website Builder v1.0 can it do?

Please guys advise me!! THANKS

Lilly

Full Flash Website Vs. Hybrid HTML/Flash?
Im looking to building a website. Anyone have any suggestions which route to take whether a full Flash site or a hybrid HTML/Flash site? Im leaning towards a hybrid site cause I believe it will be easier for me to get it up and running quicker cause of my low level Flash skill level.

ToolJob

[F8] Creating A Pop Up Window With A Flash Movie Within A Flash Website
Hey guys, been scratching my head over this for some time would appreciate any words of wisdom ...
I'm trying to create a script for a movie clip/ button that when pressed will open up a new window with some swf/ video/ banner in it. This would resemble getURL except the mc would be from within the (flash) website itself and not some other website... much like a javascript applet for example. any ideas?

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.

Full Flash Or Half Flash Website Question
okay after doing flash for a lil bit im a bit confused.. it seems like this stuff is mostly for graphics moving around and stuff like that. Now my question is.. is it better off to make a site complete with flash or one that uses a header flash and the rest are html..And if i go with the header flash & rest HTML how do i connect the flash button menu so that it opens a page in my html. i dont know if i make any sense any help will be good thanks. I guess its kinda like kirupa site where the header is flash and the context is html..or maybe im wrong everything on kirupa site is flash hehe

charlie chen, complete noob.

Quick White Flash Before Flash Load On Website
Hello. I'm fairly new to flash and built a website, that does both images and flash. I have 3 flash files, 1 for a top animation, 1 for a navigation, and 1 for my bottom header. Anytime I load a page or click a link to visit the next page from an external link, like going from page1.html to page2.html, it instantly loads everything besides the flash files, which blink WHITE for half a second, then displays the content in the flash files. I've looked up some information on google.com, and came across what some other have recommended to other users having the same issue, which they mention using a preloader.
http://www.webmasterworld.com/forum104/391.htm

this is what the white flash looks like on my website
http://img235.imageshack.us/img235/5013/part3xx0.jpg
" the white areas are the flash files a second before they load "

So, I tired to create a preloader with no luck at all. I followed instructions perfectly to add in a preloader for my animation but i kept getting errors upon a preloader loading and it wouldn't load the content. Now, my project in Flash 8 looks like this, have 1 layer on the timeline, which that 1 layer has 1 frame, which that 1 frame has a movie on the fram and when you double click it, then leads to the animation I created for that movie. (i've provided images below for you guys to see.)

Part 1: http://img461.imageshack.us/img461/8421/part1bg1.jpg
Part 2: http://img461.imageshack.us/img461/9676/part2rw0.jpg

My question would be:
How do I add in a preloader for a project from the above images i've posted? If someone could point me in the right direction to a tutorial, or post some instruction steps on how to perform this that would be awesome. The white flashing is just terrible looking and I've been spending all day try to find a fix for this.

Thanks guys, I love the site. this site finally made me step up to flash and eat it like an apple, just gotta get the white flash thing gone. Thanks again.

Flash Photo Gallery Inside Flash Website
Hi guys,

I have a flash website, nothing is in HTML, and I want to add - flash photogallery into my flash portfolios page.

Any one knows why?? Can you help me plz?

Regards,

Create Full Screen Flash Website..... New To Flash
Hi

I would like to create a full screen flash website in the browser.

I need the middle part to be fixed width ....ex 950px but the background to repeat as needed depending on the browser size.

Any good tutorials to do this?

Thanks,
Chris

Flash Gallery Inside Flash Website PROBLEM :(
i made a site in flash and i'm having problems with the gallery... i made the gallery following a tutorial because i'm a beginner... this is the code i used to display the numbers of the thumbs, to be able tonavigate:

newBut = _root.attachMovie('numTemplate', 'num'+i, i);
newBut._y = sliderHolder_mc._y+sliderHolder_mc._height+127;
newBut._x = (i*newBut._width)+sliderHolder_mc._x+163;
newBut.myNum = i;
newBut.num_txt.text = i+1;
newBut.onRelease = function() {
targX = 0-(this.myNum*104);
};

i can't get that newBut disappear when i click on the home button. CAN ANYONE HELP ME? :(


Flash Browser Background W/ Centerd Flash Website
Hi all... I've been searching for this.. and also looked in some forums.. but nobody seems to know the answer to this..

How do I get this effect
www.robertreich.de
www.lechateau.com
www.hi-res.net
www.revolvercreative.com

If you stilll don't get me.. the effect is simply the flash background fills the whole browser window.. and also resizes with it while the main content (the site also flash btw) remains centered and doesn't resize with browser...

HELP!!
tnx..

Flash Website
Hello. I am very new to Flash, but I was looking at some of the sites people have made with Flash (the ones that are totally flash) and I was wondering, what, er how, I should say, does one go along creating a site like that?
thanks in advance,
psicorp00

Flash Website
I want to create a Flash website that uses flash buttons and other animations that interact with the user. I want to create a site similiar to the this site: http://www.umich.edu/~echapter/

Can someone please visit this site and tell me what techniques and tools I need to create a site like this one, with a fancy preloader,interactive buttons, & sharp graphics, etc.

Thanks

Pharozen

Fps For A Flash Website?
Hey, i'm startin to make my first flash website, till i realized the fps. what should it be? any info would be great. thanx alot.

Flash Website
Hey people,
I have been studying Flash for about a month now,just memorizing the layout, and doing some tutorials. I am familiar with the program now. One question? What is the process for making say, a 5 page website? How do I make the specific 'pages'? How do I link the specific pages. How do I put all that I have learned together. If you can't tell me specifically, can you tell me where I can find out this seemingly simple process. Please help me for I am in dire, dire, need. sames

Flash Help On My Website
Hello,

I have a problem with my website's flash navagation bar. when you click on a button it loads fine. But if you click back on Internet Explorer, the flash movie doesnt load. How do I fix this??????

http://www.moderndaysupplrment.com

How Do I Put My Flash On To My Website?
Hello this is Teo from S.P. Interprises ©,

I want to know how do i put my flash on to my page.
i really need to know it fast!

How Do You Put Flash On A Website?
I uploaded it on geocities and put img src=and the url but it won't show up! Please help! I need this right away!

Getting The FLash On The Website
Ehhhh... I feel stupid because this is probably the easiest part of the whole Flash process. But anyway...

I have my completed .swf ready to put on my website as an intro. How do I set it up so that it automatically plays when someone comes to the site, then forwards them to to the main page when the click the "enter" button? Get what I am asking?

I have Flash MX, Dreamweaver, and Fireworks if that is help to anyone...

Flash Website
i want to make a website totaly out of flash. but i dont know were to begin can one of you point me in the right derection?

My First Website In Flash
Of course my first website in flash is my own website, lol. Can you please check it out and sign the guestbook on the personal website section to let me know what you think? Thanks. I know the modeling section is crap, haha. But it will soon be changed that was the first part I did, then the logo on the index then the personal website, then the guestbook. Anyways, it's done by me tell me what you think for my first site. And post your comments on the guestbook, it makes it easier for me to read them all, thanks again.

Flash In A Website
Hi everyone. I am definately a newbie so please to laugh at me! I was wondering a few things about websites that are made with flash. First off, when you make a flash website, how do you make separate news, pictures, links, etc. pages that you can update frequently? Do you embed an html page that you can change and update? or do you update the whole flash site? An example of a flash site that I really like is http://www.thepeoplerock.com . This gives you an idea of the type of site I would like to create. I'm not totally worried about the scrolling pictures at the top yet, but the layout and buttons and everything is what I'm looking at doing right now. Any help you could give me would be greatly appreciated. And if you could explain the concept of creating a website out of flash. Is the whole site a "movie"? and how does that work with the html?? This whole concept is very confusing to me. Thank you so much.

Website In Flash
i have started to make a website useing flash mx www.freewebz.com/flyingmonkeyboarding but the some of the links dont work (click on FMS the messenger and mail link dont work)
also if you have any tips please let me know

Flash Website
whats the best softwear to use if u want to make a pro flash website

How Do I Put Flash On My Website
How do I put flash on my website?

Flash Website
Hi,

I am in the process of constructing my first Flash site.
For example, I have text acting as buttons that will link various pages. In the properties I see it has a blank box for one to enter in the http:// link and/or an e-mail address.

Well, I've got each page on it's own scene. Do I control linking page to page via frame labels? Or do I actually put the name of the scene representing, say INFO, in that blank box?

I do not know at all.

Appreciate your response!

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