...I Dont Get Anything About Flash...
Ok I just got the new flash program from christmas and I just watched a video on Newgrounds showing me how to do the moving of the circle. Thats about as far as I can get.
I was trying to make a flash with FF6 sprites in it but I cant get the crap to work right. I can get a background up but then when I try to put a sprite over it 2 things happen.
1. The sprite pixils up and looks really nasty, and 2. I cant figure out how to get the background of the pic to be transparant.
If anyone can help me I would appreate it a lot.
Also if anyone could send me a finished flash so I can look at the format of it. It would help a lot.
EDIT: I'm using Flash MX 2004
EDIT AGAIN: I really need help, plz!!!
FlashKit > Flash Help > Flash Newbies
Posted on: 01-08-2004, 09:57 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Check Dont Works,I Dont Know Where Is The Mistake
What I´m trying to do is next. When you roll over a button , him has to check if a mc has the frame in number 27 and if its oky tell another mc to play o what ever
on (rollOver) {
if (_root.klip.de.klips.pantalla.klips.pntgrand._curr entframe == 27) {
_root.klip.de.klips.pantalla.pntgrand.gotoAndstop( 1);
} else {
_root.klip.de.klips.pantalla.pntgrand.gotoAndPlay( 2);
DONT WORK I DONT KNOW WHY
if (_root.klip.de.klips.pantalla.pntgrand.currentFram e<=27) {
tellTarget ("_root.klip de klips .pantalla.klip panta back") {
gotoAndPlay(2);
}
}
}
}
dont work ider
Easy Question... I Dont Know Why I Dont Know It....
erm..
this is a bit stupid really.. what do i put on a button instance to make a file download to the user's computer..
eg when they click on the button it downloads a jpeg from the sever..?
stupid aint it...
Dont Understand Why This Dont Work
ok this file is from another post and workes fine as far as the movement and stopping. i tried to add a button to it but the function seems to overtake every other script in the movieclip. heres the fla. is there a workaround or am i doing this wrong?
thanks for your time!
New Fonts Dont Appear In Flash MX
I've recently installed (with copy - paste)
20 new fonts I want to use in my flash site.
But the new fonts dont show up in the font
menu in flash...
I installed the fonts (using windows XP)
to C:WINDOWSFONTS
I restarted several times but this didn't
help me out... any1 suggestions?
Is It JavaScript..Coz I Dont Think Its Flash
I know this more than a newbie question...but I have to make it...
I just saw a page tha have a changes tha cursor it shows a different cursor ...whent i browse on the page.....the page is (http://www.manastungare.com)
Is it Java...
Can someone tell me the script please ...???
Thanks Ya'll......
Flash Dont Work
hi
ive got a dell pc running windows xp with 4 login accounts,the pc is regestered to my wife,the problem i am getting is that flash works ok on my login account but will not work on the other 3 accounts,have tried uninstalling,re installing on both mine and my wifes accound but am still unable to get flash working on all 4 pc users any suggestions !
Dont Know How To Put Flash Components Together?
Hello,
I know how to make different flash components, e.g. sound slider, image slider etc, but when i try to put them together to make a website they dont work. I have my template for my website in the flash doccument, but when i try to imput the sound slider that i created, it doesnt work when i preview it, it just stays as a still image and no sounds plays.
Do you need some action script to make movies in a flah website work togeter, or does it just play when it is imported into the doccument.
Thanks very much,
Billy Joe
I Dont Want Flash To Refresh
hi, i have a site that loads 1 of 3 swfs for navigation. The problem is that when a button is clicked the flash file refreshes. I only want the file to refresh if the browser is refreshed, not if a button is clicked in the file...
here's the site:
www.pandoraultra.com
here's my container script:
filename = ["nav_red.swf", "nav_white.swf", "nav_gray.swf"];
path = "http://www.pandoraultra.com/navigation/";
i = filename.length;
k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);
the main navigation is 1 of 3 swfs that loads, click any of the buttons and u will see the swf reload and a new file in its place.
How do i fix this?? Thanks for any help
Why XML Dont' Work In Flash 8 ?
Last edited by Profano : 2006-04-04 at 01:22.
Hi all.
Time ago i do a code for a simple xml>array converter. This code don't work in flash 8 (in Flash 7 work perfectly), and i don't find what's wrong. Can someone help me please?
/* ------------------------------------------------------------------------
Creo i namespace.
*/
if (_global.com == undefined) {
_global.com = new Object ();
}
if (_global.com.commoedia == undefined) {
_global.com.commoedia = new Object ();
}
if (_global.com.commoedia.Struttura == undefined) {
_global.com.commoedia.Struttura = new Object ();
}
/* ------------------------------------------------------------------------
/*
================================================
Funzione per la creazione di array da file XML
================================================
Metodo:Struttura()
Descrizione:Controlla in un nodo XML la presenza di figli
convertendola in array.
Parametri:nodo_xmlil percorso del nodo da convertire.
*/
com.commoedia.Struttura = function (link):Void {
// creato un nuovo ogetto XML.
var cont_xml:XML = new XML ();
var controlloProgresso:Function = function (xmlObj:XML):Void {
var bytesCaricati:Number = xmlObj.getBytesLoaded ();
var bytesTotali:Number = xmlObj.getBytesTotal ();
var percentualeCaricata:Number = Math.floor ((bytesCaricati / bytesTotali) * 100);
trace ("millisecondi passati : " + getTimer ());
trace ("bytes caricati : " + bytesCaricati);
trace ("bytes totali : " + bytesTotali);
trace ("percentuale : " + percentualeCaricata);
trace ("---------------------------------");
};
cont_xml.onLoad = function (success:Boolean) {
cont_xml.ignoreWhite = true;
var nodo_xml:XMLNode = this.firstChild;
trace (cont_xml);
var menuSito:Array = com.commoedia.main = new Array ();
for (var i = 0; i < nodo_xml.childNodes.length; i++) {
// Riempio l'array con i parametri dei figli.
menuSito.push (new Object ());
menuSito[i].nome = nodo_xml.childNodes[i].nodeName;
menuSito[i].link = nodo_xml.childNodes[i].firstChild.nodeValue;
// Controllo se i figli hanno a loro volta figli,
if (nodo_xml.childNodes[i].firstChild.hasChildNodes ()) {
// In questo caso creo un nuovo array.
var subMenuSito = com.commoedia[nodo_xml.childNodes[i].nodeName] = new Array ();
var elabNodo = nodo_xml.childNodes[i].childNodes;
for (var l = 0; l < elabNodo.length; l++) {
subMenuSito.push (new Object ());
subMenuSito[l].nome = elabNodo[l].nodeName;
subMenuSito[l].link = elabNodo[l].firstChild.nodeValue;
}
}
}
clearInterval (intervalloID);
trace ("intervalloID: " + intervalloID);
};
cont_xml.load (link);
var intervalloID:Number = setInterval (controlloProgresso, 100, cont_xml);
delete com.commoedia.Struttura;
};
error found...sorry
Dont Buy Flash Paper
I dont know about you, but when i bought my car i had the dealer take off thier dealer logo from the back panel of the car, something about paying ford 14k so they can advertise everywhere i went didnt seem right to me. I told the dealer remove it or i walk, and well they removed it, the promise of making some good cash to them ment comprimising free advertising for me.
When flash paper 2 came out, i thought of this... why would macromedia release a software that tacks a sizable logo on the top left corner of the FP toolbar and even worse, links directly to thier Flash Paper store page for purchasing the software. Now i know you might say, well flash has macromedia info on it, and so on ... but its not so blatant and in your face as a direct linked 55 x 85 logo on a mandatory tool bar that is seemingly unremovable.
As a long time customer of macromedia, it, to say the least, bothers me that they would relase a software with such a flagrant attempt at marketing. Now they say its not directly aimed at marketing thier product or advertising, but then why would you put a logo on something you sell.... the logo is nice, but its not such a grand work of art that it is needed to make the product better, but rather its an attempt at advertising.
The product is a great product and if you dont mind your clients or your internal staff viewing and linking directly to MM store within 1 scroll length and 1 click, then the software is great but if you take issue with paying someone money so they can advertise, well then dont buy it.
just my 2 cents i guess take it with a grain of salt...
Flash Display : Dont Want Square Showing For Flash Area
Dear Sir
I have flash portion in an html page
You can refer
http://www.prajaktasoftware.com/seals/retailconcept.html
When i move cursor the top area a sqaure appears shoing flash area
With a click on this area , it disappears but can i avoid being displayed in first place ...
This is very irritating when there are button in flash (on ehas to click 2 times toget result)
Refer ...
http://www.prajaktasoftware.com/seals/index.html
I will be greatful to you for this ...
Thanks in advance
Flash Files Dont Load.
Hello.
Im trying to upload a flash file through dreamweaver but once i try to view it from the web, it dosen't work.
Flash MX-FSCommand Dont Work
Can somebody help with this.....
Im doing a project that needed standalone projector for macintosh.... FlashMX FS Command (Full Screen=True, Scale=False) works on a single swf file only......but when it links to another swf file, the links started to load in the upper left of the screen....can anybody help me solve this????
--> Fonts In Flash That Possible Users Dont Have
If I use a pixel font in flash and the user that visits my site does not have that font, will the font register or not.
I always thought that flash compressed everything and packaged it together so you would not run into these problems.
But my menu uses dynamic text boxes with pixel fonts, and some computers cannot register the font?
whats the deal.
thanks
Please Help..created Flash Movie, Dont Know How To?
I created a flash movie using flash 2004 I have a movie saved as movie.swf however I want to use it as a webpage and so I openned it in frontpage 2002 and it works there and then I save it as index.html
when I open it on my desktop it works just fine in the internet explorer browser, however when I upload the index.html to my website hosting server then try to open my home page to view it will not display...do I need to save the flash movie in some other format to be able to use as a webpage, as a home webpage requires a index.html to be a home page...I am lost and new to this, any help would be appreciated..thxs
Flash 6 Scripts Dont Always Work In 8?
hi,
im a novice with flash and have been trying to get this little script to work in flash 8, but for some reason it doesnt. ive had this problem with a few other scripts as well. they work in 6 but dont work in 8. If anyone knows the answers or good resources on this problem i would be most appreciative. the script im using is below.
this is a script on a movie clip which holds 4 images, butted up next to each other. they are masked so only one is displayed. when this movie is clicked on the 4 images shift horizontally into the masked space.
this is the first movieclip
Code:
onClipEvent (load) {
accel =0.1;
rate = 0.3;
trace(_x)
_root.xkoord12=126;
}
onClipEvent(enterFrame) {
x=x*accel+(_root.xkoord12-_x) * rate;
_x+=x;
if(Math.abs(_root.xkoord12-_x)<1) { _x=_root.xkoord12; }
}
this is within the first movie clip on invisible button that covers the 4 images.
Code:
on (rollOver) {
_root.caption("view project", 2);
}
on (rollOut, dragOut) {
_root.remove_caption();
}
on (release) {
if(_root.xkoord12>-538) {
_root.xkoord12-=221;
}
if(_root.xkoord12==-758) {
_root.xkoord12=126;
}
}
www.rizndesigns.com/site_flash.rar
here is a link to the fla and swf.
any help would be greatly appreciated
Flash 8 Game Issue, Dont Know How To Fix..
i have a flash game i'm making for a class that's due on wednesday. it's a take on the space invaders type game and so far everything works except when i shoot the "aliens" they don't disappear. when the bombs drop on me they don't kill me either. is there anyone that can just take a look at the .fla and let me know if i missed something? thanks.
Flash Buttons Dont Work
I have put a path in the link field for the buttons and when i test the buttons in flash they work but when i try them i the browser they don't work. does anyone know why.oloughlinestates
Flash Buttons Dont Work
Someone help please i have my flash buttons linked to other pages in the website but wheb you press them nothing happens
see www.oloughlinestates.ie
Flash Dont Recompile Correctly
I have a .FLA file with some graphics and some external .AS classes.
Sometimes, when I modify the external classes and recompile the Flash movie,
it doesn't change nothing, it keeps compiling with the older class file. I tried to delete
the .SWF and recompile, but doesn't works...
If I restart my computer it does work, so I guess Flash is calling some kind of cache..
Any solution to this problem?
Thanks,
Ian liu.
Adobe Photoshop And Flash DONT Mix...
I download the photo gallery .fla file and all of the images in there and it works fine. The image names in the downloadable tutorial are image0, image1, image2, etc...
Here was the problem. Lets say I have other pics I want to load, so I change the name of the pics I want to image0, image1, image2, etc. I did all image editing in photoshop and saved them as jpegs. Then I go and put these pics in the SAME folder that the donwloaded pics are in from the tutorial as to replace the pics I downloaded from the tutorial in the animation folder.
When I go to preview the movie, nothing is showing up...Nothing has changed, I just replaced the pics that the tutorial gives us with new pics BUT I keep the names the same...so everything should work right? What was happening?
well, when I did the exact same image editing in firworks and exported them out as jpegs, sure enough they show up in flash. Its like photoshop puts some stuff on there so flash cant use them or something or fireworks does so flash can use them.
I dont know, do you?
Thanks...
Flash Butts Dont Werk?
sup guys, my ? today is
when i go to certain flash sites, when i click on their butts to enter their sites nothing shows up. i go to other sites and the same thing, now it doesnt happen on all of em but its annoying to know that its happening.
n e sugg
Adobe Photoshop And Flash DONT Mix...
I download the photo gallery .fla file and all of the images in there and it works fine. The image names in the downloadable tutorial are image0, image1, image2, etc...
Here was the problem. Lets say I have other pics I want to load, so I change the name of the pics I want to image0, image1, image2, etc. I did all image editing in photoshop and saved them as jpegs. Then I go and put these pics in the SAME folder that the donwloaded pics are in from the tutorial as to replace the pics I downloaded from the tutorial in the animation folder.
When I go to preview the movie, nothing is showing up...Nothing has changed, I just replaced the pics that the tutorial gives us with new pics BUT I keep the names the same...so everything should work right? What was happening?
well, when I did the exact same image editing in firworks and exported them out as jpegs, sure enough they show up in flash. Its like photoshop puts some stuff on there so flash cant use them or something or fireworks does so flash can use them.
I dont know, do you?
Thanks...
Why Dont My Flash Buttons Work?
I've been having some difficulty with opening my URL in the correct frame. I had a look at the guide on this site about opening URL's in specific frames when a button is presses, and it looks as if im doing the correct thing.
After i have created the button, I add a get URL action to the button. I type in the file name in the name of the file i want to open in URL section. This is not the problem, as the file does open when I open it in a blank window. However, when i input the name of the frame on my site i want it to open in, nothing happens. The frame i aminputing should be the correct name, as i am copying it directly from the HTML code. Could please tell me what i am doing wrong, and how i can get my URL to open in the correct frame on my site.
Thank you
Gif Animations Dont Play Within Flash?
I have a Gif animation I want in my flash file.. but when i preview the flash, the animation doesnt play.
Any ideas?
Thank you in advance for your replies.
Php Variable Dont Load In Flash
Hi, i'm making a registration form for my flash site, i have the code in actionscript and in php
In the php i check or the username and email is already in use
i work with the variable $status, if the username is in use $status = 1
the problem is, even when i type a username that already is in use, he always go to frame 2, but he dont set the username in my database.
Do sombody see the problem here?
this is my php script
Code:
<?php
include('connectie.php'); //connectie met de database
$naam = $_POST['naam'];
$paswoord = $_POST['paswoord'];
$email = $_POST['email'];
//naam
$dbnaam = mysql_query("SELECT COUNT(*) FROM `leden` WHERE naam='".$naam."'") or die(mysql_error());
$result = mysql_result($dbnaam,0);
//email
$dbemail = mysql_query("SELECT COUNT(*) FROM `leden` WHERE email='".$email."'") or die(mysql_error());
$resultaat = mysql_result($dbemail,0);
if($result > 0) {//als de naam al in de database staat
$error = 1;
} elseif($resultaat > 0) {//als het email al in de database staat
$error = 2;
} else {
$error = '3';
mysql_query("INSERT INTO `leden` (naam, paswoord, email) VALUES ('".$naam."', '".$paswoord."', '".$email."')") or DIE(mysql_error());
}
echo "&flashError=".$error; //stuurt de variable $error naar flash
?>
this is my action script
Code:
//beveiligen van tekstvakken
naam.restrict = "a-z A-Z 0-9 _ -";
paswoord.restrict = "a-z A-Z 0-9";
paswoordr.restrict = "a-z A-Z 0-9";
email.restrict = "a-z A-Z 0-9 . @ _ -";
//button klik
myVars = new LoadVars();
registreer.onRelease = function() {
//geen naam ingetypt
if (naam.text eq "") {
fout.text = "No name enterd";
//geen paswoord ingetypt
} else if (paswoord.text eq "") {
fout.text = "No password enterd";
//geen paswoordr ingetypt
} else if (paswoordr.text eq "") {
fout.text = "No password? enterd";
} else if (paswoord.text != paswoordr.text) {
//paswoorden zijn niet gelijk
fout.text = "The passwords does not match";
//geen email getypt
} else if (email.text eq "") {
fout.text = "no e-mail enterd";
//naam moet 5 letters zijn
} else if (naam.text.length<5) {
fout.text = "nickname must be at least 5 letters";
//paswoord moet 5 letters zijn
} else if (paswoord.text.length<7) {
fout.text = "password must be at least 7 letters";
//naam bestaat al
} else if (myVars.flashError == 1) {
fout.text = "username already exist";
//email bestaat al
} else if (myVars.flashError == 2) {
fout.text = "email already exist";
} else {
//tekstvakken worden benoemt
myVars.naam = naam.text;
myVars.paswoord = paswoord.text;
myVars.email = email.text;
myVars.sendAndLoad("registreer.php", myVars, "POST");
gotoAndPlay(2);
}
};
Flash Title Header Dont Fit
Hi..
Im rubbish..
ive tried alteering all the obvious? settings but my flash header (900 x 100px) is slightly chopped off when i view it from certain computers even if they are set to the 1024 x 768 resolution.
Basically ive made a normal html website with a flash header.
I can view it fine but my sister cant see all the header when she tries on her computer so i guess loads of peeps cant too.
Can anyone pleaseee help me,...
im lost
love joy
Dont Give The Focus To Flash
I use javascript to detect keys on the keyboard so that some buttons in the html are hotkeys. My script makes it so that if the user presses on an html button, it sends a command to flash and plays an animation. The hotkey for that button would be "e" for example.
Problem is, if the focus is on the swf, the user cannot use hotkeys until it clicks elsewhere in the html file. Let me mention that their is alot of changes of focus between html and swf.
So I thought about using a OnClick="window.document.somebutton.focus()" on the swf so I'm always focused on the html after the user clicked in the swf, but it won't set the focus anywhere else
Is there anyway to keep the focus on an html element all the time even when an swf was clicked?
Flash&php Combined Page,how To Make Flash Dont...?
I have a FlashHeader,
the site is PHP.
The FlashHaeder navigates the site
now i don't wan't that everytime i push a buton/link on the FlashHeader, it refrashe, starts from the frst frame. (now the problem is i have 3 languages and i would need the FlashHeader to be not refreshed.
I tried normal php i tried iframe, i know a way whit frames and a biger frame at 100% to scroll all togheter but i don't like frames and some serch engines to
here a dirty paint of my layot
http://www.ski-simulator.com/staff/layout1.jpg
(the links/pages i call whit "index.php?id=usage" (usage is an example)
Thanks for any idea or problem solve.
Flash Scroll BAR ...I Dont Understand The Problem
Ok here is the thing:
I have a flash movie (index.swf, or .html in this case) that loads another movie (Attitude.swf) Attitude.swf has a scroll bar component to scroll text. Now when I run inex.html or .swf and click the attitude button to load the other movie it loads, but! when I click the scroll bar its like its programed to go back to frame 1 and play attitude.swf again. I want it to scroll normal. I open just attitude.swf and it scrolls fine. Its just because it loads another movie. ANY SOLUTIONS ANYONE?
Export Flash, Visitor Dont Have The Font
when i export the whole movie, and view it with a computer without the font i used, i cant read the text i used in the movie.
i thought that you can use any font in flash mx and export it, and everyone can view it. how can i make it possible?
for your information, i already convert the text into symbol.
Dont Laugh, Can HTML Be Loaded Into Flash
I did a search on it and haven't found anything on it yet so my hunch is it cant be done. The reason why I ask this is because I have a html page that someone would like me to have in my flash movie.
Gifs Dont Display Properly In Flash
Ive been messing around in flash with some pixel art (GIF) and noticed the SWF had the images misplaced.
Here is how it looked like in Flash MX.
but when I published it was like this.
Here is the .swf file so you can see whats wrong.
http://www.julestm.net/1/dudemaker.html
YES You Can Write Arabic In Flash....dont Miss This
you have tried so manytimes to write arabic in flash but you couldnt!
well here its:
1- you need another program that will help you write arabic even if you dont have an arabic window.
the best program for this is AL-RASSAM
its free and its a small program to download.
2-write anything in AL-RASSAM program then click on Edit>copy&min
3-go to flash then press CTRL+V
after that go and choose one of the font that came with AL-RASSAM.
4-go to flas menu : veiw>anitilis text
you are done...
next time i will explain more but i hope this help.
and i will try to remember were did i get al-rassam from
for this moment check http://www.arabicsoog.com
Changed Image, But Dont Know How To Change The Flash
hi everyone,
I am new at flash and i wanted to edit a flash file that i was given.
The only thing i wanted to do was instead of seeing everything left to right, i want to see it right to left.
here are two links to give you an example of what i mean.
what i have now is:
http://gomavrix.com/ofer/flash/0200.html
what i need is:
http://gomavrix.com/flash/0200heb.html
What i am trying to do is:
1. Placing the camera to the right where the people are walking.
2. The 3 large pictures need to come from left to right to thier place.
3. The navigation text is placed correctly, but the animation is now. They are all messed up.
Can anyone help me on this one???
I will be glad to send you the .fla file.
Thanks,
Me
Whay My Flash Dont Work In Netscape
Im made one flash movie (3kb) and when I go to see that movie in Netscape (version 7.1) I get nothing like movie dont loaded! So please help me I have to find solution for this as soon as possible!
Whay My Flash Dont Work In Netscape
http://test.footballmercato.com:81
You'll see on left side there must be button 1-minute DEMO which I dont see in Netscape, but when you go to see that button in IE its ok!
One more thing when I put that flash alone on one page I can see it in Netscape, but in this page I cant!
Thx Chelo
Non Flash HTML Question (Dont Know Where Else To Turn)
Please go to http://www.cwsteam.com/
On the buttons on the left. THe links are written in text.
However it doesnt force an underline and when you mouse over it changes color.
Can anyone tell me how they do this? Or where I can learn?
I dont know where else to turn with this question.
Thanks!!!
Flash Player Dont Play On Startup
At first, I'm German, and I.m not good in English, so i try to tell you what I want.
I want this flash Player on my homepage:
http://www.flashkit.com/movies/Third...2905/index.php
But the sound only starts when I push the "play" button.
Wi want, that when i open my page or other users, that se sound would start (itself !? ).
One more: I want that when i open the page the sounds start to play without pushing the play button.
Like this player:
http://www.flashkit.com/movies/Third...0149/index.php
Can annybody help me ?
Why Dont Anchor Links Work In Flash?
I have a set of button that calls getURL to the same page but anchored..
getURL("index.php#services"."_self");
this doesnt seem to work in flash.. when i click on them NOTHING happens. sometimes some of these buttons would work, for some reason i dont quite understand. but most of the time they dont.. but if i try
getURL("index.php#services"."_blank");
//open in ne page
it always works...
how come?
tea
Does Flash Have Variable Indirection? If U Dont Know What That Is, Just Read This...
im trying to make a game of tanks in flash and the terrain will be just a ton of little green squares beside each other to resemble a hill....
______________________________________________
var x, y
for (x=1;x<=Stage.width/5;x++) {
for (y=1;y<=Stage.height/2/5) {
}
duplicateMovieClip(Ground,#"Ground"&x&","&y,this.g etNextHighestDepth());
}
______________________________________
whoever has a Ti-89 titanium calculator and can program on it would recognize that "#" as the indirection symbol... well it didn't work in flash.
now what i want to happen is it duplicates the "Ground" movie clip (just a simple green square) and the new movie clip will be named "Ground12,13" for example. i want the name of the movie clip to include it's x and y coordinate, or simply an incrementing number value. how can i do that??
External API Flash 8 Samples Dont Even Work
[font=Arial]What am I doing wrong here. I’ve read all the help I’m running Explorer 6 on XP sp2 but the external API component just isn’t happening even the simple examples that come with the application wont function any ideas???
Flash Buttons Dont Show Up In All Browsers
Hello,
It has been awhile since I used flash. I am pretty well versed in 3d studio max, photoshop, premiere, illustrator. I get by in dreamweaver, but am not what I would call proficiant in it.
I use dreamweaver MX, flash 8 , all the PC's I tested my page on had security set to MEDIUM.
I publish to make a swf file and a html file, default ,I think. There is a Radio button that makes it use flash version detection. I used that. I edit the html by adding a table,(1x1), at the begining of the page and drag the flash module/icon into it. I do this to make it center up better.
I did all the design,( not much design ,it is a simple page), from home.
I made an intro with Flash4D.
I made a simple flash page consisting of a banner and 2 animated buttons.
I did all uploading to site from home.
It all works fine from either PC I have at home.
It works fine from the laptop I use at work.
I work in a small strip mall, we are all on the same network, all PC have security set to mediuim.
When I try to view the page from any other PC in the strip mall , they all display the Flash4D intro just fine, but when they go to my simple page I made they can not see the 2 orange, animated buttons.
The banner does display.
Anyone know why this is happening?
here is a link to the intro http://www.animationlab.net/jet_intro.htm
or just go to the problem page directly at
http://www.animationlab.net/test.htm
Thank you for taking time to read this
[MX04] Using Flash For Sites That Dont Allow Javascipt
Hello All,
Im a semi-newbie in the flash world, and hopefully i can explain this question right. We have this program at work that shows if another co worker is online through our website and it uses all javascript that pulls the image of the user and info about them through an aspx file. When the user is logged on it shows one image, and when the user is logged off it shows another image.
My question is, for sites like myspace and whatnot that do not allow javascript but do allow flash movies, is there a way I can embed this code in a flash file so that its an embedded flv file but just basically passes on what the image is/clickable to launch the site that goes with it??
Hopefully this wasnt too confusing! Basically Im trying to get around sites that disable javascript!
Thanks,
Joe
Help Please Contact Code PHP & Flash Dont Work.
I got a form on a website and when you fill it out you click send and it's suppose to send it to my email but it gives me error 'undefined'.
Feedback.php :
Code:
<?php
$to = 'myemail@host.com';
$subject = 'Contact Form from Site';
$message = 'From: '.$_POST['from']."
";
$message .= 'Subject: '.$_POST['subject']."
";
$message .= 'Company: '.$_POST['company']."
";
$message .= 'Phone: '.$_POST['phone']."
";
$message .= 'Fax: '.$_POST['fax']."
";
$message .= 'Address: '.$_POST['address']."
";
$message .= 'City: '.$_POST['city']."
";
$message .= 'State: '.$_POST['state']."
";
$message .= 'Zip: '.$_POST['zip']."
";
$message .= 'Email: '.$_POST['email']."
";
$message .= 'Comments: '.$_POST['comments']."
";
$additionalHeaders = "From: Feedback<myemail@host.com>
";
$additionalHeaders .= "Reply-To: $_POST[email]";
$OK = mail($to, $subject, $message, $additionalHeaders);
if ($OK) {
echo 'sent=OK';
}
else {
echo 'sent=failed&reason='. urlencode('Theres seems to be a problem with the server. Please try later.')}
?>
My flash code :
Code:
function checkForm() :Boolean {
var missing:Boolean = false;
errorName_txt.text = errorCompany_txt.text = errorPhone_txt.text = errorFax_txt.text = errorAddress_txt.text = errorCity_txt.text = errorState_txt.text = errorZip_txt.text = errorSubject_txt.text = errorEmail_txt.text=errorComments_txt.text="";
if (name_txt.text == ""){
errorName_txt.text = "*";
missing = true;
}
if (company_txt.text == ""){
errorCompany_txt.text = "*";
missing = true;
}
if (phone_txt.text == ""){
errorPhone_txt.text = "*";
missing = true;
}
if (fax_txt.text == ""){
errorFax_txt.text = "*";
missing = true;
}
if (email_txt.text.indexOf("@") == -1) {
errorEmail_txt.text = "*";
missing = true;
}
if (address_txt.text == "") {
errorAddress_txt.text = "*";
missing = true;
}
if (city_txt.text == "") {
errorCity_txt.text = "*";
missing = true;
}
if (state_txt.text == "") {
errorState_txt.text = "*";
missing = true;
}
if (zip_txt.text == "") {
errorState_txt.text = "*";
missing = true;
}
if (subject_txt.text == "") {
errorSubject_txt.text = "*";
missing = true;
}
if (comments_txt.text == "") {
errorComments_txt.text = "*";
missing = true;
}
return missing ? false : true;
}
function sendMessage():Void {
var formOK:Boolean = checkForm();
if (formOK) {
message.from = name_txt.text;
message.subject = subject_txt.text
message.company = company_txt.text;
message.phone = phone_txt.text;
message.fax = fax_txt.text;
message.email = email_txt.text;
message.address = address_txt.text;
message.city = city_txt.text;
message.state = state_txt.text;
message.zip = zip_txt.text
message.comments = comments_txt.text;
message.sendAndLoad("feedback.php?ck="+ new Date().getTime(), messageSent);
gotoAndStop("send");
}
}
function backToForm():Void {
gotoAndStop("Form");
}
var dateDisplay:TextFormat = new TextFormat();
dateDisplay.font = "Georgia,Times,_serif";
theDate_txt.setNewTextFormat(dateDisplay);
theDate_txt.autoSize = "left";
var getDate:LoadVars = new LoadVars();
var message:LoadVars = new LoadVars();
var messageSent:LoadVars = new LoadVars();
getDate.load("today2.php");
getDate.onLoad= function() {
theDate_txt.text = this.theDate;
};
messageSent.onLoad = function() {
if (this.sent == "OK") {
gotoAndStop("confirmed");
} else {
gotoAndStop("failed");
failure_txt.text = this.reason;
}
};
gotoAndStop("Form");
Drawings In Flash Dont Show When I Publish Swf
hi guys.
well yeah when i draw in flash and i preview it as flash the drawings show but when i publish it they dont.
ne reasons why this would happen.
cause say i have a bmp image in the background set on layer 1 and then i draw something in layer 2 using the flash drawing tools it dosent show, when i preview the movie in flash it shows but not when i publish it.
but the weird thing is it will always show up if i have nothing else besides the drawing it self on the stage.
ne ideas how i can fix this problem cause id draw more in flash if i new why it does this.
and yes i make it that they are arranged so the drawing is in front and the its layer is above all the others i want it to be. so why does this happen.
thanks hope u know whats wrong.
Flash And Photoshop Colours Dont Match Up
Hi all
Can anybody explain this - I have designed a layout in photoshop and wanted to crop a section out to use as the background for my menu which I will be creating in flash. The problem is though when I tested it the colours dont even match up. Anyone got any thoughts or suggestions.
Cheers
Rob
|