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








Im Looking For This Kind Of Navigation


this navigation


on my website my nav is with javascript and layers....

can anyone help me to build this like the website above in flash?

the best way - store the main und submenus in database and read with flash and build the menu...

can anyone help? any questions? icq 23148128 or here

sorry for my english...




FlashKit > Flash Help > Flash General Help
Posted on: 10-14-2003, 02:33 AM


View Complete Forum Thread with Replies

Sponsored Links:

Help On This Kind Of Navigation
http://www.biggs-gilmore.com/

Any Ideas how can i create this kind of navigation in papervision 3D, it will be a great help guys! thanks!

View Replies !    View Related
What Kind Of Menu/navigation Is This
on screen is a little box which you can scroll up and down inside it has links to every country.

View Replies !    View Related
How To Create This Kind Of Navigation? Please Help.
Hello all:

Please see attached .swf file.

I'm trying to achieve similar navigation to what's currently on www.yugop.com but instead of using a vector image that expands and contracts, I'm using bitmaps with masks. (see attached)

I've gotten the functionality to a certain point. The challenge is in making the movieclips expand left or right, depending on where you rollover. Since the movieclips are images, I'm not scaling them horizontally. Instead, I'm using masks to reveal the images.

Also, the buttons that are not rolled over have to move left or right, depending on the direction of the expanding.

Can somebody give me some ideas to get me started? I'm fairly new and I've taken on a project that is a bit ambitious. I've tried a few things, but my methodology's probably off.

Any direction would be greatly appreciated. I'm learnin'.

Thank you, thank you, thank you.

-Frankie

View Replies !    View Related
This Kind Of Navigation Behavior
Hi People,

I`m trying to recreate this kind of navigation. http://www.kaotixclothing.com/main.htm

notice when you hover a ceratin area, the menu sort of pops open, kust like a simple rollover menu, but then there is anotehr navigation inside of it.

Any ideas of how I can take an approach to this?
thanks in advance,
m.

View Replies !    View Related
Navigation, Kind Of Working Need Some Help
http://www.nakedwizard.com/test2.fla

Ok so my file works, kind of, and I'm a bit stumped how to proceed. I used code I found and kind of cobbled it all together but now I'm stuck.

Basically its meant to scale up and down on roll over, which it does....after the first roll over.

The first roll over it just kind of instantly pops up then scales back down, after that its fine and now I'm scratching my head on how to proceed.

Thanks in advance for any pointers I'm sure its probably something really simple!!

View Replies !    View Related
How Can This Kind Of Navigation Be Achieved
http://www.tnowik.com/

just wonderin on how to create this kind of navigation

View Replies !    View Related
This Kind Of Navigation Behavior
Hi People,

I`m trying to recreate this kind of navigation. http://www.kaotixclothing.com/main.htm

notice when you hover a ceratin area, the menu sort of pops open, kust like a simple rollover menu, but then there is anotehr navigation inside of it.

Any ideas of how I can take an approach to this?
thanks in advance,
m.

View Replies !    View Related
How Do I Check If "any Of THIS Kind Of Object Collides With Any Of THAT Kind"?
Right now I have it set up VERY inefficiently --

I have 2 kinds of objects -- objA and objB, There are about 50 of each on screen at one time.

On every instance of objA, I run a while loop that checks collisions with EVERY instance of objB. 50x50 = 2500 of these processes in a single frame. I do this because flash forces me to refer to the objects by name, and even copies of a single object must have different names. There's gotta be a simpler way to do this.

View Replies !    View Related
Would Someone Be So Kind To Help?
ok here`s the situation: i have a dropbox wich has items in it and in the same scene a scrollbar with dynamic text. I want this: you click on a item in the dropbox and you see the text that is related to that item in the scrollbar how do i do this? please explain simply i`m not quite an expert. thanks

View Replies !    View Related
Kind Of Not Right?
Ok here is the deal I have a sliding menu with six buttons the first four work perfectly linked, the last two will not link.
Here is the code:
on (rollOver) {
tellTarget ("button five") {
play();
}
}
on (rollOut) {
tellTarget ("button five") {
gotoAndPlay(11);
}
}
on (release, releaseOutside) {
getURL("http://www.thebonjoviexperience.com/cgi-bin/guestbook/guestbook.cgi", "_self")
}
The code is the same on the first four with respect to the button numbers and of course the url
any ideas as to what is going one with it.

