Any One Fancy A Dynamic Load Images Script
Hi all,
I'm in the process of making myself a new website, and I've wrote this script and at the end found I've went about my problem all wrong and i have no need for what i've made.. So i'd thought i'd post it here .. if any one has any improvements then please hack away..
the script will load an external set of variables from either a php file or a txt file.. in this example the variables are..
Code:
&totalart=2 -- This indactes total number of items...
&canvid0=1
&thumbsrc0=thumb.jpg
&xpos0=10
&ypos0=10
&canvid1=2
&thumbsrc1=thumbone.jpg
&xpos1=300
&ypos1=10
I've only used two here but you could use a php script to get the variables out of a database and format them so flash will see them..
and here's the flash actionscript to handle the loaded variables and create images on the stage positioned using the x and y cords
Code:
/// Imoprt transitions and filters Classes
import flash.filters.DropShadowFilter;
import mx.transitions.*;
import mx.transitions.easing.*;
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Load canavs in room fron db
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function loadRoomVars() {
var myLoadVars:LoadVars = new LoadVars();
// start up a loadVars object
myLoadVars.onLoad = function() {
var container:MovieClip = setUpContainer(this.thumbsrc0, this.xpos0, this.ypos0);
var ln:Number = this.totalart;
var spacer:Number = 1;
var duplicate:MovieClip;
var loadedart = new Array();
for (var i:Number = 0; i<ln; i++) {
loadedart["canvid"+i] = this["canvid"+i];
loadedart["thumbsrc"+i] = this["thumbsrc"+i];
loadedart["xpos"+i] = this["xpos"+i];
loadedart["ypos"+i] = this["ypos"+i];
}
for (var i:Number = 1; i<ln; i++) {
var newY = loadedart["ypos"+i];
var newX = loadedart["xpos"+i];
duplicate = container.duplicateMovieClip("clip-"+i, i, {_y:newY, _x:newX});
loadThumb(loadedart["thumbsrc"+i], "clip-"+i);
}
};
myLoadVars.load("variables.txt");
}
loadRoomVars();
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Set-Up container movie clip and pass first variables
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function setUpContainer(thumbsrc, xpos, ypos):MovieClip {
var mc:MovieClip = this.createEmptyMovieClip("container", this.getNextHighestDepth());
container._x = xpos;
container._y = ypos;
loadThumb(thumbsrc, container);
return mc;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Load thumbmials into MC's
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function loadThumb(thumbsrc, holderMC, maskMC) {
var tblListener:Object = new Object();
tblListener.onLoadInit = function(target_mc:MovieClip) {
var dropShadow:DropShadowFilter = new DropShadowFilter(6, 125, 0x000000, 0.15, 16, 16, 4, 3);
target_mc.filters = [dropShadow];
};
var thb_mcl:MovieClipLoader = new MovieClipLoader();
thb_mcl.addListener(tblListener);
thb_mcl.loadClip("images/"+thumbsrc, holderMC);
}
FlashKit > Flash Help > Flash ActionScript
Posted on: 05-09-2006, 05:32 PM
View Complete Forum Thread with Replies
Sponsored Links:
Dynamic JPGS, Dynamic Images, Load Image
Just a little not for those who have problems using dynamic loaded jpgs.
If you want to dynamically load some jpgs here is some code I picked up off the forum
Code:
//Step1
createEmptyMovieClip("img",0);
img._visible=false;
//Step2
img.loadMovie("test.jpg");
//Step3
this.onEnterFrame=function(){
BLoaded=img.getBytesLoaded();
BTotal=img.getBytesTotal();
percent=BLoaded/BTotal*100;
//Step4
if(BLoaded == BTotal && BLoaded>0){
img._width=726;
img._height=641;
img._visible=true;
delete this.onEnterFrame;
img._x=0;
img._y=0;
}
}
When you save your JPG in photoshop it gives you a few options for saving your jpg.
1) BASELINE (STANDARD)
2)BASELINE (OPTIMIZED)
3)PROGRESSIVE
It has to be a baseline image, for whatever reason. No clue!
View Replies !
View Related
That Fancy Dynamic Flash Movie Resizing...
People...has anyody got a cool solution?
I came up with (a long time ago) with the DOM based solution to dynamically control the movie's size...adjusting it by directly changing the OBJECT tag style attributes.
This worked fine on Windows Systems...but naturally didn't work on Mac+IE....
About one month after I found out this "really cool idea", someone told me that macromedia was publishing instructions on how to dynamically resize da movie...(I've never found such article...anyway).
I've now given a look at the MM site and they are using the iframe tag...which is not so widely supported..
It looks like it's working fine for my IE6 sp1 (plus on the next IE6 sp1b)...and on NN7.1.
BUT Netscape doesn't support the onResize event...so naturally Flash doesn't automatically get to trigger the Stage.onResize() event. (this means that for NN - and Opera - I have to manually reload the page - through JSP - and have the width-height variables be passed to Flash through the movie's url).
Is there any cooler and more compatible way of working this out?
I've never used the div tag, which I don't really know much about, a side from the fact that it's something very flexible.
Any suggestion greatly appreciated..
by the way, I'll might post a link for Apple users to test!
View Replies !
View Related
Trying To Load Dynamic Images
yes i know this has been discussed before but i dont know how to exactly use the information found on the site although im still looking.
i have a main swf that is loading a different jpeg 1-6 in order every 5 or 6 seconds. i want to load these jpegs dynamically as the main swf plays.
Next month ill replace these 6 jpegs and hope they load dynamically on the main swf.
im having trouble doing all this and want to start from scratch (actionscript wise) can anyone help. im a sorta newbie to the actionscript i mean i know wht the script does i just dont know how to write my own yet.
So basically what i want to do is load 6 jpegs externally using variables or any other way that is simple or can be shown to me specifically, and that it wont cache the jpeg images so i can overwrite the image and it get updated on the flash.
please help this is VERY VERY important.
thanks
View Replies !
View Related
Load Dynamic Images.
Good day.
Can some one help we to do this. I have images that are buttons, I want to click on one of the buttons and that image is then dynamically loaded into its own window. But not a new browser window. What I need is something like you click on the image and you get a bigger version of that image with the background faded slightly and an option to close the image and carry on viewing the rest on the images and bit like this> http://www.avoca.ie/index1.php
or this one>
http://www.photodrive.eu/
Any help would be great!
View Replies !
View Related
Dynamic Images Won't Load
Hi, I had my dynamic images loading fine locally and on the web but then I made some changes to the graphics and reuploaded everything now my dynamic images do not load but it still works locally! Any ideas please?
View Replies !
View Related
Load Dynamic Images (.gifs)
Hi Folks!
Need help! Im developing a dynamic galery in Flash and need to load dynamic Pics (.gifs) on runtime! But this is not working - jpg is no problem but transparent gifs wont load!
Any Ideas???? I know that it is not possible to load .png on runtime - maybe the same with .gifs
I use the loadMovie function - just for Info!
Would be great if somebody can help me!
Visit: www.yellowservers.de
View Replies !
View Related
Load Images Dynamic With A Preloader.
Hi. I would like to know how to add a preloader on my picture wiewer. I use the tutorial in the Flash MX Special effects section (Create a photo gallery). When I press the next button I want a loader bar to appear but I dont know where I should add it?
Anyone who knows?? I want it to look like the ones on http://www.b7ven.com
Thanks..
View Replies !
View Related
Load Dynamic Images As Thumbnails...
Hi,
can anyone help me???? in building an application where we can load images from xml into flash movie as thumbnails and on click of the thumbnails the image enlarge.
Or atleast help me in loading images into a movieclip with scroll bar.
thankyou in advance.
View Replies !
View Related
Dynamic Array Gneration&load Images(MX Example)
Here the code , and it's been done in Flash MX:
//Prepare data
//number of question
dArray = new Array();
//right question number
cArray = new Array();
tempArrayLength = Number(qLength);
tempArrayCorect = cString;
for (i=0; i<tempArrayLength; i++) {
dArray[i] = i+1;
cArray[i] = Number(tempArrayCorect.charAt(i));
}
stop();
Let me explain :qLength is the number been loaded with loadVariables ,and cSting is a long number string 112323232321 , loaded also with loadVariables .
Now , when i run it in debugger , it's works fine , but on regular run - no , it's not running .
The second question is about my try to load images inside the movie using as an example a sample of loadimages from MX samples .As i understand/misunderstand that it works only as movieClip action ?
Can i call it independent of movieClip events ?
Or can anyone suggest a way to load images ?
TIA,
Muad'Dim
View Replies !
View Related
Xml Pics Into Dynamic Movieclips... To Load Images...?
Can anyone help me please...I'm new to xml and flash integration.... so please bear with me!
I'm calling in images from xml like so....
Code:
image[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
The image paths are appearing in the output window via a trace. So that bit works.
I cant get them to load into the movieclips generated to hold them.
Code:
while (Number(n)<_root.no_ofpics) {
n = Number(n)+1;
bn = "button" add n;
duplicateMovieClip("button", bn, n);
setProperty(bn, _x, Number(getProperty(bn, _x))+Number(n*(getProperty(bn, _width)-12)));
//for (var i = picsroot.firstChild; i != null; i=i.nextSibling) {
bn = attachMovie (bn add ".n", "bn" + count, depth ++, {} );
somehow...load images!?!
How should i be expressing the load in this case?
bn[n].loadMovie.image[i];
or
"bn" + count.loadMovie(image[i]);
or even
loadMovie("images/image"+n+".jpg", bn add ".blank" );
or similar?!?
this is bending my brain!
View Replies !
View Related
No Matter What I Do, Images Wont Load Into My Dynamic Textbox
Hello all,
I have been searching these forums and online for 2 days now and I have finally broken down and posted a new thread.
Please, I am using Flash MX 2004 Professional.
I have the textbox on the main timeline with an instance name of "mediatxt" and the "render text as html" option selected. As far as the code it is on the main timeline in the actions layer and it is as follows:
ActionScript Code:
text_md = new LoadVars()
text_md.onLoad = function ()
{
_level0.mediatxt.htmltext = this.mediatxt;
}
text_md.load("Media.txt");
stop();
The html loads fine, no images appear!
Does anyone know why I cant load external images into a dynamic text field?
Thank you in advance,
Xman 51
View Replies !
View Related
Dynamic Load Of Images In To Established Timeline Effect
Is it possible to dynamicly load images in to an already established timeline effect?
Steps I've done.
Stuffed a JPG in to the library by draging and dropping it in to the SWFs library.
Dropped the JPG on to the main stage
Right clicked the image then going down to Timeline effects and choosing an effect.
Completing any changes in effects dialogue box and then clicking OK.
Play the movie, and pat myself on the back that it worked.
So then, how can I get Actionscript to load an image dynamically in to that same Timeline effect and have it do the effect to that instead of the one found in the library?
I'm using Flash MX Professional 2004.
View Replies !
View Related
Dynamic Flash Images Don't Load In Intenet Explorer Until Mouse Over
Has anyone ever seen this behavior before where dynamic flash Images don't load in Internet Explorer until you place the mouse over the flash object? It works fine in Firefox. I am thinking it must be the way I wrote the actionscript. I tested it with and without the javascript wrapper to prevent users from needing to click on the object to activate it.
Here's the page to show you an example...
http://www.death-by-design.net/product.aspx?c=tshirts
Thanks for any leads or information on this issue!
-Matt
View Replies !
View Related
Load Movie With Formatted Dynamic Text (only Displays Images)
hi, i made a movie called clases.swf that contains a dynamic text(that contains images), and it works perfect, but when i load it into a main swf called arte.swf, it only displays the images without text.
here is the code of clases.swf
var format = new TextField.StyleSheet();
var path = "estilo.css";
format.load(path);
format.onLoad = function(loaded) {
if (loaded) {
my_txt.styleSheet = format;
myLoadVar = new LoadVars ();
myLoadVar.load("clases.php")
myLoadVar.onLoad = function (success){
if (success == true) {
my_txt.variable = "texto"
my_txt.htmlText=myLoadVar.texto;
}
}
} else {
my_txt.text = "Error loading CSS file!";
}
};
how do i modify the code to load the dynamic text on the new invisible movie on arte.swf (on the main swf)???
please i need help urgently!!!!!!
View Replies !
View Related
Load All Images From The Images In 1 Folder (named By Random Number)
Hi Guys,
I've got a gallery style viewer, you click on an image and it enlarges. It pulls in images which are numbered 1 to 12 in a folder called 'images'. I want it to pull in randomly numbered images instead. so i suppose i want it to search the folder for images named 1.jpg up to 1000000.jpg and pull them in.
I've uploaded it to: www.dhardy.co.uk/gallery.zip as it'll become clearer then!
Thanks in advance! dave.
View Replies !
View Related
Attaching Multiple Images - Load Images One At A Time?
I have a photo gallery that loads many images using a for loop (image data is from XML file). Simplified code looks like this:
Code:
var photos_xml = new XML();
photos_xml.ignoreWhite = true;
photos_xml.onLoad = function(success) {
if (success) {
var photos = photos_xml.firstChild.childNodes;
var itemCount = 0;
for (var i = 0; i < photos.length; i++) {
var path = photos[i].attributes.path;
// attach the photos
var photo_mc = _root.center_mc.photosLevel1_mc.attachMovie("photoFrame_mc", photoName, itemCount);
photo_mc.empty_mc.loadMovie(path);
itemCount ++
...
Then on the photoFrame_mc clip I have a loading like:
Code:
onEnterFrame = function () {
loader_mc._visible = false;
var t = empty_mc.getBytesTotal();
var l = empty_mc.getBytesLoaded();
percent = Math.round((l / t) * 100);
if (l == t && t != undefined && t > 10) {
loader_mc._visible = false;
delete this.onEnterFrame;
} else {
loader_mc._visible = true;
if (isNaN(percent)) {
percent = 0;
}
loader_mc.percent_txt.text = 10 - Math.round(percent / 10);
}
};
So what happens now is that many images get attached at once and they are all loading at the same time.
What I'd like to do instead is to have them load one at a time. The first pass through the for loop attaches an image and then it loads, but it doesn't move on to the next image until the first one is done loading. Is that possible?
Or maybe is it better to let them load all at once? I just think that when the image count is very large it will really bog down loading so many images at once and it might be best to load one at a time. Please advise.
View Replies !
View Related
Load From Txt File ..then Do Sequence Load Of Images...
im loading from txt file links of images and want to load each image in each mc...
it works ok though have some issue with sequence loading images...
here's the script..
ActionScript Code:
stop();
_level0.sekcija = 'WEB';
_level0.leto = '2006';
//define max value
max = 0;
var leftMax;
var lvData:LoadVars = new LoadVars();
var locText:Array = new Array();
var locImg:Array = new Array();
_level0.datoteka = '../edit_module/web_2006.txt'
lvData.load(datoteka);
lvData.onLoad = function(bSuccess:Boolean):Void
{
if (bSuccess)
{
trace("define max load ok");
//if load success
for (i=1; i<11; i++)
{
if (eval("this.picture"+i) != undefined)
{
locText[i] = eval("this.text"+i);
//load img in MC with preloader
locImg[i] = eval("this.picture"+i); //get the pic link into array
//test preloader
trace(i);
_level0.current_selection = "";
var test = eval("_level0.container.film_trak.mc_load.mc"+i);
if (_level0.current_selection == test)
{
stop();
}
else
{
_global.containerMC1 = test
_global.containerMC1.loadMovie(locImg[i]);
_level0.preloader1.gotoAndPlay(2);
trace("test this");
_level0.current_selection = test;
}
//test preloader
if (locText == "" or length(locText) == 0 or locText == "
" or locText == "
")
{
break;
}
}
else
{
break;
}
}
trace("loop end");
trace(max);
leftMax ;
}
};
and here is the script IN preloader witch is in seperate mc
ActionScript Code:
this.onEnterFrame = function() {
trace("function preload strat");
percent = (_global.containerMC1.getBytesLoaded()/_global.containerMC1.getBytesTotal())*100;
if (!isNaN(percent)) {
if (percent == 0) {
percent_display = "";
} else {
percent_display = Math.ceil(percent)+"%";
}
this.loadbar._visible = true;
this.loadbar._xscale = percent;
if (percent>1) {
this.reelmc1._visible = true;
}
_global.containerMC1.stop();
}
if (percent == 100) {
trace("preload func. 100%");
this.gotoAndStop(1);
delete this.onEnterFrame;
this.reelmc1._visible = false;
percent_display = "";
this.loadbar._visible = false;
_global.containerMC1.play();
trace("test tole");
trace(containerMC1);
}
};
stop();
hmmmmmm
now let me explain...
the preloader function doesnt start until the loop (for) is finished!?!?!
i dont get this!
i wnat that preloader works for every load..for every image...
can anyone tell me what am i doing wrong?
View Replies !
View Related
Replacing Flash Images With Dynamic Images [please Help]
Ok, I created some flash applets doing some image effects..
like fading between 2 images and so on...
lets take that one.. it is simple..
there are 2 images and in the timeline they fade into each other in a never ending loop.
Now what I want to do.. and where I am stuck.. is the following:
I want the "applet" to work as before, but.. if there are images in the same folder, to load the images and use them instead of the embedded ones.
Actually replacing dynamically the internal images
I think there is no problem achieving the second part..(if they exist) but i'm stuck in loading the images.
I tried loadMovie and loadMovieNum.. but the best I achieved was overlaying right at the beginning but then just for one loop.
Any help would be appreciated
Luciano
View Replies !
View Related
Anyone Fancy This?
below is a small project I am trying to do. However I do not have a great deal of experienec with Action Scripting, therefore I am looking to out source it. Feel free to take a look, and I am willing to pay, obviously. Paypal etc. If you are interested, send us an email and I can send you the brief again with the attached images.
The Project
The ultimate aim is to display text messages in a timeline of animations.
To begin the user is presented with 10 text areas that they can enter around 5 lines of text. (see example_text_input_screen.gif) Each area represents a separate dynamic text swf file i.e. Text Area 1, when text is entered here, it will also change the dynamic text field of text_1.swf.
Each dynamic text file is called “text” and are numbered. (see folder_and_contents.gif). I will be creating these dynamic text files. Howvere please create an example dynamic text file that works with the project.
The areas that have had text entered and are wanted to be played are then selected (radio button, or switch). The user can choose how many text areas will be displayed, simply by pressing the ON/OFF button.
Once the areas have had the input text entered and turned on (radio button or switch) the user then presses the Play button.
The swf file then fills the screen and starts to play the “Text_1”. (see example_timeline.gif), the player then plays two swf animations (anim_1 and anim_2), one after another. Then again the next selected text file is then played followed by the next 2 anim files. A text file is played at the start and after every 2 animation files.
The animation files will be changed regularly, therefore I want to be able to drop into a folder a number of .swf files. These .swf files will be basic timeline based animations. E.g. an animation of a ball bouncing. These files can be named or numbered anyway needed. Also if needed these files can have action script in to perform the next operation. Please supply and example. I will create these animations. I only need the ability to drop them into the folder. These animations will be called “anim_1” etc
To escape the full screen mode, the user will need to press esc. Or a certain area of the screen, whatever works really.
View Replies !
View Related
Fancy Buttons
I want to make a button that has a popdown menu when you rollover with the mouse
|-------|
| BUTTON|
|-------|
|
|
------Button
|
------Button
|
------Button
How do I do this?
View Replies !
View Related
Fancy A Quickie?
Sorry this is probably somewhere in the help files, but I couldn't find it...
how can I change the font size of a dynamic text box with the html tags enabled? I tried <font size=20> but this didn't want to work.
Thanks
View Replies !
View Related
Fancy Flash
I'm trying to create a fancy, flashy splash page for a website, along the lines of the intro seen here:
http://www.abdullahbakhashab.com
I'm familiar with Flash 5, but for this project chances are I'll be using MX, I know this involves a lot of actionscript, and other things - some of which are NOT my forte, but I just need a very general idea of how to go about doing something like this.
Any ideas/suggestions/pointers would be very helpful
Thanks in advance
Sid.
View Replies !
View Related
Isn't It Fancy Or Fussy To Do That ?
Hi ,
I am going to stick an external file (no matter a text file or an action script file) to my flash file. This external file will be put in different directory of my computer. My idea is that when people copy my swf to other computer, my flash file will stop automatically (because without the external file). Isn't 2 fancy to do that ?
Or can you suggest some way not to let people read my flash file in other machine ?
View Replies !
View Related
Fancy Words
Please help me make a really cool title to make my new movie stand out think of anything tell me the script so I can copy it I use Flash 5 e.g a wavy pattern black and white use 1 layer! It is gonna be called True Crime and with small letters streets of L.A I will b very grateful thaaannnkkkzzzzzzzzz!
View Replies !
View Related
[F8] Fancy Menu
Having only done basic actionscript, I'm trying to move up in the world, and I'm having difficulty. With every other internet techology I've taught myself, I start by deciding what I want, then figuring out how to achieve it, but for some reason I'm on a serious mental block here. Can someone get me jumpstarted?
I need a menu with 7 graphical items:
1 2 3 4 5 6 7
where the item to the farthest left is largest in physical size. if someone clicks on, say, "5" in this example, 5 will scroll to the left, getting larger as it does so. As it scrolls to the left, 1,2,3 and 4 with drop off one at a time reappearing instantaneously in small size on the right of the menu. So, after someone has clicked "5" the menu will look like this:
5 6 7 1 2 3 4
Can't get my head around where to start this, or how. Any thoughts, ideas, or questions? I'm using Flash 8.
Thanks for reading this message.
View Replies !
View Related
Fancy Preloader.
Since flashing i've been creating all my sites with simple bar, percentage preloaders which has been all well and good. However, these are begining to look a little boring and i notice when looking at some sites that the preloaders appears to be small movies playng inline with the value of the loading.
ie. clock hands moving signifying the progress made etc
Does anybody have a link to a tutorial which would explain how this is done, i imagine it requires a 100 frame movie and some actionscript to perform, but that's the extent of my knowledge.
Thanks all.
View Replies !
View Related
Too Fancy For Gotoandplay( )
hi evreyone
am making a language selection for my site web
its need to be fully in AS ( cause am too fancy for gotoandplay( ) )
what i want is the selected language move to a point while others disapear
thx evreyone for help
u can dl my source where i comment better my problems
View Replies !
View Related
Fancy Scroll Bar
Hello,
I would like to create a scrollbar that imports external SWF like this site:
http://www.firstbornmultimedia.com/#...folio/preview/
I had created something similar in AS2 but now I would like to start from scratches in AS3 to built something a bit more "professional".
can anybody help me to get started??
thank you
View Replies !
View Related
Fancy Movements, Is It AS?
http://www.ninjacruise.com/5hiver/blanco.htm
press info
the tantacles that swiths around.
Have an AS script for similar movement?
lets say i want a plant to move like this.
Wich program should i draw the plant in?
Fireworks MX ? photohop`? og just in flash MX?
Freehand MX?
flash rox
View Replies !
View Related
Anyone Fancy A Challenge?
I need this solving its bugging me, and I can't see where the problem lies.
I have a flash movie that loads in some XML and CSS, but I want the text to fade in, now this works fine, to the extent that it fades in some text from an xml file, but although I am loading in the CSS it doesn't seem to work. I have put a trace in and it shows that it has loaded. The problem is I don't have a stripped down version small enough to fit on this site, so I will need to email the files. Anyone who is willing to help me will receive my gratitude and I will be forever in his/her debt.
My email address is info@nicktoye.co.uk
Many thanks in advance
View Replies !
View Related
Those Fancy Flash Ads
take a look at this page and wait, an advertisement for a movie with Nicole Kidman should start....
http://www.channel4.com/film/
this is done in Flash and is shown in the center of the HTML page....
anyone know how?
Is this a simple thing of making a flash movie (swf), background transparent, placing it in a div, then positioning the div on the page.....is that simple or is there more to it?
** sorry if I've answered my own question but I just want to be sure **
View Replies !
View Related
Fancy Menu
Having only done basic actionscript, I'm trying to move up in the world, and I'm having difficulty. With every other internet techology I've taught myself, I start by deciding what I want, then figuring out how to achieve it, but for some reason I'm on a serious mental block here. Can someone get me jumpstarted?
I need a menu with 7 graphical items:
1 2 3 4 5 6 7
where the item to the farthest left is largest in physical size. if someone clicks on, say, "5" in this example, 5 will scroll to the left, getting larger as it does so. As it scrolls to the left, 1,2,3 and 4 with drop off one at a time reappearing instantaneously in small size on the right of the menu. So, after someone has clicked "5" the menu will look like this:
5 6 7 1 2 3 4
Can't get my head around where to start this, or how. Any thoughts, ideas, or questions?
Thanks for reading this message.
View Replies !
View Related
Fancy Movements, Is It AS?
http://www.ninjacruise.com/5hiver/blanco.htm
press info
the tantacles that swiths around.
Have an AS script for similar movement?
lets say i want a plant to move like this.
Wich program should i draw the plant in?
Fireworks MX ? photohop`? og just in flash MX?
Freehand MX?
flash rox
View Replies !
View Related
Anyone Fancy A Challenge?
I need this solving its bugging me, and I can't see where the problem lies.
I have a flash movie that loads in some XML and CSS, but I want the text to fade in, now this works fine, to the extent that it fades in some text from an xml file, but although I am loading in the CSS it doesn't seem to work. I have put a trace in and it shows that it has loaded. The problem is I don't have a stripped down version small enough to fit on this site, so I will need to email the files. Anyone who is willing to help me will receive my gratitude and I will be forever in his/her debt.
My email address is info@nicktoye.co.uk
Many thanks in advance
View Replies !
View Related
Fancy Shine Effect
Hi,
I need to make something like a gold shining effect out of this text (as attached) ...I've seen tons of cheezy effects , does anyone have a good tutorial , example in flash or even after effects example of this? I need something that looks good and there are no restrictions on type of shine as long as it has that goldy feel.
cheers
View Replies !
View Related
[F8] Fancy Image Gallery
Hi I was wondering would the image gallery seen here (if you click on any of the screenshots it appears) be created via flash and if so could anyone give any pointers on how one would go about doing it?
View Replies !
View Related
Fancy New Image Show
Ive noticed a lot more sites using this...
when you click on a thumbnail (or link), the screen fades to almost black and the image appears in the centre of the page.
a very "web 2.0y" look but could someone shed light on this technique?
View Replies !
View Related
How Do I Make A Fancy Drop Down?
Hi,
I need to make a drop down list with graphical back grounds on each item, the item's text and link come from an xml file and when one rolls over an item an image appears at the top of the drop down.
Now, my suspicion is that the standard drop down component is not quite up to this level of customization so I reckon I should create my own.
How does one do this with Flash 8? Is it a matter of attaching a movie clip for each item and having a button on each item that says stuff like 'on rollover then highlight this'??
Cheers, CN.
View Replies !
View Related
New Fancy Cursor Can't Click
I have just made new cursor for my flash movie, and put this code into an actions layer:
MyButton.addEventListener(MouseEvent.CLICK,doMenu);
Mouse.hide();
function onMove (motion:MouseEvent):void {
kursor.x = mouseX;
kursor.y = mouseY;
};
stage.addEventListener (MouseEvent.MOUSE_MOVE, onMove);
Function doMenu is in another place, it works, I checked with normal cursor. But MyButton is unclickable with this new cursor. What can I do?
View Replies !
View Related
Fancy Text Input
Here's a little experiment I did to create a more visual input field. Also, the code is pretty flexible, so that it can be used for practical things as well.
http://stars.meido-online.com/Stars/text_input/
The source can be downloaded by clicking the Flash symbol in the upper-left corner.
Other sources and experiments can be found on:
Meido (+) Stars
Tell me what you think
View Replies !
View Related
Fancy Animated Preloader
Does anyone know of a tutorial explaining how an effect like this preloader is done? http://www.sprewellmotorsports.com/
It's the same preloader on all pages what I am most interested in is the animation of the actual bar.
View Replies !
View Related
Fancy Animated Masks
I am looking for a tutorial describing how to do an effect like the mask that appears when you click on a new section. I am trying to figure out how to make different types of effects so a simple tutorial would be beneficial.
http://www.crossfadeonline.com/
Thanks guys.
View Replies !
View Related
Fancy Button Work
hello.
i am fairly new to flash and hopefully this is not a totally dumb question...
i am trying to make a button that expands and contracts smoothly when someone pushes it. i did the tutorial on this site for something like that but did not find it was exactly what i was looking for or i have some questions on it.
i tried making a movie clip and making the circle expand and contract and then put this in a button but it was not working.
i tried the tutorial where one ends up with a movie clip and then programs it and it expands and contracts smoothly but then it goes to a URL - i tried changing this to going to gotoNext Frame but that was not working.
Can anyone help me on this?
- Olivia
View Replies !
View Related
|