# Resize Dynamic Jpegs

**URL:** https://forum.kirupa.com/t/resize-dynamic-jpegs/188552
**Category:** flash
**Created:** [May 8, 2006, 11:45pm UTC](https://forum.kirupa.com/t/resize-dynamic-jpegs/188552 "2006-05-08T23:45:14Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![darylmeter](https://avatars.discourse-cdn.com/v4/letter/d/f19dbf/32.png) [@darylmeter](https://forum.kirupa.com/u/darylmeter)
#### Post date: [May 8, 2006, 11:45pm UTC](https://forum.kirupa.com/t/resize-dynamic-jpegs/188552/1 "2006-05-08T23:45:14Z")

</div>

Hi everyone, im have a small issue with resizing my dynamic images.  
The images being brought in will be 360px wide but i want them 200px wide.  
Any ideas welcome.Cheers!

```auto
delay = 4000;
this.pathToPics = "";
this.fadeSpeed = 3;
this.pIndex = 0;

this.pArray = new Array(image);
this.pArray = image.split(", ");
total = this.pArray.length;

for (i=0; i<total; i++) {
    
loadMovie(this.pArray*, this.topButt.photo);
this.topButt.photo._width= 200;
}

```
