You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'MihaS'

We found 23 matches.


<< < > >>

Viewing 1-23 of 23 matches.

1.

None

Topic: Changing colors

Posted: 12/25/07 08:00 AM

Forum: Flash

This is cool. Thanks. Now I need to find out how to slowly change the color motion tween style. Can you do this in ActionScript too?


2.

None

Topic: Changing colors

Posted: 12/25/07 07:51 AM

Forum: Flash

Merry WhatEverYouAreCelebrating! :)

I have a question. Is anyone good with ActionScript here? I sure bet there is! OK, now on to my second question.

I have a map in flash. A map of former Yugoslavia. Now, whenever you go over a country it turns from pink to violet. Nothing hard. Just turn each country into a button, and then turn the OVER picture in to a movieclip...

Simple. Well, not really. Lets say the client would want to change the color the country changes in. That means editing at least 6 times for them to all change into a same color.

Now, is there a way in ActionScript that I could do this? For example, every button with the instance name "change" would change its color when the mouse is over him... I think its do-able. I just don't know how in ActionScript.

I hope someone can help.
Thank you!


3.

None

Topic: JavaScript scroller

Posted: 05/14/06 04:19 AM

Forum: Programming

Anyone? Please?


4.

None

Topic: 5th generation programming!

Posted: 05/14/06 04:01 AM

Forum: Programming

5th generation programming languages? Forget it..
I mean, if more people are doin a project and make a code(PHP):

Normal:

include ("somefile.php");
if ($something !== 1)
{
die();
}
5th Gen PHP

include the file somefile.php;
if variable something is not equal to one, then die, else go on.

Now, the thing is, what about large programs/ scripts, they would be IMPOSSIBLE to read yet alone to change.. It would be like readin a book..


5.

None

Topic: JavaScript scroller

Posted: 05/14/06 03:49 AM

Forum: Programming

Ok so its like this.. I have flash content, a simple play da music button. Now i need it to follow me up and down the page when i scroll up and down.. It would be in the bottom-right of the page.. Just to follow you up the page. Anyone know how do do it?


6.

None

Topic: Playing External file : help hurry

Posted: 05/13/06 09:38 AM

Forum: Flash

Sorry posted before -Gust- posted...

-Gust- Thank YOU so very much!! Problem solved!! THANK YOU


7.

None

Topic: Playing External file : help hurry

Posted: 05/13/06 09:36 AM

Forum: Flash

Its for a website.. The file is in the same directory.. so i only need a method to fetch a music file externally


8.

None

Topic: Playing External file : help hurry

Posted: 05/13/06 08:58 AM

Forum: Flash

ok so i want to play an external file when a user clicks on pay.. but how to do it?
Example:
File is located at /music/file.mp3

Now i want my player to fetch that file and play it.. Is it possible? How?


9.

None

Topic: I need help hacking

Posted: 05/04/06 04:13 PM

Forum: Programming

ok first off:

IF you go hacking a company like microsoft, they wont just hack you back lol ... They will get your IP and trace you. And HELLO you have got a LAWSUIT on your ass..

Secondly JesusCyborg < or whatever is a dumbass.. And you NOObs believe him.. Magick Number my ASS that is a IP addres.. And my own on that website.. Not gonna hack myself

Dont be such n00bs.. lol


10.

None

Topic: To all you "Game Programmers"

Posted: 03/21/06 03:02 PM

Forum: Programming

Im not saying i can programm games yet. Im learning C++ and im doing fine.. But i think its better expirience if you do it all by yourself than let another program thats (ironicaly) programmed in c++ as well.

I rather learn 1000 hourse more than use GameMaker.. Do you think the Developers that created CoD,CoD2,HL,F.E.A.R had such luxus as game maker? no. im 14 and already know PHP and i want to expand to C++ .. of course when i go to HighSchool I will learn more prog. languages!


11.

None

Topic: Dev-C++ Make ...

Posted: 03/17/06 05:35 PM

Forum: Programming

How.. I have the files.. But it does nothin for me.. It didnt do this before!


12.

None

Topic: Dev-C++ Make ...

Posted: 03/17/06 05:07 PM

Forum: Programming

So i downloaded Dev-C++ like many times before. And run it. And now it tells me that i need a GNU Make file.. OK so i go download the make file.. Downloaded.. Pu it in the bin folder... Same shit.. WHERE do i have to put it??


