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

We found 3,295 matches.


<< < > >>

Viewing 1-30 of 3,295 matches. 1 | 2 | 3 | 4 | 5 | 6 | 758110

1.

None

Topic: What program do i need?

Posted: 10/23/09 12:52 PM

Forum: Flash

it's not about the computer man, it's about the version of flash you are using.

theres tons of different flash versions, and alot of people save preloaders as Flash CS4 lets say, and you cannot open that in flash 8!


2.

None

Topic: AS3 functions..

Posted: 10/23/09 12:12 PM

Forum: Flash

is there any way to use a function like say in C?

i have

function clicked(eventObject:MouseEvent) {
if(page !== "contact"){
		TweenLite.to(stageMask, 0.25, {alpha:1, onComplete: loadmovie});
		setChildIndex(stageMask,numChildren-1);
		page = "contact";
	}
}

ra ra ra

and basically i have it duplicating like 8 times, just page is different..

is there anyway to do a

clicked(contact);

OR

clicked(about);

instead of creating the code 8 times for 8 different pages?


3.

None

Topic: XML feeds

Posted: 10/19/09 08:57 AM

Forum: Flash

I followed an XML / AS tutorial that set out the XML feed like:

<images>
<image big="images/image2.jpg" src="images/image2thumb.jpg" desc="Yeah, so.. probably going to be a website or something?"/>
<image big="images/image2.jpg" src="images/image2thumb.jpg" desc="Yeah, so.. probably going to be a website or something?"/>
</images>

but I want it to be:

<images>
	<image>
		<big>images/image3.jpg</big>
		<src>images/image3thumb.jpg</src>
		<desc>pretty sweet</desc>
	</image>
	<image>
		<big>images/image3.jpg</big>
		<src>images/image3thumb.jpg</src>
	<desc>pretty sweet</desc>
</image>
</images>

What do I need to change in the AS3 to make this happen? 'cause at the moment the images don't load..


4.

None

Topic: .addeventlistener Event.added

Posted: 10/10/09 02:58 PM

Forum: Flash

I have this:

thisOne2.addEventListener(Event.ADDED, resizemc2);

thisOne2 is a dynamically loaded image.

in resizemc2 i did a test trace("hi"), and it traces it like 2 times..

why is it that it does 'resizemc2' like 2 times? the image only gets added once, so why should it do it two times?

/confused


5.

None

Topic: Flashlight Engine

Posted: 10/06/09 06:24 PM

Forum: Flash

so you work out the distance from a movieclip to the mouse and increase its size depending?

are the circles on the outer ring MASSIVE? lol


6.

None

Topic: AS/Math help..

Posted: 10/06/09 06:21 PM

Forum: Flash

I need some help, big time.

I have this dynamically loaded image list. Now if the list is longer than 456px in height I want 'something' to happen.

Now when this list is 456, the variable 'totalImages' will be 10. (cause 10 images in height togeter=456). The total length of the image if totalImages>10 is

456 + (92*(totalImages-10)).

Now I want to be able to 'move' this loadedlist, which is called 'scroller'.. the scrollable area is worked out by:

(92*(totalImages-10))

because theres a 'window' that you can see through, and I want to be able to cut off the bottom of the list and scroll through the window to show whats at the bottom.. if you get me?

Now the scrollbar goes from y-100 to y-455.. I have a scrollable movieclip that moves up from 100 to 455.. but how do I work where the scrollbar is to move the 'scroller' movieclip?!

If you need more explaining, I'm willing to send .flas etc.etc. :)


7.

None

Topic: AttachMovieClip Issue.

Posted: 10/03/09 02:07 PM

Forum: Flash

At 10/3/09 02:04 PM, Yambanshee wrote:
At 10/3/09 01:57 PM, IWantSomeCookies wrote: but remember it has to have a depth.. im sure it does cause your adding it to the stage via as :)
when its being removed, the depth doesint mater. its just removeMovieClip(MCname)