You can llok at the full fla at
http://www.thebonjoviexperience.com/swwmenu.fla

Thanks in advance

View Replies !    View Related
Tip Of The Day...kind Of
Hi all

Is there a way to load a swf based on the date... instead of random.

maybe by using the date for the swf = 071103
or better some random swf for different animation and then the
Tip from a txt.file

Any Idears

Have a nice day

flemming

View Replies !    View Related
Kind Of New To AS, Could Use Help...
Okay, I'm just trying to make a nice simple platformer, and all is going well so far. I've got it to where the pc stops when he hits the wall, and can back away from the wall, it jumps and falls slower when space is held down but continues to fall and falls faster when space is released. Now I want to make the character able to go from platform to platform. I can't seem to think of a way to do this without putting seperate code on each of the different platforms, and that's not exactly my idea of a good time... I'd like to find some way of putting code on the character instead. Here's the code I have right now on the pc, and the staying firm on the ground comment is where I want to put the code to make the pc stay on top of whatever platform it's touching at the time:


Code:
onClipEvent(load) {

gravity = 20;
walkSpeed = 6;
maxjump = 10;
right=true;
left=true;

}


onClipEvent(enterFrame) {
//staying firm on the groundedness

//walking
if(right==true) {
if(Key.isDown(Key.RIGHT)) {
_x+=walkspeed;
}

}
if(left==true){
if(Key.isDown(Key.LEFT)) {
_x-=walkspeed;
}
}
if(this.hitTest(_root.wall) && Key.isDown(Key.RIGHT)) {
right=false
}else{
right=true
}
if(this.hitTest(_root.wall) && Key.isDown(Key.LEFT)) {
left=false
} else {
left=true
}
//jump
if(this.hitTest(_root.platforms)){
air=false
}else{air=true}
if(air==false){
jump=true;
jumpcount=0;
jumpspeed=20;
}
if(Key.isDown(Key.SPACE) && jump==true) {
_y-=jumpspeed;
}
if(Key.isDown(Key.SPACE)){
jumpcount+=1
}
if (jumpcount>maxjump && jumpspeed>-2){
jumpspeed-=9
}
if(!Key.isDown(Key.SPACE) && air==true) {
_y+=gravity
}
}





Help, suggestions would be helpful. And its flashMX, if any one needed to know....

View Replies !    View Related
New Kind Of Pop-up
Lately, on the internet I saw many pop-up graphics that displayed picture of a car or other objects that moved across the web page when I go to site such as http://www.yahoo.com. This pop-up has no rectangular window, but a picture of say a car that move across a web page. Do these pop-up created using Macromedia Flash or is it Java applets ?

View Replies !    View Related
What Kind Of Preloader?
I have a main film "main.fla" and in this main film with animation i load a *.swf file.
to the problem: i have make a preloader for the main.fla but the *.swf does not preloaded.

I need a solution that preloud the main.fla AND the *.swf (from loadmovie).

cu from germany

View Replies !    View Related
Any Kind People Out There?
Is there anyone that can help me with a script??

I have an email form with 4 variables - name, subject, email and message. I need a php or cgi script to send this to my email. I have tried to modify various examples with no luck.

Any help would be appreciated.

View Replies !    View Related
How Would U Get This Kind Of Text
how would u get this kind of text

http://cleoag.shockteam.com/sw3d/s/v...clestexticons2

is it through action script ?

or some other way ?

thanx =)

View Replies !    View Related
A Different Kind Of Preloader?
I am developing my first Flash website and would like to create a preloader.

There are loads of tutorials and examples on the preloaders but am now thinking of doing a something different....

Instead of preloading bar -- using my imagination, a rough sketch of a person pushing a rock/ball uphill on the cliff and when the preloading is complete, the rock/ball drops down the cliff on the other end.

How would I be able to do it? Suggestions would be greatly appreciated!!

Thanks in advance.

View Replies !    View Related
What Kind Of Script Does This?
This seems to be the new kind of advertising lately with flash. What kind of scripting is used to do this? http://us.a1.yimg.com/us.yimg.com/a/...arm/sfarm1.swf . This was recently used on the Yahoo frontpage. Also, does anyone know where I can find an example FLA or SWI that does this? Thanx!!!

View Replies !    View Related
I Think I Need Some Kind Of Loop?
okay, here goes

i have two main movie clips logo and spinner then i also have 6+ movie clips named a b c and so on, now what i want to do is

