Problems with simple picture gallery

I've got a website project where the client wanted a picture
gallery. I don't really do much with Flash so I went on the web and
found a tutorial on how to get what I want. Problem is that the
instructions I followed are fairly old so I couldn't export my
movie any higher than AS2 and Flash 6 and have it work. That would
be fine except that I wanted to use a feature that requires Flash 8
or higher, namely a gradient mask. I was hoping that I could post
my code and have the board gurus help me out with what i need to do
to get everything working together.
First you'll want to create a movie using AS2 and Flash 8 to
see what I'm trying to accomplish, then export it again with Flash
6 to see it actually working. You can grab a copy of what I'm
working with here:
http://www.technospider.com/~david/rusty.zip
All help greatly appreciated.
Thanks,
David

based on experience. i didn't check your file.
you're not likely to get anyone in this forum to check your
file.
if there's not code problem, and you can't publish for flash
8, there will be an error message. if you can publish for flash 8,
you see no error message but your application fails to work
correctly, you must have a problem with code.

Similar Messages

  • I have a problem with the effect gallery and the saving libraries in Illustrator CS6

    Hi everybody
    I have a problem with the effect gallery and the saving libraries in Illustrator
    1. When you go to to effects > effect Gallery the the sketch filter always is black and white. Is this normal? In Photoshop you can set your background and foreground and the sketch effects takes those colors. Is there any way to do this in Illustrator? I have tried changing the colour of the fill and stroke but nothing...
    2. In the same area as before effects > effect Gallery .... In Photoshop you can add multiple filters with the create new button. Always is off is there anyway to make it available? or the only way is to by creating several individual ones and manage then in the appearance panel ...
    3. I saved a brush library and now it appears in the user defined area so I can get it in any document, that is good but any one knows how to delete a user undefined library?
    Many thanks in advance for the help .... I look forward for the reply =)

    I see that it is six months ago that I first posted this. Nothing has changed. When I use affixa to create a message with an attachment from my gmail account in firefox, the message is created in drafts, but the gmail window is closed and I have to re-open it. Not critical, but annoying.
    Now there is a plug-in on the affixa site that is supposed to be designed for Firefox, and which affixa support claims should take care of this. And I've downloaded it twice. When you download it and open it, it says that it will be installed when Firefox restarts, and gives you a button to restart Firefox. But after you click that button and firefox disappears and re-appears, the affixa plug-in is NOT in the plugin list.
    Please, somebody, HELP.

  • Hi Guys, I have a problem with Importing Pictures onto my Mac mini with Lion installed by using a Card Reader, What is the problem here so I can get Pictures onto my Computer. ,

    Hi Guys,
    I have a problem with Importing Pictures onto my Mac mini with Lion installed by using a Card Reader,
    What is the problem here so I can get Pictures onto my Computer. ,

    Hi Noob Søren
    There are a few things that are confusing in your question.
    As far as I know, you dont have to install Time Machine on this OS as it is already installed for you. You only need to connect a hard drive to your computer via firewire or usb, click on the Time Machine icon, Open Time Machine Preference in the drop down menu and select a disk: your connected hard drive.
    You can of course reformat this connected device, partition it into a few volumes to organise data if you so wish.
    I find it strange that your mac's hard drive is divided into two volumes... perhaps this was created through bootcamp?
    You can access the configuration of your hd through Applications/Utilities/Disk Utilities.
    Clicking on one of the icons on the right hand panel will bring the details of the contents of your hardDrive and volumes. From there you can decide to erase a partition, reformat etc....
    If your hd contains more than one volume, and one of them is empty, you could decide to remove it. Back up all your important data before doing so.
    Hope this helps
    WN

  • Problem with displaying picture.

    I use PS-CC and LR5.on a HP i7 computer and windows 7.Camera D-800, pictures in raw.
    I usually import pictures in nef  in LR5,. After  some corrections, I export my pictures to DNG format. I sometimes do a little bit of work in camera raw then go into Photoshop.
    My problem: When in photoshop, I get a grainy version of my photo which wasn't the situation in LR5 or Camera raw, Hard to work with. The grains will disappear when I enlarge the picture but then I have to enlarge it so much that I only see or can work with only part of my picture. The problem does not appear in CS6.
    Hope somebody can help me.
    Thanks
    Jacques Legault

    I should clarify this.. When I import photos into LR5, I always use copy as
    DNG. I know that NEF and DNG are the same for photoshop and I always shoot
    in raw.
    One thing I do not know is how to do a screen shot. I will get back tro you
    on that. When I say grain, or noise if you like, I mean that, if i relate
    to films, my picture in LR5  would be at ISO 100 and my screen shot in
    photoshop would look like it was boosted to 1200 or worse.
    See you soon I hope with a screen shot.
    2014-06-14 13:43 GMT-04:00 twenty_one <[email protected]>:
        Problem with displaying picture.  created by twenty_one
    <https://forums.adobe.com/people/twenty_one> in *Photoshop General
    Discussion* - View the full discussion
    <https://forums.adobe.com/message/6458682#6458682>

  • Problems with flash photo-gallery xml

    Hello,
    I need help. I have bought your photogallery template and i
    am having problems with it.
    When i test the gallery on my portfolio website (html) all it
    comes up is the background, the pictures and thumbnail pictures
    wont load. I am putting the files in the right folder and using the
    swf in an html (dreamweaver cs3). what is it happening?
    I dont know xlm. Plz give me a hand??
    Thanks

    Hi DZ,
    I am testing it locally. I didn't even upload anything yet.
    And yes, i put the swf into my html portfolios page (dreamweaver
    cs3) and tested locally. the pictures wont show up, only the bg for
    the photo-gallery. I bought this template here at the
    exchange

  • Problem with simple chart

    Hi everyone. I've got a problem with ABAP charts. I need to place a simple chart in screen's container.
    REPORT ZWOP_TEST4 .
    Contain the constants for the graph type
    TYPE-POOLS: GFW.
    DATA: VALUES       TYPE TABLE OF GPRVAL WITH HEADER LINE.
    DATA: COLUMN_TEXTS TYPE TABLE OF GPRTXT WITH HEADER LINE.
    DATA: ok_code LIKE sy-ucomm.
    DATA: my_container TYPE REF TO cl_gui_custom_container.
    REFRESH VALUES.
    REFRESH COLUMN_TEXTS.
    VALUES-ROWTXT = 'Salary'.
    VALUES-VAL1 = 50000.
    VALUES-VAL2 = 51000.
    APPEND VALUES.
    VALUES-ROWTXT = 'Life cost'.
    VALUES-VAL1 = 49000.
    VALUES-VAL2 = 51200.
    APPEND VALUES.
    COLUMN_TEXTS-COLTXT = '2003'.
    APPEND COLUMN_TEXTS.
    COLUMN_TEXTS-COLTXT = '2004'.
    APPEND COLUMN_TEXTS.
    Call a chart into a standard container, this function could be used
    for many different graphic types depending on the presentation_type
    field :
    gfw_prestype_lines
    gfw_prestype_area
    gfw_prestype_horizontal_bars
    gfw_prestype_pie_chart
    gfw_prestype_vertical_bars
    gfw_prestype_time_axis
    CALL SCREEN '1000'.
      CALL FUNCTION 'GFW_PRES_SHOW'
        EXPORTING
          CONTAINER         = 'CONTAINER'    "A screen with an empty
                                            container must be defined
          PRESENTATION_TYPE = GFW_PRESTYPE_LINES
        TABLES
          VALUES            = VALUES
          COLUMN_TEXTS      = COLUMN_TEXTS
        EXCEPTIONS
          ERROR_OCCURRED    = 1
          OTHERS            = 2.
    *&      Module  STATUS_1000  OUTPUT
          text
    MODULE STATUS_1000 OUTPUT.
      SET PF-STATUS 'GUI_1000'.
    SET TITLEBAR 'xxx'.
      IF my_container IS INITIAL.
        CREATE OBJECT my_container
          EXPORTING container_name = 'CONTAINER'.
      ENDIF.
    ENDMODULE.                 " STATUS_1000  OUTPUT
    *&      Module  USER_COMMAND_1000  INPUT
          text
    MODULE USER_COMMAND_1000 INPUT.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'EXIT'.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_1000  INPUT
    I created a screen 1000 in SCREENPAINTER, named it 'CONTAINER'. Then I try to launch code above and nothing appears on the screen. Could You give me some tip?

    Hi,
    delete this lines:
    IF my_container IS INITIAL.
    CREATE OBJECT my_container
    EXPORTING container_name = 'CONTAINER'.
    ENDIF.
    then it should work.
    R

  • Problem with the music gallery after 2.3 update

    Hello
    Just recently updated my XperiaX10i (French version, not operator sim locked). No problem with the update itself and the phone seems to work properly.
    But, the music gallery did first not detect the music files already in the 32Go sd card (no problem for photos, videos or other files) and didn't therefore load them into the library. I had to download them all by new through Media Go and now the library shows them, but the record sleeves do no more appear in the album list like in the 2.1 version which was very practical for selection, nevertheless the sleeves appear in background while reading a track: this looks more like some bug than anything else.
    I'm also very missing the former fast launching bar application for Wifi, Bluetooth, GPS, Sync and Screen Luminosity, it seems that for launching all these features one must go through the parameters file now.
    As a conclusion, I can hardly see what exactly improved on this phone since version 2.1. except maybe just a little bit the speed and the quality of the screen posting.
    Update from 1.6 to 2.1 was total revolution in comparison.
    Solved!
    Go to Solution.

    I did already this through Media Go and the problem seems not related to some missing art covers. MP3Tag shows them, Media Go shows them, I guess Media Player would show them the same way as they were already existing before the update. I installed also Poweramp in the meanwhile on the X10 and the covers appear in the folder section, but still not in the library section which seems related to the Android library according to some start popup in Poweramp. There must be something wrong with inner codes that I’m unable to dig.
    Anyway, seeing them in the PowerAMP folder is OK now.
    Thanks for the help.

  • Problem with N95 8Gb Gallery

    I have a quite annoying problem with my N95 8Gb Gallery.
    Since last week, when I open the gallery it appears a lot of system files that shouldn't be there instead of only showing my videos and photos. It makes the phone a lot slower and it crashes. It takes a lot of time to select any file.
    Is it some kind of system trouble or have I messed up with something i shouldnt?
    Thanks for the help and sorry about the writing mistakes

    yes it is very odd!
    Well I have tried to just loads 2 images from the laptop onto my mobile. I have tried doing a direct file transfer (mass media) and then also tried through Nokia PC suite-uploaded via the CD rom I was given.On both occasions this has been uncessful to view images from the gallery menu on the phone..crashes!
    I think the photos are actually on the phone under the file manager folder I can find them stored here. However on opening the gallery to try and view these files, the phone freezes and I am unable to exit the menu -using the 'back' button have to press the red phone cancel button. Once out of the gallery folder and back to the main screen I can then no longer access and shortcut menus for about 3mins. Very frustrating. The most recent phone I have now, I got 2 days ago-I've not even plugged into my laptop, and when asking a friend to send me images via bluetooth I cannot open this either!! (it comes as a text format from bluetooth) and on opening the phone just freezes again. I try to save this when asked to mass memory and not phone memory.
    I can take images on my 'phone camera' but again cannot view as unable to access the gallery-constantly freezes the phone.The images are not a large file just jpeg format for example 45KB another one I tried was much larger 1MB...
    I still don't understand why this is happening all the time!!! Many thanks for your help.... (Orange are going to send me a new sim card to try) and see if this helps.

  • Problems with the pictures in automatic mode

    I bought an xperia Z1 just a few days ago, I just find a problem with the camera flash, when I take a picture in automatic mode. 
    failure is, when a picture is taken in autmomatic mode, the right side of the picture, left with a bright white shadow, wich is ruining the photos.
    I need your help, Its so frustrating, I thought I had made ​​the right decision when I bought this computer, but apparently not
    attached a sample image
    hopefully you can help me
    kind regards

    Probably there was something that reflected your flash.I suggest you disable flash in panoramic night shots.
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • Problem with saving picture in Vision Builder

    hello
    I'm using Vision builder and i'm trying to save picture with Image Logging. And i made ftp server that picture could be save. In folder path I write location where I want that picture save. But problem is, that picture does not saves in that location where I want.
    Could anybody help me?
    Please
    Matjaz
    p.s.: I attach a picture that You will see how I made my settings
    Attachments:
    napaka.jpg ‏4307 KB

    rezi wrote:
    why is writen 257 "/" is current directory ??
    It means that root is current directory.
    For setting VBAI as current directory it should be something like
    CWD VBAI
    250 OK. Current directory is /VBAI
    PWD
    257 "/VBAI" is your current directory.
    Try to remove VBAI from Folder path and leave this setting just empty. Then your images should be written into root directory. Also you have selected option "Log images when inspection status FAIL". May be your status PASS? In this case images will be not logged. Try to change this option to "Log Image".

  • Problem with simple query

    I have a problem with Oracle 10.2.0.5.0 and 11.2.0.1.0. Query result is wrong.
    SELECT t.id
      FROM (SELECT t.ID, MAX(t.nom) AS nom
              FROM (SELECT 2 AS ID, 200 AS nom
                      FROM dual
                    UNION ALL
                    SELECT 3 AS ID, 0 AS nom FROM dual) t
              LEFT JOIN (SELECT 0 AS ID_1, 0 AS nom_1 FROM dual) s
                ON s.id_1 = t.ID
             WHERE t.ID IN (2, 3)
             GROUP BY t.ID
            HAVING MAX(t.nom) != 0) t;Return nothing.
    But on Oracle 10.2.0.4.0 result is correct:
    ID  NOM
    2  200

    Looks like a bug related to ANSI joins.
    Check Oracle Support, maybe it's fixed in 11.2.0.2.
    It works with Oracle join syntax :
    Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.1.0
    Connected as dev
    SQL>
    SQL> SELECT t.id
      2    FROM (SELECT t.ID, MAX(t.nom) AS nom
      3            FROM (SELECT 2 AS ID, 200 AS nom
      4                    FROM dual
      5                  UNION ALL
      6                  SELECT 3 AS ID, 0 AS nom FROM dual) t
      7                ,(SELECT 0 AS ID_1, 0 AS nom_1 FROM dual) s
      8           WHERE t.ID IN (2, 3)
      9           AND s.id_1(+) = t.ID
    10           GROUP BY t.ID
    11          HAVING MAX(t.nom) != 0) t;
            ID
             2

  • Problems with Flash thumbnail gallery

    Hi there,
    I am an artist trying to remake my website...I have a picture of a window on my homepage. The window is a movie. When clicked on, the window lights turn on and a grid of thumbnail pics appear. Each thumbnail is a movie clip. When a thumbnail is clicked on, the movie plays and a larger image appears over the window. The problem is, the window is still active underneath the large image, so if I click on the large image, I am really clicking on the window movie clip underneath, and the thumbnail grid disappears-starting the window movie clip over. How do I make the window clip inactive after it is initially clicked?
    Also, I would like the larger images to end their movie clips after another thumbnail is clicked, so that there aren't large images piled up on top of each other.
    Is there anyone that can help?
    Thanks in advance!!

    Hi again,
    First off, thanks so much for your continued help...
    So, I changed my design a little and format. Now I'm using as3, with Flash CS5.
    My thumbnail gallery is still based on the same concept, I want a movie clip of a window to be clicked on that reveals a thumb grid, but now the thumbnail gallery should appear over the window, and the large portfolio images appear in the blank space to the right. I followed a tutorial for the gallery, here's my code on the main timeline:
    import flash.events.MouseEvent;
    btn1.addEventListener(MouseEvent.CLICK, GetFirstImage)
    function GetFirstImage (evt:MouseEvent) {
              gotoAndStop("pic1")
    import flash.events.MouseEvent;
    btn2.addEventListener(MouseEvent.CLICK, GetSecondImage)
    function GetSecondImage (evt:MouseEvent) {
              gotoAndStop("pic2")
    import flash.events.MouseEvent;
    btn3.addEventListener(MouseEvent.CLICK, GetThirdImage)
    function GetThirdImage (evt:MouseEvent) {
              gotoAndStop("pic3")
    But now I don't know how to go about adding in the initial movie clip of the window (which when clicked should light up and fade into the thumbnail grid) Right now I just have the gallery set up. How do I set up a movie that contains my gallery?
    Sorry if the question is redundant, but as you know, I'm new to actionscript.
    Thanks! 

  • Problem with making picture invisible

    Hi,
    I prospect forums but I have not found solutions to my problems. I
    want to display different pictures at different times or successively.
    I want to display one picture, wait until the user click onto it
    (I know how do it), then display another picture in the place of the
    first and so blinking (making invisible and inactive) the first.
    Sorry for this simple request. Thanks in advance for your help.

    Hi,
    I send here the program I would like to realize.
    The user must clicks a certain number of times (once or five times) on a red rectangle before two shapes (A and B, once in the left and once in the right) appear and the subject chooses either one. The same thing with another pair of stimuli (C and D) after completion of a number of clicks required on the rectangle. One sequence consists on 2 presentations of the pair AB stimuli with each stimuli once at right and once at left + 2 presentations of CD stimuli with each stimuli once at right and once at left.
    I want to randomize order of events, so I will create (no doing yet) 24 sequences of possible order of events (not only display AB_BA_CD_DC, like the example, here in the block diagram, but too AB_DC_BA_CD, for example). The choice of the sequence is randomized with a random number (multiply by one for the moment in order you see immediately the events when you run the VI).
    I use ring picture to display the stimuli and enumerated constant for the type of stimuli I display. What I would like to do is using only 2 rings indicators, but I have seen when I did that, the program doesn't work. I was "forced" to use one ring each time. It will be more costly for me to write because I must create property node_property visible_false for other ring each time and in this cas I would use 288 rings.
    My question is how can I do for using only 2 rings? And am I forced to use sequence structure?    
    Thanks in advance for your help.
    sequence 1 effort à FR5.zip (849 kb)
    Attachments:
    sequence 1 effort à FR5.zip ‏849 KB

  • CS4 problem with Web Photo Gallery Plug-in

    I have googled answers to the question of how to get Web Photo Gallery back into Automate for CS4. I put the Content disc in, and went to Goodies-Adobe Photoshop CS4 Extended-Optional Plug-ins-Automate. There are three files there (ContactSheetll.plugin, PhotomergeUI.plugin, and WebContactSheetll.plugin. When I click on each of the files, I get the message: Could not complete your request because Photoshop does not recognize this type of file. This has happened with both the content disc goodies and the Adobe download that was recommended. Has anyone experienced this problem, and are there any solutions?

    If anyone is still following this thread....I having the same problem. I downloaded the CS4 plugin and copied the folder to C:\Program Files\Adobe\Adobe Photoshop CS4 (64 Bit)\Presets\Web Photo Gallery but it doesn't show / appear when I go to file / automate / in CS4. Does anyone have any siggestions? Do I have to "turn on" the feature somehow in ver 11?
    Thanks,  Airpix

  • BOE XI 3.1: Problem with Simple Report Filter.

    Hi everyone!.
    One requirement that i have in one customer is about the use of simple reports filters, the customer doesn't want to use the input controls.
    If i add one simple report filter and save the report, the final user can add other simple report filters, but the problem is that the name "Others" appears with all the variables than i have created to be used in the report.
    Is it possible to hide the group "Others"?
    Thanks!
    Edited by: Jaime Pestaña on Mar 12, 2010 10:26 AM

    If I understood you clearly, I think you have few variables created and one set of variable is called Others and you dont want users to see it.
    There are couple of things you can do.
    First one is to Use Othere filters as constant and it will not appear.
    Second you can use others filter at Report level and it will not prompt to users.
    Bashir Awan

Maybe you are looking for

  • Black and gray in background Acrobat 9?

    I try to hunt answer in acrobat furm (http://www.adobeforums.com/webx?128@@.59b72930) did you now how it's hapen? thank

  • Second hard drive in Quicksilver 733

    I need to increase the size of my internal hard drive, I've got a Seagate 160gb IDE (Ultra ATA100) drive arriving today. If possible I want to add it as a second drive, and make it the Master since it will be faster than the old 60gb drive that came

  • Date in mm/dd/yyyy format

    I have a dunning output that is prodcuing the date in mm/dd/yyyy format despite the user settings being dd/mm/yyyy - and there is no set country command on the form - any ideas of why this is occuring or how I change it.

  • I obtain error -10003 from AI hardware config when I use AC coupling

    I am using a function generator to make a sine wave and I want to obtain the data. However, there is an error 10003 at AI hardware config when I use AC coupling and I am not sure why? Attachments: Motor_Current_Measurement2.vi ‏133 KB

  • CS4 web Premium serial number

    I have installed Web Premium on my PC, windows Vista 64-bit platform, but when trying to enter the serial number given to me by Adobe I get the message "not a valid serial number".  I have checked and re-checked the number and it is the number provid