[Flashcoders] AS3 loading swf gets resized

2009-07-13 Thread noentourage
I'm dynamically loading swf's or jpgs in to a loader class that I wrote and it works well with jpgs but the loaded swf's get resized too large. I tried setting the size of the actual loader but that doesn't change anything. My loader class takes the following params... public function

[Flashcoders] AS3 for each loop / splice issue

2008-08-27 Thread noentourage
Hey flashcoders... I'm parsing an xml doc and building an array then later trying to stuff a value in to each object in the array at the second part of each object. [code] //at the top of my class I have the variable for the cue_points array // create array with text prompts and a dummy value

[Flashcoders] complex button action

2007-09-17 Thread noentourage
I have a movieClip that I move up or down based on it's curreny _y + a specified pixel height using Tweener code to move the movieClip smoothly. The action is called onRelease of an arrow movieClip. The client would now like it to constantly scroll onPress after holding the mousedown for say...1

Re: [Flashcoders] dynamic image loading in mc

2007-05-01 Thread noentourage
You'll probably need some backend scripting like php or whatever your host has installed to read the contents of the folder then send that info to your flash app as xml. On 5/1/07, mastro [EMAIL PROTECTED] wrote: hello, I'm looking for a solution witch can handle the following problem: i

[Flashcoders] create image grid

2007-04-27 Thread noentourage
I'm trying to make a two grids of images but am stumped at the moment. Here's what I have so far that works just fine but I want to have two grids of 25 thumbnails side by side. You will only be able to see one grid of 25 which is masked. code function makeGrid(){ this.createEmptyMovieClip(kk,

Re: [Flashcoders] Wave effect

2007-04-27 Thread noentourage
Do a search for Flash OS X dock effect. That might get you some results. On 4/27/07, Parvaiz Patel [EMAIL PROTECTED] wrote: Hi, Anybody knows how to create the wave effect shown in (http://www.mandchou.com/) at the bottom for dynamically loaded images. Pls let me know. Thanks regards, PP

Re: [Flashcoders] create image grid

2007-04-27 Thread noentourage
I see that I left some info out like that the images are coming in via xml. Here is a sample of what I have so far: http://www.thespikeranch.com/test/photoGallery.html If you go to the last image in the lower right corner of the grid then let it play or click next you'll see the grid of 25 images

[Flashcoders] dynamic spacing

2006-08-24 Thread noentourage
Anyone have an algorithm to space dynamically created movieClips centered on the stage? I'm using attachMovie in a for loop to create the clips based on an unknown number of itemsusually 3-5 items that are about 150px wide each. Thanks.. ___