when logo has reached final frame start spinner and (a) then when they have both finished start logo again which when finnished will start spinner and (B)

at the moment i have logo and spinner working but how do i get it to play abcd etc in order, then start all over.

many thanks in advance

Brian

View Replies !    View Related
What Kind Of Database Should I Use?
hi guys! i want to create a flash application (like product catalogue) that will be distributed in a CD-ROM. I want to have a database in the project...can u advise what i need to use? text file or ms access or xml blah blah

tnx in advance! =)

View Replies !    View Related
Need A Different Kind Of Fullscreen
hey people,

im making my projector go fullscreen with this code:
fscommand("fullscreen", "true");

but, it's making the movie go fullscreen...

what i want it to do is keep the stage the way it's supposed to be (correct size, and hiding anything that hangs out of the stage) and just make the background go fullscreen, like a nice presentation... kind of like when you watch a quicktime movie in presentation mode... it doesnt stretch the movie fullscreen, just the black background takes over the background of your computer.

know what i mean?
thanks.

View Replies !    View Related
Some Kind Of Altimeter...
I should do the altimeter that that counts and shows the total height of certain objects. So... when I drag the certain movie clip above the other then there should be info about the total height. (For example, that movie clip would present some kind of shelf that can be put on top of another shelf.)

My problem is not increasing the counter (altimeter) but to decrease it. [I get the height value from the external text file and via the position of the previous movie clip I can easily increase the counter.] But... let's imagine two stacks (of same height) each containing two separate shelves. So... when I remove one shelf from the stack on the right, how should I tell the Flash/Actionscript "do not decrease the altimeter because there is another stack of same height on the left". In this case there can also be more than just two stacks.

Any ideas how to decrease the counter the right way BY USING ACTIONSCRIPT? I have not done any code yet because NOW I want it to work on paper first...

View Replies !    View Related
What Kind Of Host Do I Need...
so i'm ready to start experimenting with my own .com site and stuff and need to know where to start. so i get a register a domain, then get a host. do all hosts offer the same product. do i need a special type of hosting to have a flash site? where do i start?

View Replies !    View Related
Kind Of Funny . .. 2 Me :)
Alright,

So i go into coles book store 3 days ago looking for the Flash MX bible. I pick it up look at the back and HOLY **** it's 80 dollars.. what a rip off but whatever i need this book and it looks interesting plus i had my mom's bank card So i continue to purchase it take it up to the front "Sorry but the cd-rom isn't in here" Well than i'll pay 20 dollars less so 60 dollars "Sorry sir we can't do that" Oh ok. So i walk over and find another i come out with Sam's teach yourself Flash MX in 24 hours, i like this i purchase and i have been reading it ever since. I was sitting here on my computer like 10 minutes ago when my mom walks over to me and says is this the book that you wanted and i said yes but the cd is missing. I look closer and what do you know it says 75% off my mom paid 20 dollars for a book that i was going to pay 80 at first, but why wouldn't they let me have the book when i offered 60 lol

Just a funny story that i thought i would share hehe

Got Graphics?

View Replies !    View Related
Its Kind Of Choppy
ok, i finally got mine to work, cept halfway through it it gets a lil choppy, like it pauses for two seconds then continues. This only happens the first time someone views it. Is there anyway to make it less choppy?

View Replies !    View Related
How To Do This Kind Of Thing
Hi
Can anyone tell me the best to get this sort of effect.... http://www.fourm.com/console/
Its the bit when the box opens kind of squashy and then forms its proper shape. I can do it sort of with with teening but wondered if it could be done using the drawing api.
Thanks
Karen

View Replies !    View Related
Launching A Kind Of Pop
Anyway to launch a blank HTML target window (off the main movie) out of Flash, so it aligns top left in the browser; at 800 X 600? With the scrollbars, icons, and all the usability of a normal browser window...
Thanks.

View Replies !    View Related
Looking For This Kind Of Tutorial
I was surfing the net when i found this site O2 and i was wondering if there was anyone out there who knew or knows where i can find a tutorial on how to make that kind of splash . . the bubbles and such.

Please help.

View Replies !    View Related
Which Kind Of Preloader?
hi,
what kind of preloader can I use?The movie clip (published in V.6) starts with this code at the second and last frame:

_root.attachMovie("picMC", "picMask", 10);
picMask._x = 154;
picMask._y = 122;
_root.attachMovie("picMC", "picBg", 5);
picBg._x = 154;
picBg._y = 122;
_root.attachMovie("maskMC", "myMask", 20);
myMask._x = 154;
myMask._y = 122;
_root.attachMovie("bgMask", "bgMask", 7);
bgMask._x = 154;
bgMask._y = 122;
picMask.setMask("myMask");
picBg.setMask("bgMask");

I've tried with a standard v.5 preloader but it doesn't work.
Can the problem be the _root.attachMovie expressions?

Thanks to all for help
manipura70

View Replies !    View Related
How To Do This Kind Of Effect?
I hope you all would have seen this grainy effect which you get when you switch on your TV or when the power goes off in the TV station we can see this effect like lot of silver colour grains in the TV. Its also seen in many sites now days. Does any of you know how to get this effect? Or in order to search for it in the forum which will be the right word to search?

Will any of you come forward to understand what I exactly need and help me? Thanks.

View Replies !    View Related
Anyone Know How To Get That Kind Of Effect?
Anyone know how to get that kind of effect?

View Replies !    View Related
Anyone Know How To Get That Kind Of Effect?
Anyone know how to get that kind of effect?

sample:

http://www.chineseworld.com/ad/sample.htm

View Replies !    View Related
Some Kind Of Frame
i need help making a site that works with html. i want the site to be something like this http://www.2advanced.com/webbasis/siteindex.htm
the top half is flash and the bottom is html.
can anyone tell me how i can make this work or send me an example
thanx

View Replies !    View Related
A Kind Of Chat Bot...
I need to know the command to recognise a word actually as part of a sentance so as i can make a reply.

For example. if you enter the phraise "you look like the rear end of a truck" i want a scipt that recognises the person has said "rear" so as i can have my text replying.

I know hoe to do it with a password kinda thing but then the whole sentance ust be exact so "You look like the rear end of a car" would not recognise.

Any help would be greatly appreciated! thank you for your time.

View Replies !    View Related
What Kind Of Flash Is This?>
On http://www.akamai.com/index_flash.html they have a nav that comes up over the image... What is this? Is it actionscript or what?
thanks,
Vegas

View Replies !    View Related
Kind Of Hit Test
Hi everybody,

Please take a look at the fla's
I'm triying to do a mouse trail inside a movie clip.
But I want the trail to stop when your outside the movie clip.

My trail go over the movieClip (_x)

could someone help me out

thanks

View Replies !    View Related
Kind Of Stylesheet
i presume this is possible but don't know where to start.

i want to be able to easily change the colour of elements with in a site in one go rather than having to open up every MC or button. ie. type colour ,background colou,r box colour that kinda thing - i can go every month/week/day change some code and all colour way for the site is completely different (like CSS). If anyone knows any good tutorials or source files they'd be much appreciated.

cheers

J

View Replies !    View Related
A Kind Of Preloader
i'm making a preloader for my site.as a design i would like to have a logo that slowly shows from top to down as the movie loads.the logo consistes of an alien head made of horizontal stripes.and i would like to make the head form line by line as the movie loads.

ps:i don't want to make the logo in flash(i know that this would be easier). i have the logo as a jpg.

if someone knows how to do this, please help me.

View Replies !    View Related
Is There Any Kind Of AI/EPS To SWF Tool?
Sorry if this may be a little off topic....

Anyone know of any kind of tool, util, class, script, etc that will convert EPS (vector) to SWF either by either server-side script, command line, or standalone app?

Ive seen all the others JPG2SWF, GIF2SWF, PP2SWF, etc....but havent been able to find any info on doing vector via Flash run-time or external.

TIA!

Ahhhk!

View Replies !    View Related
This Is Kind Of Embarrasing......
HI i just got flash mx pro 2004 for a present and i made a character iam so confused with all the buttons and stuff i dont even know how to make it move much help would be appreciated!

View Replies !    View Related
Eraser Kind Of
Hi
I'm creating a drawing api where I have used lineTo/moveTo methods to create line drawing. now i want to create a eraser kind of effect which can be like eraser removing parts of the lines.
This should not be clear function which clears all the drawing at once.
It should behave like an eraser. Like on hittest it should remove that part of the line.
Is it possible???

Please guide.......its urgent!!

Thanx

View Replies !    View Related
Is This Kind Of Interaction Possible?
Hi there,

I'm wondering if the following problem can be solved.

