Comments Welcome :)
Steventy2
Hey after a few Q&As here (and over in the actionscripting bit), i've managed to put my site together~ first try at flash and all, i'm rather proud of myself
check it out... and gimme some comments if you are so inclined thanks!!
FlashKit > Flash Help > Flash General Help
Posted on: 06-21-2003, 01:49 PM
View Complete Forum Thread with Replies
Sponsored Links:
Comments Please..
I am making a Operating System (like windows OS / Mac OS) in flash.
Its a simluation....
http://coulda-been-me.port5.com/GINW.swf
GINW = Glad Its Not Windows.
There are still "bugs" with it and its far from finished.
Tell me if you like it.
BEST VIEWED:
standalone player MX (dont use in a internet broswer)
640*480 (thats what size I made it in)
Again, Tell me if you like it.
View Replies !
View Related
XML And Comments BUG
Found a bug in flash mx 2004
do this
Code:
//any comment like this directly above the below constructor
var myXML:XML = new XML();
myXML.ignoreWhite = true; // the drop down list will not open automatically showing the methods until we delete the //any comment line
View Replies !
View Related
Comments Box
how would i add a small text based comments box where it shows up on the page w/out db support on my website? i was just wondering if it was posible.
--tyler
View Replies !
View Related
Comments Please
I am working on a template site for some friends. It is not completed but all comments and suggestions are welcome.
Link: www.beautifultorture.com
Then click on squad 7
View Replies !
View Related
Comments
hello everyone.
thnx to kirupa's site i have now started (as a temporary job) to make flash and swish templates. There's a site www.al-islam.co.nr and i have to copy the site and make a blank template out of it. Can u pls go and check the site and comment on what thing goes wrong so that i can start in a better way.
Thanx a lot.
View Replies !
View Related
Comments?
what do think of this site people???
http:\www.boogssoftware.com
check out the games under the fun stuff CD too...
P.S. you have to put the CD in the CD player for the contents to show up.
ciao!!
View Replies !
View Related
Just Want Your Comments To Help Me...
may you tell me anything about the "webdesign" section i'm building...
http://www.pixelemon.com
(the "photography" section is not my code...)
there's not many things in for the moment, but i need to have some comments to continue in the right way... all the
thanks, and remember that each bombshock awarded has been a beginner first
simplicity rules
View Replies !
View Related
Comments Box
ive bought a template for my photography portfolio. Done alot of searching on the net but still have no idea how to set up a database, add the variables etc to the comments flash at this site
http://bidclix.ca
help
View Replies !
View Related
Guy I Need Your Comments
hey guy i need your comments on my project. it have error when am loading it but i can handle it, i just want your suggstions or comment on my project. Here my the site
Test site pls visit it
its only for temporary hehehe. Feel free to tell me whats wrong with this one and i gladly appreciated all of your comments
thanks guys
View Replies !
View Related
Intro Comments
My first Intro i actually ever really tried to make (never finished most)
jus want some feedback as to what you guys think about it
(for a friends site)
http://www.tommoknappocreations.cjb.net
View Replies !
View Related
Comments In Flash
does anyone know how to a comment appear when you roll over a button in flash mx? Is it a component, or action scripted feature? I've seen it done at sites such as... www.trendax.com/flashframes.html
thanks in advance.
View Replies !
View Related
Comments/login
im looking for a simple way to implement a comments thing into news posts on a website. kinda like a mini forum. i dont wanna deal with registering and stuff like that, u just have a field for your name, and your message, and if possible it logs the ip to me - i know you cant just script this in flash, but arent there plugins, scripts, whatever? i usually import my flash files into a dreamweave html page anyway, so...
anyone know the script program or wahtever?
thx
id also like to implement something where "admins" could login with a username password, or even just a password to post news - but i think this would be reallllly hard..
View Replies !
View Related
I Got A Question That Needs Your Comments
Ok guys, I dont know much about action script and I need some help here. Is it possible to have an fla that will load variables from that fla into a new fla? They have to be TWO DIFFERENT fla's. I'm not talking like different scenes and stuff, but TWO DIFFERENT fla's. Just curious if that's possible or not and if so, how?
-Many thanx
-The Deviate
View Replies !
View Related
Your Comments Needed Please
Hi
Can someone check this app for me click on www.xerox.com.
This was buit in flash mx with multiple language (22) and dynamic graphics and interactions
javascript:WindowPopup('/KB_Connect/KB_Connect.asp?ArtID=WCPro55_sag_mainmenu&Xcntry=U SA&Xlang=en_US&prodID=WCP_55&solID=2348&var1=Triad ','media','width=640,height=480,top=30,left=30,scr ollbars=no,resizable=yes,toolbar=no,status=yes,men ubar=no')
View Replies !
View Related
Comments Page
I am making a interactive flash application that will go on a CD (and not online).
I have been asked to put a comments page that will be sent in email form....
Any idea where I could find a script?
Thanks!
View Replies !
View Related
Do SWFs Keep COMMENTS?
I know there's a toggle to remove all TRACE actions on Publish, but do "//" comments stay in?
I was just thinking, if someone takes the time to decompile a SWF, I want to make it as difficult for them as possible to figure out my code, so the last thing I want is my own comments helping them along!
~Ray B.
View Replies !
View Related
Comments Box In Flash
Can someone tell me how I would make a comments box in flash? Something where the users can put in there name and their message and it'll add it to the box so everyone can see and answer back? I have MySQL available if this is the easiest way. Any help or a point in the right direction would help thanks.
View Replies !
View Related
1st Site - Need Comments
I posted this in a different section but no response, maybe I should stick with the faithful Flash Help section.
I'm a 2 month old Flasher and this is my first site. Thanks to OldNewbie, Pellepiano, and everyone else at flashkit who helped me. I am still working on my colors and my intro. Please critic my site.
http://www.callerten.com
Thank you.
View Replies !
View Related
Can Someone Look At My Comments And Correct
Can someone look at my comments and correct or add too them, I want to make sure I know how this code works... thanks
function mover() {
//Moves the particle as time passes
this._y += this.speed;
// not sure
this._yscale += 10;
// not sure
this.speed++;
// add 1 to the variable speed
if (this._y>500) {
// if y is grater than 500 y = 0
this._y = 0;
// speed will generate a random number then
this.speed = Math.random()*10;
// multiply it by 10 and set yscale to 100
this._yscale = 100;
}
}
function starField(x, y, n) {
// Generates starfield using n # number of stars with dimensions of x,y
for (var i = 0; i<n; i++) {
// sets the variable i to 0, tells it that it is less than n and then adds one to i
var star = this.createEmptyMovieClip("star"+i, i);
// creates a variable star and a new movie clip named star
var dot = star.createEmptyMovieClip("dot", 0);
// creates a variable dot and a new movie clip named star
star._rotation = Math.random()*360;
// takes the movie clip star and rotates it by a random number * 360
star._x = x;
// not sure
star._y = y;
// not sure
dot.lineStyle(0, 0xFFFFFF, 100);
// Sets the color for the stars?
dot.moveTo(0, 10);
// not sure
dot.lineTo(0, 15);
// not sure
dot.onEnterFrame = mover;
// not sure
dot.speed = Math.random()*10;
// determains the speed by a random number * 10
}
}
starField(275, 200, 100);
// not sure
View Replies !
View Related
Your Comments About My Website
Hey everybody -
I would like to have any of your (negative AND/OR positive) comments about my website.
I am (originally) a Graphic Designer, so please, excuse me for the very poor Actionscripts contained in this website...
Here is the URL : http://www.drduckling.com.
Thank you very much in advance.
Virginie.
View Replies !
View Related
Comments Form
Hi there,
I am now having problems getting the input text from flash to my php script that emails it. The email is sending to my email with the headings I have put however the input text is not sending.
any ideas?? thanks :)
Attach Code
// import the required component classes.
import mx.controls.*;
// set the tabbing order for the components
this.name.tabIndex = 1;
this.email.tabIndex = 2;
this.comments.tabIndex = 3;
this.clear_button.tabIndex = 4;
this.submit_button.tabIndex = 5;
// set the default form focus to the name TextInput instance, and set the default button to the submit button.
Selection.setFocus(name);
focusManager.defaultPushButton = submit_button;
// when the clear button is clicked, set the form fields to empty strings.
var clearBtnListener:Object = new Object();
clearBtnListener.click = function(evt:Object) {
name.text = "";
email.text = "";
comments.text = "";
};
this.clear_button.addEventListener("click", clearBtnListener);
// when the submit button is clicked, send the form values to the server using a LoadVars object.
var postBtnListener:Object = new Object();
postBtnListener.click = function(evt:Object) {
// if the name is blank, display an error message using the Alert component.
if (name.text.length == 0) {
Selection.setFocus(name);
Alert.show("Please enter your Name.", "Error", Alert.OK);
return false;
}
// make sure the user has filled in either the email or url_ti TextInput instances.
if (email.text.length == 0) {
Selection.setFocus(email);
Alert.show("Please enter your Email Address or URL.", "Error", Alert.OK);
return false;
}
// make sure the comments TextArea instance isn't blank.
if (comments.text.length == 0) {
Selection.setFocus(comments);
Alert.show("Please enter your Comments.", "Error", Alert.OK);
return false;
}
$name = name.text;
$email = name.text;
$comments = name.text;
loadVariablesNum("tomail.php", 0, "POST");
name.text = "";
email.text = "";
comments.text = "";
Alert.show("Thank you for your comments.", "Success", Alert.OK);
};
this.submit_button.addEventListener("click", postBtnListener);
View Replies !
View Related
Allow User Comments?
I would like to create a section for user comments in my Flash file, which will part of a larger website. It's not a full blown blog, but just 1 article, and a way for users to comment at the bottom on the page, sort of like Yahoo answers. Is this possible in Flash? (AS2 or 3 are OK.) Thanks!
View Replies !
View Related
Sample - Need Comments
Thanks guys for help!
I hv enclosed the sample of my project. Pls look into this and tell me whether it is alright.
I want the pictures and text to come on stage with an animation.
Can I animate the pictures and text in separate movie clips
and bring the mcs on frames?
Thanks once again.
View Replies !
View Related
Trying To Insert Comments
So ive got my myspace designed in flash and im currently testing it. What i would like to do
is have a input box on flash with a button that will submit the input box contents as a comment on myspace. Unfortunatly im not sure how to go about it in actionscript. The html way of doing it without using myspace's built in comment link is
HTML Code:
<form method="post"
action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment">
<input type="hidden" name="friendID" value="friendid">
<textarea name="f_comments" class="comment_textarea" cols="25" rows="8"></textarea>
<p><input type="submit" value="post" class="button" name="comment" /></p>
<p>Leave a comment or <a href="http://comments.myspace.com/index.cfm?fuseaction=user.homeComments&friendID=friendid" title="View comment archive">View All</a></p>
</form>
Any ideas how to do this in flash? the above code takes all the text from the textarea "f_comments" and submits it as a comment.
View Replies !
View Related
Comments Form
Hello guys,
I was wondering is their any way / tutorial on how to make a simple comment form. Not like the ones where they email the info to you, but like the ones where they type in their name & email & comment and when they hit submit it adds it on to the other comments, and it displays it on the site. I want a very simple one I mean it can even have just comment feild. If any one has a tut or can help, it would be greatly appreciated. (just in case the w454xh199px)
View Replies !
View Related
Need Inscpection And Comments
Hi
I have been having trouble with these navigational buttons.
It seems that everytime I click on the button exp: HOME_BT it goes to frame 3 instead. and goes back to frame 2 on the second click.
the same goes with the others. swapping between the intended frame and the frame after it. exp: HOME_BT swaps between frame 2 and 3.
any help would be greatly appreciated I'm really getting a big headache with it.
Code:
Home_BT.addEventListener(MouseEvent.CLICK, gohome);
function gohome(e:MouseEvent)
{
gotoAndPlay(2);
}
Portfolio_BT.addEventListener(MouseEvent.CLICK, goport);
function goport(e:MouseEvent)
{
gotoAndPlay(3);
}
Contact_BT.addEventListener(MouseEvent.CLICK, gomail);
function gomail(e:MouseEvent)
{
gotoAndPlay(4);
}
Blog_BT.addEventListener(MouseEvent.CLICK, goblog);
function goblog(e:MouseEvent)
{
var url:String = "http://theverveoflife.blogspot.com/";
var request:URLRequest = new URLRequest(url);
try {
navigateToURL(request, '_blank');
} catch (e:Error) {
trace("Error occurred!");
}
}
View Replies !
View Related
Send Comments To An Email?
Is there a way i can make a text box for someone to type say there name then another one underneath for there comment and then another one for there email, and then once pushed a button it sends it all to my email?
View Replies !
View Related
PHP Scrolling Comments Line
So I'm trying to create something like a news ticker but instead of news it scrolls visitor comments entered like a guestbook. So the user goes enters a user name and a message. Click a button their name and message are written to the beginning of an existing file which is loaded into the swf movie and scrolled in a ticker. How would I go about setting this up?
View Replies !
View Related
Post Comments Form
I am a beginner Flash Developer and Im working on my first site. I was wondering if anyone knows where I can find a really cool Post Your Comments Form. I would like to add this element to my website so visitors will be able to post comments either to my email account or directly on the site.
Thanks for all your help,
Toro04
View Replies !
View Related
Comments? Suggestion? How Can I Make This More Fun?
Here is a prototype of a game I'm working on. Some stuff isn't done yet, but I want your advice.
http://www.gamingforever.com
Click on "Tank!".
Controls:
Left/Right to move.
A/S to rotate your turret.
CTRL to fire Missle.
Space to fire Machine Gun.
ALT to fire Smart Missle. (Not finished)
POLL:
Should I make your own bullets be stopped by the wall?
What other kinds of enemies should I add?
Should you be able to move all around the arena?
View Replies !
View Related
Do Comments In Code Get Stripped Out?
An interesting discussion at work prompted me to ask you all this question - does Flash strip out comments in the code (like developers logs) during publishing? We were wondering because we were concerned about maintaining small file size and while this is not an issue right now, perhaps in the future?
Hope one of you can give me the answer
View Replies !
View Related
Text/comments On The Timeline?
I downloaded a flash movie (fla) file and I see something that I have never seen before. In the timeline panel, there is text written in one of the layers and a little flag symbol. What does this mean/do? And.. how can I add/remove it from a layer?
Sorry for such a simple question.. I am rather noobish.
Thanks and Regards
View Replies !
View Related
Bad Quality... Everything, Website In Need Of Comments Please
Ok, please view the following website.
http://zeuslogic.gvale.com
Keep in mind this is a testing website. All the content is loaded dynamically via xml. Also note i know the bottom navigation menu's text sucks, that problem was fixed i just havent uploaded the new swf.
Now my main question is notice the logo's pixelated look? Its not an image. So why does it look like i made an image for the logo, then made it bigger than the pixels allowed thus losing quality?
And my more general question, Any comments?
I am completely hating my current design. Atleast on the current comp i am viewing it from. When i designed and tested it on my 1280*1024 resolution computer it looks great. On a 1024*786(or whatever) comp it looks horrible in my opinion. What are your comments? And note i am looking on design/code comments, something with an explanation of what i did wrong, not just a "its good or it sucks".
No matter what i am going to remake this completely, which hopefully wont take as much time because this was my first and all the code will be roughly the same (xml loader parser, pages, ect.).
Thanks to any replies!
View Replies !
View Related
First Real Game..comments And Help
Ok, so here is my firstreal game, tell what you think, and please read the glitches in he main menu and tell me please how to fix em...
Thanks.
newer version
http://i17.photobucket.com/albums/b7...atoe/evade.swf
older version
http://i17.photobucket.com/albums/b7...e/d33c76c2.swf
View Replies !
View Related
Comments On Web Site Needed Plz...
hello all.
i just finished the basic design and structure of a web site for a properties company. it would be great if anyone could have a look at it and give me some feedback.
good, back, any kind of comments i need. things i might be able to improve on?
please also state ur screen resolution and if it was viewed ok, also i had some problems with the movie lagging before. i have fixed this but plz mention if it happens 2 u.
cheers
http://www.geocities.com/ouz_ae/
View Replies !
View Related
Flash Comments Scripts
Hello!
I am looking for an easy way to create a comments section for my flash movie. Ultimately I want a news article or two to be posted within flash so that anonymous users can post their comments. I was thinking the news artice can be pulled from a .txt file and the comments I was thinking about using a mysql db with a php backend, but I'm not sure if this is going to be the easiest way to update by someone not familiar with either flash, php or mysql. Sounds like a challenge huh? I just want to get any additional ideas you all may have before I proceed.
thanks,
Patrick
View Replies !
View Related
Email/Comments Form WITHOUT PHP?
My current host does not provide PHP support....i was cheap and didn't think i would ever need it.
Is there a way to create a "comments/question" thing with just actionscripting?
you know..just the normal
Name:
Email:
Comment:
SUBMIT
Thanks.
View Replies !
View Related
[F8] How Do I Approve Comments Before Posting Them?
Hi, I have a website already posted that someone did for me and I was wondering how I can change things myself, and I have a page where people can post comments and I was wondering how I can approve comments people send before they are posted on the site, using some sort of cms program. Can this be done in flash? or is there i different program I need? If so which program should i get and how do i go about doing this. Can this be done even though the site is already posted?
View Replies !
View Related
|