Dynamic picture gallery

I'm trying to create a dynamic image gallery that is updated
from a database, i managed to create a simple mysql database
using phpmy admin, so I could update my image gallery more
often, I saw something that I like but I have no idea how to create
it here is the example:
http://flight001.com/store/trip.htm?itemid=307&sid=201&page=2
I didnt manage to create this with dynamic table from within
dreamweaver 8, maybe I just don't know how,
this is the link to a gallery on my website:
http://www.yuvallavy.com/work/scenic/scenic.htm.
I need all the help I can get
I'm using dreamweaver 8 on a Mac and using PHP/MySql server
model.

All you need to is put a repeat region on the page and then
apply something
like a horizontal looper to it to get the number of images
across that you
want. I know that there is a commercial extension for DW but
there also may
be free php ones. Do a google search on horizontal looper +
php
Paul Whitham
Certified Dreamweaver MX2004 Professional
Adobe Community Expert - Dreamweaver
Valleybiz Internet Design
www.valleybiz.net
"uvi" <[email protected]> wrote in message
news:eiqtu3$c1b$[email protected]..
> I'm trying to create a dynamic image gallery that is
updated from a
> database, i
> managed to create a simple mysql database
> using phpmy admin, so I could update my image gallery
more often, I saw
> something that I like but I have no idea how to create
it here is the
> example:
>
http://flight001.com/store/trip.htm?itemid=307&sid=201&page=2
> I didnt manage to create this with dynamic table from
within dreamweaver
> 8,
> maybe I just don't know how,
> this is the link to a gallery on my website:
>
http://www.yuvallavy.com/work/scenic/scenic.htm.
I need all the help I can
> get
> I'm using dreamweaver 8 on a Mac and using PHP/MySql
server model.
>
>