doesn't the MC have to have a depth to be removed?


8.

None

Topic: AttachMovieClip Issue.

Posted: 10/03/09 01:57 PM

Forum: Flash

it's

removeMovieClip();

but remember it has to have a depth.. im sure it does cause your adding it to the stage via as :)


9.

None

Topic: who is good with xml/photos?

Posted: 10/03/09 12:55 PM

Forum: Flash

i need someone to look at my code..

i've made an xml slideshow (where you click to display the images), but it only lets you click on the last picture of the list of pictures clickable, if that makes sense?

it's basically 'thisOne.buttonMode = true; thisOne.addEventListener(MouseEvent.CLIC K, clickScrollerItem);'

but only the last one is clickable?

please PM if if you want to help out, cause id like to send you all the code, and it's a bit much over the forums.. haha


10.

None

Topic: x and y graphs?

Posted: 09/29/09 03:02 PM

Forum: General

basically i have 2 co-ordinates, and i need to like work out an equation that works out the rest of the graph?

it's a linear graph, so these 2 co-ordinates are all i need, but i need help being pointed into the right directions..

oh and the co-ordinates are if anyone cares are:

0,100
455,-374

(im not looking for an answer here, im looking for atleast an explantion, if not a tutorial how to work these damn things out! :D)


11.

None

Topic: Your new to Actionscript? read this

Posted: 09/26/09 11:17 AM

Forum: Flash

no offence, but why is it a bad thing that 'nobodies' can learn a language?

we all started from the bottom man, don't be so harsh.


12.

None

Topic: click a button to load a mc?

Posted: 09/26/09 11:11 AM

Forum: Flash

ye man, i'm not sure what it was cause i literally figured out the answer as i posted..

but thanks for the reply man :)


13.

None

Topic: click a button to load a mc?

Posted: 09/26/09 07:55 AM

Forum: Flash

var thisOne2:MovieClip = new MovieClip();
		
..
		
function clickScrollerItem(e:MouseEvent):void {
	//trace("clicked item " + e.currentTarget.itemNum + " - visit url: " + e.currentTarget.link);
	var urlRequest:URLRequest = new URLRequest(e.currentTarget.link);
	try { 
		//image container
		var thisThumb2:Sprite = new Sprite();
		//add image
		var ldr2:Loader = new Loader();
		var urlReq2:URLRequest = new URLRequest(thisOne.src);
		ldr2.load(urlReq2);
		//assign event listeners for Loader
		thisThumb2.addChild(ldr2);
		thisOne2.addChild(thisThumb2);
		scroller.addChild(thisOne);
	
	}
	catch (e:Error) {
		// handle error here
		trace(e);
	}
}

..

		thisOne.buttonMode = true;
		thisOne.addEventListener(MouseEvent.CLICK, clickScrollerItem);