13.

None

Topic: New funding opportunity.

Posted: 03/17/06 10:51 AM

Forum: Programming

This may be a dumb question.... but how do you download a .swf?


14.

None

Topic: Dad 'n Me Speed Boost

Posted: 03/16/06 03:54 PM

Forum: NG News

Indeed when you / if you throw a propane tank at the bully when he is beating up the kid, you character stops moving. Tom look up on this.


15.

None

Topic: Recompiling PHP

Posted: 03/16/06 03:42 PM

Forum: Programming

So ive added gd library to the c:\php\ directory.. now i need to recopile PHP.. << hubba what?? What do i have to open and click? Thnx


16.

None

Topic: Php: Main

Posted: 03/16/06 02:18 PM

Forum: Programming

Begginer Tutorial:

Email Form / Contact


17.

None

Topic: Email Form / Contact page

Posted: 03/16/06 02:09 PM

Forum: Programming

Ok tell me if sometin doesent work.. i will help you! :)


18.

None

Topic: Email Form / Contact page

Posted: 03/16/06 02:01 PM

Forum: Programming

This is a Tutorial about making a Contact Page on your site using PHP
Ok so you hate spambots? So do I ! Making a contact page that doesent show your Email is a perfect solution!

Requirements :
- PHP 4.XX.XX
- Basic knowledge of HTML and PHP

So lets start. First if we dont have MySQL We make a file that will have our email!

include_email_info.php
<?php
$email = "myemail@myhost.com";
?>

Now we have our email written in a file.. So lets make the contact PHP page!
We will name it contact.php < duhh...

So: contact.php
<?php
//We include include_email_info.php so that we may acceas the email!
include_once("include_email_info.php");
// We check if variables are set!
if(isset($_POST['user_email'],$_POST['name
'],$_POST['meassege'])){

// If they are set. Set the text and filter the input thus send the email! If not, show the page...

$meassege = strip_tags($_POST['meassege']."\n\n".$_POS
T['name']);
mail($email,"Contact",$meassege);
echo "Email Sent!";
}
else
{
// So this is the boring part.. So im not going to write it.. Just echo your html code:
echo "<html>";
echo "<body>";
etc....
dont forget to name the <textarea type='text' name='meassege'> the inputs like the variables...
}
?>
Well hope it helped anyone!


19.

None

Topic: What Is Mysql And Phpmyadmin?

Posted: 03/14/06 10:44 AM

Forum: Programming

MySql is a database software < The most popular in the world.. It can store much data and its simply d"best. PhpMyAdmin is a PHP based program so you can easily handle databases, tables etc. Hope that enlightens you!


20.

None

Topic: Test my "calculator"

Posted: 03/14/06 10:07 AM

Forum: Programming

At 3/14/06 09:50 AM, Claxor wrote:
At 3/13/06 09:58 PM, Cyrax88 wrote: Or...
Wow, you just proved what uber haxxor skills you got :O, I personally don't care to much if you manage to make some red text or something, or even a bit of JS, as you're the only one that will ever see it, so the only one affected is YOU :/

Oh well, if you're so desperate, I will fix it for you. Happy?

Man your so right.. Those guys are idiots..
Who are you gonna do bad with XSS. the only one using it is you.. it doesent use a database so injecting some CODE IS USELESS... man what dumb fucks!


21.

None

Topic: Bots on Newgrounds?

Posted: 12/31/05 07:05 AM

Forum: General

Well i am full of it.. Im gonna empty myself soon, but first, what is up with the bots on Newgrounds...? There is existencem.. He always writes :
Awesome
But this version is boring!
Visit the new verson blabla...

I have seen this many times... Cant someone stop these bots?


22.

None

Topic: I'm Getting Married!

Posted: 09/30/05 09:16 AM

Forum: NG News

Congratulations.. you lucky bastaed ;)

I wish you much happines with your lovedone.


23.

None

Topic: Starter Pokemon?

Posted: 09/28/05 10:31 AM

Forum: General

Yeah Whatever...
Well i choose..................................

PIKACHU


All times are Eastern Standard Time (GMT -5) | Current Time: 10:20 PM

<< < > >>

Viewing 1-23 of 23 matches.