I got a website that's build in frames. 4 frames (a,b,c and d)

in frame "a" is the navigation of the site.
If you click on a button in frame "a", frame c will change.
In frame "c" is a sub-navigation

The navigations are both in flash. I wan't to click something in frame "a"
and with that click make the sub-navigation in frame "c" change (for example: gotoAndPlay(2)).

is this possible?.. hope you understand my problem..

thnx.!

View Replies !    View Related
This Kind Of Effect?
http://www.theillusionist.com/
Do anyone have any idea how to make those rollover effect on the button "Enter site"? Some light coming out from a light source. Do anyone know how to use actionscript to finish it?

View Replies !    View Related
Blobs (kind Of)
nothing but some tiny classes to build up a few kinky blobs. I didnīt spend much time on performance optimations yet, because I canīt resist to post such cute little fellows here and now.

launch (&& sources)

cheers

View Replies !    View Related
How Do I Do This? Kind Of Urgent
Hi folks!

Relatively new to flash. I have to upload my website tomorrow, and I can't figure out how to do this one thing.

On the main site, there is a button called "Music"
When you click that button, I want an xml music player I made in a separate flash document to open.

In other words, how do I trigger music.swf to start in mainwebsite.swf

What does the code look like to do that???

Thanks!

Dan

View Replies !    View Related
What Kind Of Declaration Is This?
intrinsic dynamic class strings extends Object

I don't know what this means 'intrinsic dynamic class' and I am reading over some code that needs my attention! I usually code in JAVA and I haven't sent his before.

please help

View Replies !    View Related
This Kind Of Gallery...
Hi people. It is there a way to find a fla like this, but free of charge? http://www.flashden.net/item/full-re...p-enabled/3726
Cheers.

View Replies !    View Related
Kind Of Off The Subject
hi can somemone please help me.. i know this is kind of off the subject, but i wanted to know if i could use one of my flash videos as my desktop on my computer? if so can you tell me where i have to save it to and what type of file it has to be. thanks much

View Replies !    View Related
Problem Of Some Kind, Help
basically i want to use the value from a variable as part of the name of another variable or movieclip.

i've seen this done successfully:


Code:
for (x=1;x>6;x++)
{duplicateMovieClip(movieclip, "movieclip" + x, x);}
so the new name of the instance is movieclip1 then movieclip2 etc. but i want to use this technique in the LEFT side of an assignment statement, so:


Code:
for (x=1;x>6;x++)
{"movieclip" + x + "._x" = x * 100}
but that isn't the right syntax how do i do it? and what's this technique/method called?

View Replies !    View Related
Anyone Kind-hearted To Help Me
hello!! i'm new here and also a beginner to flash.
i already know the basics of flash and my group and i
are creating an icai for our thesis.
can anyone help me because i dont know what to do.
here's the case..

it's like a science tutorial and I've created a movie clip with
next and back buttons. but i would like it to have a seek bar (like in media player) that everytime i click the next button, the seek bar will also move.
and i would like the seek bar to be controllable like for example, if i move the seek to the left, the movie will go to the previous part even without clicking back button.

i really dont know what to do and how to measure the duration of the movie clip so can anybody help me please???
you could also email me if you want. greycorr@yahoo.com

I would be very grateful for any help you can extend.

thank you so much.

--gRaCe =)

View Replies !    View Related
A Different Kind Of Pre-Loader
Hiya everybody!

I'm looking to create a preloader, that has more than just a bar animating from left to right, I would like to also have an animation which runs in-sync with the pre-load bar (and therefore the pre-loader), so the animatoin finishes at the same time as the pre-load bar.

Does that make sense - I hope so!

The problem is that I'm trying to find a tutorial for this but everytime I search for it, I just get hundreds of tutorials for the simple 'bar pre-loader'.

This is the code I am using for the 'bar pre-loader':


ActionScript Code:
onClipEvent (enterFrame) {
    loading = _parent.getBytesLoaded();
    total = _parent.getBytesTotal();
    percent -= (percent-((loading/total)*100))*.25;
    per = int(percent);
    percentage = per+"%";
    loadBar._width = per;
    if (percent>99) {
        _parent.gotoAndStop("Home");
    }
}

My animation for the pre-loader has an instance name of bouncy_bouncy.

Can anybody pleae point me in the direction of a tutorial that will show me how to do this, or advise me on how to modify my code to allow me to do this.

Many Thanks

D.

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