(i cut alot of code out, all xml loads alright, but why doesn't that work?)

basically, im creating a photoslide show. thisOne loads alright, and theres a horizontal list of images (so i know it all works) but how come thisOne2 doesn't load?

thanks


14.

None

Topic: adding movieclips ontop of xmldata?

Posted: 09/21/09 05:42 AM

Forum: Flash

I have this slideshow loaded by xml, and I wanted to add a few movieclips onto of the images that have been added via. xml etc.

Is there anyway to do this?

addChild perhaps?

Cheers


15.

None

Topic: problem with flash on a website?

Posted: 09/19/09 12:38 PM

Forum: Flash

ahhh i see, but i don't get how i can impliment that code into my project?

the html file is at index.php

all my files are in /newsfeed/ (thats the swf file at swf.swf, the xml feed feed.xml and the images image1.jpg etc. etc. all in /newsfeed/)

how would i impliment it so it's trying to find /newsfeed/ and not just the root?

(sorry, im kinda having to re-learn as3 which is a bit fun haha)


16.

None

Topic: problem with flash on a website?

Posted: 09/19/09 11:50 AM

Forum: Flash

so i made a little flash thingy, and i'm using flash cs3, as3/flash player 9(dot 0 dot something), now when I put it up online, the flash player for my browser is flash player 10 (obviously?) but my flash doesn't seem to work.. the background image is there but none of the images are..

it's basically a xml feed that loads images and puts them into the flash file so you click on the images and they link out (so the person im making it for can change the images and links willy nilly)

when i directly go to the file (www.thewebsite.com/flash.swf for etc) it works, but implimenting it into a .php file, and it just doesn't work.. on firefox, safari, internet explorer, friend's computers/browsers..

anyone come across this problem

this is the code im using:

<div id="flash">
<!--[if !IE]> -->
<object type="application/x-shockwave-flash" data="newsfeed.swf" width="434" height="160">
<!-- <![endif]-->

<!--[if IE]>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
  width="434" height="160">
  <param name="movie" value="newsfeed.swf" />
<!--><!--dgx-->
  <param name="loop" value="true" />
  <param name="menu" value="false" />

  <p class="text">sorry, you don't have flash installed.</p><p class="text"><a href="http://get.adobe.com/flashplayer/" target="_blank">get it here</a></p>
</object>
<!-- <![endif]-->
</div>

17.

None

Topic: problem with flash on a website?

Posted: 09/19/09 11:50 AM

Forum: Flash

so i made a little flash thingy, and i'm using flash cs3, as3/flash player 9(dot 0 dot something), now when I put it up online, the flash player for my browser is flash player 10 (obviously?) but my flash doesn't seem to work.. the background image is there but none of the images are..

it's basically a xml feed that loads images and puts them into the flash file so you click on the images and they link out (so the person im making it for can change the images and links willy nilly)

when i directly go to the file (www.thewebsite.com/flash.swf for etc) it works, but implimenting it into a .php file, and it just doesn't work.. on firefox, safari, internet explorer, friend's computers/browsers..

anyone come across this problem

this is the code im using:

<div id="flash">
<!--[if !IE]> -->
<object type="application/x-shockwave-flash" data="newsfeed.swf" width="434" height="160">
<!-- <![endif]-->

<!--[if IE]>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
  width="434" height="160">
  <param name="movie" value="newsfeed.swf" />
<!--><!--dgx-->
  <param name="loop" value="true" />
  <param name="menu" value="false" />

  <p class="text">sorry, you don't have flash installed.</p><p class="text"><a href="http://get.adobe.com/flashplayer/" target="_blank">get it here</a></p>
</object>
<!-- <![endif]-->
</div>

18.

None

Topic: New Year Plans

Posted: 12/31/06 09:55 AM

Forum: General

At 12/31/06 09:53 AM, majkas wrote: get drunk

Originality!


19.

None

Topic: IWantSomeCookies - back

Posted: 12/31/06 09:50 AM

Forum: General

Crap I didn't know I had this much of an impact LOL.

Happy new year, I Just dropped by to say that. XD


20.

None

Topic: IWantSomeCookies...gone?

Posted: 10/17/06 06:45 PM

Forum: Flash

At 10/14/06 06:10 PM, Claxor wrote: Where have you been man?
you probably don't remember me anyway :(

I remember. ;']

GuyWithHisComp:
For some reason, I was always with a PC when I saw you post ;O;O

Gorilla-Studios:
I am glad that good has come out of my name.


21.

None

Topic: IWantSomeCookies...gone?

Posted: 10/14/06 05:54 PM

Forum: Flash

Rofl , I remember you. You were cool. Thanks for the comment <3 lol


22.

None

Topic: IWantSomeCookies...gone?

Posted: 10/14/06 05:26 PM

Forum: Flash

At 9/28/06 02:55 PM, SexOnStreet wrote:
At 9/28/06 02:53 PM, IWantSomeCookies wrote: NO I dont! Sorry man, but thanks for noticing <3
Yellow?!

Blue??


23.

None

Topic: Wi/Ht? level up! Lounge

Posted: 09/28/06 03:12 PM

Forum: Where is / How to?

At 9/28/06 03:02 PM, Monodi wrote:
At 9/28/06 02:54 PM, IWantSomeCookies wrote: LEVEL UP I AM BACK TO NG.

Not really, just posting for a bit. Is there any of the old Wi/Ht regs around that knew me? I feel so lonely!
Hi sweetie :)