Similar Messages

  • Dynamic Photo Gallery in Flash using AS3.0 and XML, but it doesn't work and missed up my app.

    Hi,
    I am creating an iPad app using AS3. The app contains three sections.
    One of those sections (chocolate sources)contains Dynamic Photo Gallery using XML. The photos, thumbnails, and text in this section are loaded from XML.
    I faced may issue when I tried to run this app:
    The gallery photos didn't show up
    The thumbnails (buttons to navigate the photo gallery) didn't show up at all. (The thumbnails should show up under the photo gallery box.)
    The text doesn't show up (the text should be in every photo as describtion)
    I want to include Swipe in the photo gallery, how can I do that?
    When I click on "Chocolate Sources" button, the photo gallery appears in every section, here are print screens describe what I mean:
    The photo gallery covers the home screen too.
    Here is my XML:
    <?xml version="1.0" encoding="utf-8"?>
    <sources>
              <section>
                        <details>
                                            Cocoa tree exists in the tropics area, such as Central and South America.
                                  </details>
                                            <image>
                                                      <url>coca1.jpg</url>
                                                      </image>
                                                      </section>
              <section>
                        <details>
                        Cocoa is supplied in many countries such as Indonesia, Ghana, Brazil, Ecuador and Cameroon.
                        </details>
                                  <image>
                                  <url>coca2.jpg</url>
                                  </image>
                                            </section>
              <section>
                                  <details>
                                  Dark chocolate helps to relax and reduce the stress and blood pressure because it has antioxidants elements, which helps in vasodilatory process.
                                  </details>
                                            <image>
                                            <url>coca3.jpg</url>
                                                      </image>
                                                                </section>
              <section>
                        <details>
                        Chocolate provides energy and hyperactive sometimes because it contains high level of caffeine and sugar.
                        </details>
                                  <image>
                                  <url>coca4.jpg</url>
                                            </image>
                                                      </section>
              <section>
                        <details>
                        Chocolate could be mixed with many different flavors, such as mint, strawberry, orange, banana, vanilla, hazelnut, almond, coconut, and etc.
                        </details>
                                  <image>
                                  <url>coca5.jpg</url>
                                  </image>
                                            </section>
              <section>
                        <details>
                                  Chocolate is expressing of well hospitality and good time due to its lovely taste.
                                  </details>
                                            <image>
                                            <url>coca6.jpg</url>
                                                      </image>
                                                                </section>
    </sources>
    And here is my Action Script for "Chocolate Sources" section:
    stop();
    function Choco1(evt:MouseEvent): void {
              gotoAndStop('16');
    choco_btn.addEventListener(MouseEvent.CLICK,Choco1);
    function Souc1 (evt:MouseEvent): void {
              gotoAndStop ('31');
    souc_btn.addEventListener(MouseEvent.CLICK,Souc1);
    function ShopIn1 (evt:MouseEvent):void {
              gotoAndStop('46');
    shops_btn.addEventListener(MouseEvent.CLICK,ShopIn1);
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import fl.motion.MotionEvent;
    import flash.events.MouseEvent;
    import flash.sampler.NewObjectSample;
    import flash.text.TextFormat;
    var xmlLoader: URLLoader = new URLLoader (new URLRequest("sources.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, finishedXmlLoader);
    var xmlFile:XML;
    var xextend:int = 10;
    var gal:galary = new galary ();
              gal.x = 85;
              gal.y = 165;
              addChild(gal);
    var txfe: TextField = new TextField ();
    txfe.x = 25;
    txfe.y = 45;
    var tformat:TextFormat = new TextFormat ();
    tformat.bold = true;
    tformat.color = 0xFFFFFF;
    tformat.size = "18";
    tformat.font = "Arial";
    txfe.defaultTextFormat = tformat;
    addChild(txfe);
    function finishedXmlLoader (e:Event): void{
              xmlFile = new XML (xmlLoader.data);
              var leng:int = xmlFile.image.length();
              txfe.text = xmlFile.image.details[0];
              for (var i:int = 0;i<leng;i++){
                        var b:thumbs = new thumbs ();
                        b.x = xextend;
                        b.y = 480;
                        b.buttonMode = true;
                        b.details = (i+1).toString();
                        addChild(b);
                        b.addEventListener(MouseEvent.MOUSE_OVER, theMosover);
                        b.addEventListener(MouseEvent.MOUSE_OUT, theMosout);
                        b.addEventListener(MouseEvent.CLICK, onMosClick);
                        var bloader:Loader = new Loader();
                        bloader.load(new URLRequest("thumbs/" + (i+1) + ".jpg"));
                        b.addChild(bloader);
                        xextend += b.width + 50;
    var loader:Loader = new Loader ();
    loader.load(new URLRequest ("pictures/coca1.jpg"));
    gal.addChild(loader);
    function theMosover(m:MotionEvent):void{
              m.currentTarget.alpha = 0.5;
    function theMosout (m:MouseEvent):void{
              m.currentTarget.alpha = 1.0;
    function onMosClick(m:MouseEvent):void{
              var loader:Loader = new Loader();
              loader.load(new URLRequest("pictures/" + m.currentTarget.details + ".jpg"));
              gal.addChild(loader);
              txfe.text = xmlFile.image.details[int(m.currentTarget.details) -1];
    I need an urgent help to fix the errors and make this section work well.
    thanks.

    try:
    txfe.text = xmlFile.section[int(m.currentTarget.details) -1].details;
    instead of
    txfe.text = xmlFile.image.[int(m.currentTarget.details) -1];
    and add your thumbs to gal, not the stage.  when you're done with the gallery, remove gal.

  • Picture Gallery Help!

    Hey everybody,
    I am new to flash and have three seperate but sort - of
    related questions that I was hoping you guys could help me answer!
    Question 1. In april, I will be putting on a "website" - its
    going to be displayed live via a projector onto a projection
    screen. for a small student convention, at this convention are
    competitions for the students to enter, the students will be
    leaving the competition through to doors (door A and door b) What
    they (I) want to do is take a photograph of a student as they leave
    their competition, ship the photo over to the computer holding all
    the files for the site, and then 10-30 seconds after the picture
    was taken I want it to be displayed live on the screen. I have the
    camera's set, they automatically take a picture and send them to a
    file on a computer hooked up via network. What I need is a gallery
    that will display pictures randomly from four sources, - 1) stock
    photos taken prior to the convention, 2) Pictures from Door A
    3)pictures from Door B and 4) Advertisments created prior to the
    convention. The first three sources I want to cycle through about
    every 20-30 seconds, preferably with a spiffy transition from one
    picture to the next with preference (at least in the case of Door A
    and B) given to the newest photos taken. The fourth source (the
    advertisments) I want to cycle into the gallery every 7-10 minutes
    and stay on screen for 1 - 3 minutes. I can give up source 4 if
    nescesary, but I would like to have it. All the pictures/ads will
    be the same size.
    The gallery doesnt need to be styled on the borders, I need
    it to blend and be part of the page, just change images when it
    needs to. I will be doing other things at the conference and cannot
    baby-sit the flash gallery, is their a way to create the gallery,
    and tell it to pull from the sources (call it four folders) and
    rotate when needed. I know (but dont know how to make) that the
    transitions elements can be set up ahead of time, but what about
    the live image aspect?
    Question 2 - Similar to the first, but everything will be
    done ahead of time - at another point on the page I want to have
    banner ads from our sponsors, I just need a gallery to cycle
    through the ads at a predetermined time (i.e Ad 1 stays up for 5
    minutes, while Ad 2 stays up for 2 minutes, etc)
    Question 3 - Not related to the above website, I have another
    page I am developing that I think could greatly benefit from the
    coolness of flash. This will be a picture gallery for 2 products,
    what I am envisioning is a display area for a large picture,
    underneath it 2 tracks of thumbnails, click on track 1 and the
    display area shows the big pictures of the thumnails in that track,
    click on track 2 and it displays the big pictures of that track. It
    would also be cool if it had a zoom feature and a move feature. I
    know the images can be loaded in with an xml document (I think I
    know this) The site will be using a database with lots of products,
    I need to be able to make the XML and flash gallery work with the
    database so that it can change thumnails and bigpictures according
    to the database info - so when you are on product 1, you see
    product 1's thumbs and bigpics. Product 2 - etc.... I can make the
    XML dynamic, I just need the flash part, and make sure it pulls the
    thumbs from an xml file (or other outside source that can be set to
    dynamically get the info) This gallery will be styled and embeded
    into a product template, and
    also can't be babysat or created for each product.
    I am not against buying a prebuilt option if someone knows
    some good ones, I am also not against building it myself if someone
    could give me some guidance as to where to go for tutorials, that
    sort of thing.
    Thanks for the help everybody, If you need any more info
    please let me know.
    -Adam

    What OS version are you running on your phone and who is your carrier? This is something that is controlled by the OS and while there is no way to change the number of thumbnails per row, some OSes have clearer thumbnails than others.
    You can find your OS version under Options > About. Its the number listed after the v. (e.g. 5.0.0.713).
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • Dynamic Image Gallery AS2

    I have dipped in almost every search engine and this site to
    locate some easier way to create dynamic image gallery in Flash 8
    AS2 using ASP (as i am conversant with ASP only, although i found
    many sites suggesting PHP and XML). I'd be very greatful to u all
    if u could provide me some help in this part of my project.
    I have tried this source also but neither the source throw
    any error nor it displays the images, what could be wrong with the
    source? Please Please Please Please Please Help me!!!!!!!!
    this.createClassObject(mx.containers.ScrollPane,
    "scroller_sp", 10);
    scroller_sp. setSize (100, 300);
    swfThumbs=["imgs/img1.jpg","imgs/img2.jpg","imgs/img3.jpg"]
    this.createEmptyMovieClip("clipLoader",1);
    for(i=0;i< swfThumbs.length;i++){
    clipLoader.createEmptyMovieClip("clip"+i+"_mc",i)
    clipLoader.attachMovie("clip"+i+"_mc","clip"+i+"_mc",i+10);
    clipLoader.loadMovieNum(swfThumbs
    ,i+100);
    scroller_sp.contentPath = clipLoader;
    thanks in anticipation and regards
    raajaindra

    Hi,
    I have a picture show.
    It creates its own folder when you first upload images with
    the integrated Image uploader. Then it loads the images in with
    ASP.
    Have a look at
    http://netwings.info
    - click the B1 Image-show.
    When you are interested, the contact is at the site.
    Regards,
    Luciewong

  • How can i create a button with a dynamic picture?

    How can i create a button with a dynamic picture using
    mcLoader.loadClip
    I did create one with it doesnt seem to be working. It loses
    all its
    functions (eg onPress onRelease)
    Thanks

    I solved thep roblem anyway creating a mc.. then creating
    another MC withing
    the first MC and i change the picture on the second MC. And i
    apply the
    propierities to the first MC , and works
    If i have troubles with mu sistem on the future I will use
    yours!
    Thanks!
    "the fleece" <[email protected]>
    escribi� en el mensaje
    news:e67i88$jlf$[email protected]..
    > the image loading will remove any properties or
    functions the mc had.
    >
    > you need to apply them in the onLoadInit function
    >
    > mclListener.onLoadInit = function(target_mc:MovieClip) {
    > target_mc.onRollOver=blah blah
    > };
    > var image_mcl:MovieClipLoader = new MovieClipLoader();
    > image_mcl.addListener(mclListener);
    > image_mcl.loadClip(blah, blahblah);
    >
    >

  • Client wants a picture gallery that he can update himself. Any ideas?

    I am building a site for the son of an artist. I have built
    in WebYep tags
    so he can change the text, but he would also like a picture
    gallery with
    thumbnails that he can update. Now, like you do, I said yes -
    we can do
    that. Now I'm wondering exactly how to do it? If it were just
    full size
    pictures we could give them simple numerical names, and I
    could give him a
    simple FTP program to pop them into a gallery folder. The
    problem is we need
    thumbnails. This guy can can use a PC to some extent, but he
    doesn't have
    Dreamweaver so I cannot use the lovely PVII gallery.
    Anyone know of a cheap and easy solution?
    Thanks
    James Loudon

    Check with Murray
    I am sure he has done this with a PVII product.
    B
    www.visit-the-coqui.com/
    If you are thinking of a vacation to Puerto Rico
    http://gadgetgrapevine.blogspot.com
    Latest gadget and other news here
    "James Loudon" <[email protected]> wrote in
    message
    news:fkdukh$4f8$[email protected]..
    >I am building a site for the son of an artist. I have
    built in WebYep tags
    >so he can change the text, but he would also like a
    picture gallery with
    >thumbnails that he can update. Now, like you do, I said
    yes - we can do
    >that. Now I'm wondering exactly how to do it? If it were
    just full size
    >pictures we could give them simple numerical names, and I
    could give him a
    >simple FTP program to pop them into a gallery folder. The
    problem is we
    >need thumbnails. This guy can can use a PC to some
    extent, but he doesn't
    >have Dreamweaver so I cannot use the lovely PVII gallery.
    > Anyone know of a cheap and easy solution?
    > Thanks
    >
    > --
    > James Loudon
    >
    >

  • I am trying to upload my PDF file from my IBooks but its only giving me the option to upload from my pictures/gallery. How do I get it to where I can upload PDF files from my iBook or how do I transfer my PDF files to my pics?

    I am trying to upload my PDF file from my iBooks but its only giving me the option to upload from my pictures/gallery. How do I get it so I can upload from my iBooks or move my PDF files to my gallery so I can upload it?

    I'm having the same issue. I saved a PDF from an email into iBooks. I'm on apple applying for a job but the only option the upload button has is from the Photos file. How ironic right? Luckily I'm in Logistics and not an IT specialist applying for this job! Lol. Does anyone know the fix?

  • Dynamic photo gallery in flex

    superb post for a Dynamic photo gallery using a xml generated flex application http://flexlearner.wordpress.com/2009/09/04/dynamic-photo-gallery-in-flex/

    try:
    txfe.text = xmlFile.section[int(m.currentTarget.details) -1].details;
    instead of
    txfe.text = xmlFile.image.[int(m.currentTarget.details) -1];
    and add your thumbs to gal, not the stage.  when you're done with the gallery, remove gal.

  • How do you resize the Picture Gallery Widget? (below 279 pt)

    The Picture Gallery widget works very nicely on a book, but it's way too big for my book design. I want a smaller image in the corner of the book. Something you tap on to open the picture gallery.
    I can get rid of the title, the caption and the background and shrink the widget a bit, but then you go to the "metrics" section in the Inspector, and the widget will not go below a certain width or height (a potential disaster for the overall design of your book).
    Bookry's widgets will not cut it either. What is the option then? Do I need to hand-code my own picture gallery widget? Good Lord..

    The arrows don't show up on the iPad, they are only to aid navigation within iBA. You can use boxes in the background to frame your galleries (as the background is off). I believe it's also possible to change the colour of the dots beneath the gallery too, although I forget how to do that right now.
    About Apple's rigid UX – I agree that it can be frustrating. Apple intended iBA to be used by everyone, and the sort of design options and customisability we might want may confuse the less experienced user. Apple also wanted the UI for every book to be the same – from the point of view of the new user, once you've used one iBA ebook (or iBook, I'm not sure what Apple want us to call it), you can use them all. Otherwise end users would to get used to a slightly different UI on each book, which kind of works against the idea that ideally UI should be intuitive enough to be invisible. I can see the point in that. I have created a 'How to use' section in every iBA file I've made. It get's old quickly.
    Oh, and (you probably know this, but…) you can choose your own custom icon for audio. It's limited, as it's only a placeholder image that allows you to play an audio file, there's no ability to pause the audio or stop it once you choose the view as thumbnail choice. Something I'd like to see changed.
    Here's a link to Apple feedback page for iBA. Feel free to hammer it with your suggestions.
    https://www.apple.com/feedback/ibooks-author.html

  • Streamloader error in picture gallery using personal domain

    I've upgraded my site to iWeb '08 and added a Picture Gallery page to aggregate all my different picture pages. Everything works great when I'm viewing it using my web.mac.com/ URL. However, if I navigate to the page using my personal domain, which I've set up, the gallery doesn't work correctly on either Safari (mac) or IE (pc), I only get the shell page and no pictures galleries.
    Works:
    http://web.mac.com/ppmolina/main/Pictures/Pictures.html
    Doesn't work:
    http://www.molinafamily.us/main/Pictures/Pictures.html
    Using the domain URL, I get these errors for each of my galleries:
    Safari doesn't indicate any type of error.
    IE shows these errors:
    Line: 507 (it shows one error for each of my galleries)
    Char: 1
    Error: Permission Denied
    Code: 0
    URL: http://molinafamily.us/main/Pictures/streamloader.html?scriptURL=Pages/GreenbushPic_Page_files/Greenbush_PicPage.js&id=gridEntry2
    Anyone else having this problem? Suggestions on how to fix it?

    I am having that exact same problem, but it only started recently. I thought it was due to some adsense ads that I placed at the bottom of each page, but after I removed them the pictures still don't work. I have tried everything I can think of, but it only works if I use my web.mac.com instead of my domain.
    I have only tried viewing it in Firefox, but I'm assuming the same problem will occur in IE and Safari as well.
    Works:
    http://web.mac.com/sheazle/SheazleSite/RegularPhotos/RegularPhotos.html
    Doesn't Work:
    http://www.sheazle.com/SheazleSite/RegularPhotos/RegularPhotos.html

  • This phone is new to me.  How do I download my pictures - Gallery - to my pc?

    This Galaxy III is new to me.  How to I transfer pictures - Gallery - to my PC.  I have over 500 now and can't get them over. 

    Please note I do not own your device.
    The quickest way is to use the usb cable that came with the phone and connect it to the computer. The computer will show it as another drive letter. (E,F,G,H etc.) you open up that new drive letter and look for the pictures folder on the phone. you then right click on the pictures/photo folder and do a select all then choose copy, then go to the pictures folder on your computer and right click and select PASTE the photos should now be copied to the computer. (Make a new folder if you desire and call it like Photos transferred from S3) this way you know where they are located.
    You can also just delete the photos from the phone you don't want via choosing them and then hit delete.

  • Dynamic Photo Gallery with Static Links

    The Dynamic Photo Gallery has a Dynamic List Menu generated from the galleries.xml file.
    I would like to load the Dynamic Galleries with a link if possible. Currently I have 3 Galleries.... China, Eqypt & Paris
    Dynamic Code:
    <select name="gallerySelect" id="gallerySelect" onchange="dsGalleries.setCurrentRowNumber(this.selectedIndex);" spry:repeatchildren="dsGalleries" spry:choose="choose">
            <option spry:when="{ds_RowNumber} == {ds_CurrentRowNumber}" selected="selected">{sitename}</option>
            <option spry:default="default">{sitename}</option>
          </select>
    I am using some code from V1 that generates a Gallery List as follows:
    <ul spry:repeatchildren="dsGalleries">
      <li><a href="#{ds_RowNumber}" onclick="dsGalleries.setCurrentRowNumber(this.href.replace(/\#/g,''));">{sitename}</a></l i>
          </ul>
    This works to display the dynamic Galleries but, the links do not connect to the specific galleries.
    Can anyone please help with this?
    Thank you,
    W Bell

    Sorry for not beeing to respond to your issue sooner, but i'm having some deadlines that needed to be worked on.
    This works to display the dynamic Galleries but, the links do not connect to the specific galleries.
    Can anyone please help with this?
    Can you resend me the url again, as i needed clear my inbox because i reached maximum amount of messages.

  • Sending an iPhoto picture gallery to MobileMe

    When synchronizing an iPhoto picture gallery to MobileMe, is there any way to filter out which pictures in the gallery you want posted. For instance, can is there a way to only upload the "flagged" photos?

    don't put the photos in the iPhoto MobileMe gallery - everything in the gallery will be synced with Mobile me
    LN

  • Picture gallery not opening after OS upgrade

    I recently bought blackberry z10 and up graded the OS to 10.2.0.424. After the upgrade I see that Picture gallery doesn't open. I tried rebooting the phone by pressing both volume keys simultaneously, but the phone won't reboot as well. Please help.

    gauravrjpl wrote:
    I'm sorry for not specifically mentioning the process followed. By soft reboot I meant the method you mentioned for BB10 devices. And hard reboot was pulling out the battery. What I couldn't do was to reboot using the volume keys.
    Ah, OK...thanks!
    gauravrjpl wrote:
    Anyway, you mentioned about clean OS reload. Can you please elaborate? Can I do it myself?
    Yup. For the "normal" method (automated, controlled by your carrier as far as the specific OS level you receive), refer:
    http://supportforums.blackberry.com/t5/General-BlackBerry-10-Smartphone/How-to-Reload-your-Blackberr...
    For the more controlled (by you, letting you decide exactly what to install) method, refer:
    http://supportforums.blackberry.com/t5/BlackBerry-10-OS-Device-Software/Upgrading-OS10-devices-using...
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Dynamic Image Gallery Issue

    Hello All!
    I am creating a dynamic image gallery, but when my external
    images load in the empty movie clip, all the images are loading in
    the same size/dimension. Does anyone know how I can command the MC
    to load the images in different sizes, another words - to load them
    according to its own size?
    here's the AS
    onClipEvent (load)
    function imageMove()
    var _loc1 = this;
    for (i = 1; i <= num_of_image; i++)
    mc = _loc1["image" + i];
    if (i < hit)
    tempx = small * (i - 1) + 30;
    temps = small - 5;
    mc.useHandCursor = true;
    else if (i > hit)
    tempx = big + small * (i - 2) + 30;
    temps = small - 5;
    mc.useHandCursor = true;
    else
    tempx = small * (i - 1) + 150; //distance of how far out the
    displayed image jumps.
    temps = big - 5; //distance between the displayed image and
    thumbnails.
    mc.swapDepths(1000);
    display = txt
    mc.useHandCursor = false;
    } // end else if
    mc._x = mc._x + (tempx - mc._x) / 3; //number of pixals on
    x-axis the displayed image moves over to right side before growing
    big.
    mc._width = mc._width + (temps - mc._width) / 3; //number of
    pixals on x-axis the displayed image moves over to left side before
    growing big.
    mc._height = mc._width * 4 / 3;
    if (Math.abs(mc._width - temps) <= 1)
    title._x = hit < 5 ? (_loc1["image" + hit]._x + big / 2) :
    (_loc1["image" + hit]._x - big / 2 - 100);
    title._y = 100;
    } // end if
    } // end of for
    } // End of the function
    function loopHye()
    if (hit != num_of_image)
    ++_global.hit;
    else
    _global.hit = 1;
    } // end else if
    } // End of the function
    getURL("FSCommand:allowscale", false);
    big = 300;
    //Large image width (400 works best for my portfolio site)
    small = 60;//Small image width (40 works well for my
    portfolio site)
    num_of_image = 8;//Total number of images
    timeGap = none;//Speed (speed of gaptime when each image is
    displayed automatically. "2000" is default of this original file.
    larger the number the slower the image changes. (type in "none"
    will stop automatic images from changing.
    _global.hit = 0;//First displyed image number (type "0" to
    stop images from growing out)
    txt = [" ", "image1", "image2", "image3", "image4", "image5",
    "image6", "image7", "image8"];//insert text of each images between
    for (i = 1; i <= num_of_image; i++)
    attachMovie("image", "image" + i, i);
    loadMovie("image/" + i + ".jpg", this["image" +
    i].tar);//image folder path
    mc = this["image" + i];
    mc._x = small * (i - 1) + 30;
    mc._y = 200; //where on the axis should the displays be.
    mc._width = small - 5;
    mc._height = mc._width * 4 / 3;
    this["image" + i].onRelease = function ()
    clearInterval(interval);
    _global.hit = this._name.substr(5);
    interval = setInterval(loopHye, timeGap);
    } // end of for
    interval = setInterval(loopHye, timeGap);
    onClipEvent (enterFrame)
    imageMove();
    check out the file
    http://www.wendiland.com/Gallery122b.fla
    this is what the current gallery looks like
    http://www.wendiland.com/print2.html
    I'd appreciated if someone replies with any sort of
    suggestions! thanks in advance!!!
    - W£NDI

    if you google with "dynamic image gallery", you'll find a lot
    of
    tutorials & examples including pre-programmed solutions
    if you prefer to do it yourself, you need to deal with
    dynamic sites. DW
    help chapters Preparing to Build Dynamic Sites, Making Pages
    Dynamic &
    Developing Applications Rapidly can also help to understand
    in fact you don't need a database, the images can be read
    from the
    folder they're stored. that way to update a gallery you only
    need to
    remove/replace/add images. one folder for each gallery
    and the application development forum is best suited for your
    question
    BTW, some nice photos in your page
    hth,
    jdoe
    uvi wrote:
    > I'm trying to create a dynamic image gallery that is
    updated from a database, i
    > managed to create a simple mysql database
    > using phpmy admin, so I could update my image gallery
    more often, I saw
    > something that I like but I have no idea how to create
    it here is the example:
    >
    http://flight001.com/store/trip.htm?itemid=307&sid=201&page=2
    > I didnt manage to create this with dynamic table from
    within dreamweaver 8,
    > maybe I just don't know how,
    > this is the link to a gallery on my website:
    >
    http://www.yuvallavy.com/work/scenic/scenic.htm.
    I need all the help I can get
    > I'm using dreamweaver 8 on a Mac and using PHP/MySql
    server model.
    >

Maybe you are looking for