# Adding text to the Photo Gallery

**URL:** https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532
**Category:** flash
**Created:** [August 28, 2004, 10:03pm UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532 "2004-08-28T22:03:33Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![Rain](https://avatars.discourse-cdn.com/v4/letter/r/e95f7d/32.png) [@Rain](https://forum.kirupa.com/u/Rain)
#### Post date: [August 28, 2004, 10:03pm UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532/1 "2004-08-28T22:03:33Z")

</div>

Hello everyone! I was wondering if anyone could help me out with adding dynamic text to the photo gallery (the same photo gallery as outlined on this site). Basically, as the picture changes, I also want a dynamic text box to display the title of the photo (or at least the filename). Should be relatively easy, but my programmin skills aren’t the best.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 29, 2004, 1:06am UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532/2 "2004-08-29T01:06:49Z")

</div>

Hello

How’s about this:

```php
 
function caption (text) {
	_root.dynamicText = text;
}	

```

And everytime you want to call the function just go:

```php
 
caption ("Here's me taking my bubble bath!")

```

i think that’s right

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 29, 2004, 7:51am UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532/3 "2004-08-29T07:51:02Z")

</div>

hmm… but that won’t change everytime a new picture is loaded…  
How can I give each individual picture a caption?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 29, 2004, 8:33am UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532/4 "2004-08-29T08:33:54Z")

</div>

yes it will…just change the message to something else…

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 29, 2004, 8:35am UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532/5 "2004-08-29T08:35:10Z")

</div>

eg: Frame1

```php
  
function caption (text) {
	_root.dynamicText = text;
} 

caption ("Hello World")

```

Frame 2

```php
  
caption ("Bye World!")

```

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 29, 2004, 11:42pm UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532/6 "2004-08-29T23:42:08Z")

</div>

OK, I see what you mean. The problem is that my images are loaded dynamically and I only use one frame for the slideshow. So all images will appear on one frame, otherwise your idea would work just fine. Any other ideas?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [September 3, 2004, 9:25am UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532/7 "2004-09-03T09:25:21Z")

</div>

Place them in a movieclip?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [September 3, 2004, 1:44pm UTC](https://forum.kirupa.com/t/adding-text-to-the-photo-gallery/62532/8 "2004-09-03T13:44:34Z")

</div>

check out XML.