I was hoping you were a girl :(


24.

None

Topic: Wi/Ht? level up! Lounge

Posted: 09/28/06 02:54 PM

Forum: Where is / How to?

LEVEL UP I AM BACK TO NG.

Not really, just posting for a bit. Is there any of the old Wi/Ht regs around that knew me? I feel so lonely!


25.

None

Topic: IWantSomeCookies...gone?

Posted: 09/28/06 02:53 PM

Forum: Flash

NO I dont! Sorry man, but thanks for noticing <3


26.

None

Topic: IWantSomeCookies...gone?

Posted: 06/24/06 06:26 PM

Forum: Flash

At 6/24/06 06:25 PM, liaaaam wrote:
come back D:

-liam-, -liam-, -liam-.. I just signed in msn.. still your old msn name.. or have you got a new msn.

But no.. I wont come back. Only reason I came on here is because I signed on my msn which reminded me of this threa lol


27.

None

Topic: IWantSomeCookies...gone?

Posted: 06/24/06 06:18 PM

Forum: Flash

At 5/30/06 04:13 PM, -reelbigcheese- wrote: hey i want some cookies :) you prob dont know me, i came about the time you left. but i saw you posting a few times, so did you quit the internets altogether or just newgrounds?

Of course I know you... :) I saw you around when I was still here. I didnt quits the internet.. just NG. Its not good for me ;]

At 5/30/06 03:51 PM, pyro111 wrote: Hey. Send me that file for the collab that everone worked so hard on. Ill finish it. mbellis111@yahoo.com

My computer broke, so I couldnt go on the internet - this also helped me realease there is MORE than NG. So ALL my flash work = gone forever! Its a bummer, but I sent it to someone like a day before my PC broke, maybe they deleted it.. forgotten the name of the guy. Maybe they have submitted it and finished it off.

I cant believe Im still level 10 too! Havent I de-levelled yet?


28.

None

Topic: IWantSomeCookies...gone?

Posted: 05/30/06 03:46 PM

Forum: Flash

Um.. yeah, its good to go out n such, especially when GCSE's are around the corner.

Ill post like every 6 months on NG, but I will not return, im just seeing whos still online!

Ive found a new home.. the xbox. ;]


29.

None

Topic: IWantSomeCookies...gone?

Posted: 03/28/06 01:06 PM

Forum: Flash

At 3/4/06 12:08 PM, Cybex wrote: You make it sound like E-suicide.

I have, I think I've forgotten my password too!

(First attempt. Its not funny when it gets posted, but if this fails.. I'll be the only one laughing.. :'()


30.

None

Topic: IWantSomeCookies...gone?

Posted: 03/04/06 11:56 AM

Forum: Flash

At 2/13/06 08:31 PM, authorblues wrote:
At 2/13/06 08:06 PM, IWantSomeCookies wrote: Same here
is this something we can expect more of? weve missed you around here.

Nah, when I log on im bored. So HI.

Its 100% that I wont return. This just isnt the place for me, I dont like it.. its all to negative and sinical (no offence, really..) and thats just now how I want to live my life.

:)

- Love to all


All times are Eastern Standard Time (GMT -5) | Current Time: 04:32 AM

<< < > >>

Viewing 1-30 of 3,295 matches. 1 | 2 | 3 | 4 | 5 | 6 | 758110