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: 'gorman2001'

We found 1,933 matches.


<< < > >>

Viewing 1-30 of 1,933 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 93765

1.

None

Topic: 3d in flash

Posted: 10/25/09 09:21 PM

Forum: Flash

flash player 10 provides basic 3 fonctionnality for objects : x,y,z and rotationX,rotationY,rotationZ, along with Matrix3D class enabling more advanced 3d transformations.

but at this time, the best 3d engine for flash is an external engine, such as Alternativa, Away3D or Papervision


2.

None

Topic: How To: A Website Using Flash Cs4?

Posted: 09/08/09 09:56 PM

Forum: Flash

use swfobject to embed the swf in your html. saves lots of trouble.

using css, make sure your containing div has 100% width and 100% height, same thing for the body tag.

in flash, use stage.scaleMode = StageScaleMode.NO_SCALE to manage yourself the positioning of your visuals, using the Event.RESIZE event.


3.

None

Topic: Random number generator AS

Posted: 09/08/09 09:53 PM

Forum: Flash

/**
* Generate a random number
* @return Random Number
* @error throws Error if low or high is not provided
*/
function randomNumber(low:Number=NaN, high:Number=NaN):Number
{
var low:Number = low;
var high:Number = high;

if(isNaN(low))
{
throw new Error("low must be defined");
}
if(isNaN(high))
{
throw new Error("high must be defined");
}

return Math.round(Math.random() * (high - low)) + low;
}

google


4.

None

Topic: how to remove sprite white pics???

Posted: 09/08/09 09:50 PM

Forum: Flash

if cpu is not a concern, use the Multiply blend mode in flash


6.

None

Topic: Dolby Pro Logic 2 sound engine

Posted: 08/04/09 08:00 PM

Forum: Flash

3d "space shooter" coming up with this...


7.

None

Topic: Dolby Pro Logic 2 sound engine

Posted: 03/20/09 03:03 PM

Forum: Flash

At 1/12/09 05:22 AM, GustTheASGuy wrote: Nice. How many instances can it handle at the same time?

never really tried it in a production application lol


8.

None

Topic: AS3 Code Help.

Posted: 01/27/09 10:14 PM

Forum: Flash

looks like you'll need a server-side script, such as php


9.

None

Topic: database

Posted: 01/27/09 02:17 PM

Forum: Flash

then just don't do a database system.


10.

None

Topic: Function Not Working In Class Code!

Posted: 01/27/09 02:12 PM

Forum: Flash

ok then add an event listener for Event.ADDED_TO_STAGE, that triggers a seperate function which will add the events for your key management.


11.

None

Topic: Function Not Working In Class Code!

Posted: 01/27/09 02:06 PM

Forum: Flash

for your key events, try changing this. to stage.


12.

Angry

Topic: URLLoader loading php source

Posted: 01/27/09 01:58 PM

Forum: Flash

seriously, wtf ?!?!

all of sudden, all my URLLoader instances started loading the php SOURCE of a script, not its output like it should do ?

anyone had this problem, and a solution ?


13.

None

Topic: [What I've Done Collab]

Posted: 01/19/09 10:11 PM

Forum: Flash

all i can say is congrats for the graphic design !


14.

None

Topic: Mastering audio for your Flash

Posted: 01/19/09 09:58 PM

Forum: Flash

dont forget my dolby pro logic 2 beta class ;)

available at my google code project page (see sign)


15.

None

Topic: How do I bind filt/effects to keys?

Posted: 01/19/09 09:56 PM

Forum: Flash

"macros" in flash are called Flash Commands.

they are created with a flash interface based DOM javascript.

u can find many flash commands on the Adobe Developer Exchange website.


16.

None

Topic: Annoying Sound Problem

Posted: 01/19/09 12:38 PM

Forum: Flash

u should tru to play back your sounds using actionscript, not with a timeline-based setup


17.

None

Topic: Blur Filter Problem

Posted: 01/19/09 12:37 PM

Forum: Flash

is it really blurred ? check the filters panel


18.

None

Topic: Registration?

Posted: 01/19/09 09:51 AM

Forum: Flash

... so that any transformations applled to a symbol will be proportionate to this point.


19.

None

Topic: Flash keeps freezing

Posted: 01/18/09 04:26 PM

Forum: Flash

1. dont forget to save really often

2. flash sometimes has these kind of very anoying bugs. the best you can do about it is submit a bug report to Adobe online.


20.

None

Topic: 1000 Bullets Hittest Problems!

Posted: 01/16/09 02:06 PM

Forum: Flash

you should keep a reference of all yout bullet mcs in an array, then loop this array to check for each bullet.

maybe a problem of instance overwritring or something.


21.

None

Topic: How do I scroll down the picture

Posted: 01/16/09 01:54 PM

Forum: Flash

easiest way: convert your background to a Graphic symbol, and do a motion tween on that symbol, making it move upwards from top of image.


22.

None

Topic: Killtimer=similar to clearInterval

Posted: 01/16/09 01:53 PM

Forum: Flash

u cannot have onEnterFrame events for Button instances... if i'm not mistaken


23.

None

Topic: Simple (?) AS3 question

Posted: 01/16/09 01:51 PM

Forum: Flash

careful tough, root in AS3 doesnt refer to the timeline, but rather the topmost display object.


24.

None

Topic: Making Defence Game With No Arrays?

Posted: 01/16/09 01:47 PM

Forum: Flash

jeez, learn ActionScript at first...


25.

None

Topic: Custom Cursor, on X axis

Posted: 01/11/09 08:52 PM

Forum: Flash

At 1/11/09 08:46 PM, BillysProgrammer wrote: onMouseMove = function() {
customcursor._x = _xmouse;
customcursor._y = _ymouse;
}

try that aswell.

only on the x axis....


26.

None

Topic: Blurring with Flash 7.2

Posted: 01/11/09 08:52 PM

Forum: Flash

use photoshop or any image editor to create a blurred duplicate of your background.

that's the old fashionned way lol


27.

None

Topic: External Actionscript File

Posted: 01/11/09 08:42 PM

Forum: Flash

#include "path_to_file.as"

notice there's no semicolon at the end of the statement.


28.

None

Topic: External Actionscript File

Posted: 01/11/09 08:10 PM

Forum: Flash

what are you talking about ?

a class file ?

or just an "included" file ?


29.

None

Topic: Dolby Pro Logic 2 sound engine

Posted: 01/11/09 08:01 PM

Forum: Flash


30.

None

Topic: Development Question

Posted: 01/11/09 03:43 PM

Forum: Flash

well some physics should apply, so....


All times are Eastern Standard Time (GMT -5) | Current Time: 09:55 AM

<< < > >>

Viewing 1-30 of 1,933 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 93765