Is there a way to collect the images used similar to the "package for output" feature?

I'd like to collect only the images/assets that I'm using per page in Dreamweaver. Is there a feature that automates that?

Not in Dreamweaver.
Open your page in Firefox browser.
1. Right Click on page and select View Page Info.
2. Click on Media.  You'll see a list of images and other media used on that page.
Does that help?
Nancy O.

Similar Messages

  • Is there any way to collect the file list from UTL_FILE_DIR.

    I expect the use "Oracle supplied package UTL_FILE" to import our customer order shipments to table by XML format files. I already did the procedure to import one XML file into Table by DBMS_XMLSave.insertXML and UTL_FILE. GET_LINE. And it did work.
    My question is :
    Is there any way to collect the file list from UTL_FILE_DIR. (I put all import XML files into `/usr/tmp?, I want to get all file names from this folder and feed them into UTL_FILE.FOPEN.)
    Thanks in advance

    UTL_FILE_DIR is a very dangerous and deprecated parameter. Oracle very specifically recommends not using it. You should be using directory objects instead.
    As for doing a directory listing, you can use Java stored proc. External procs/functions are not required.
    The following sample shows how to use such a Java stored proc to insert the result of a directory listing into a session temporary table:
    create or replace and compile java source named "ListFiles" as
    import java.io.*;
    import java.sql.*;
    public class ListFiles
            public static void getList(String directory, String filter)
            throws SQLException
                    File path = new File( directory );
                    final String ExpressionFilter =  filter;
                    FilenameFilter fileFilter = new FilenameFilter() {
                            public boolean accept(File dir, String name) {
                                    if(name.equalsIgnoreCase(ExpressionFilter))
                                            return true;
                                    if(name.matches("." + ExpressionFilter))
                                            return true;
                                    return false;
                    String[] list = path.list(fileFilter);
                    String element;
                    for(int i = 0; i < list.length; i++)
                            element = list;
    #sql {
    insert
    into directory_list
    ( directory, filename )
    values
    ( :directory, :element )

  • Is there any way to change the settings for the built in isight camera?

    I'm sure someone else has probably already asked this, but is there any way to change the settings for the built in isight camera? The resolution is horrible.

    Welcome to  Discussions, Prissymissysays
    The last Apple-published resolution data I saw said that iSight's resolution is 640x480 VGA. I do not know of any way to change iSight's resolution, but that level is plenty of quality for my webcam needs.
    The software you use to operate your iSight controls it, so specific answers will depend on what software you are using when you need more resolution. Check Help in that application to see if it can change iSight's resolution.
    Some software, such as Apple's QuickTime 7 Pro allow you to change iSight's video quality and compression level with its QuickTime Player > Preferences > Recording > Quality: setting. You can add iGlasses software to manually override some iSight settings that are otherwise controlled automatically by the software using iSight. However, I do not think either of these options really changes iSight's resolution.
    Check whether your iSight's lens cover has fingerprints or smudges on it. Then check iSight's image quality of your face in full sunlight about two feet from the lens. Best image quality requires more light than what most people would consider normal room lighting.
    If you are still having problems, consider the applicable suggestions from How to Troubleshoot iSight.
    If you need better resolution than iSight can deliver for some special imaging requirement such as close-up or high-accuracy images, you may need to consider using a different camera that better meets your special needs.
    EZ Jim
    PowerBook 1.67 GHz   Mac OS X (10.4.10)    G5 DP 1.8  External iSight

  • Is there any way to set the default for *.doc document so that Pages opens them automatically?

    I have a number of Ms Word documents because I used to have Word for Mac before the last OS release.  Now, of course, when I double-click on them, I get a message saying that PowerPC isn't supported.
    Now Pages will open these files.  Is there any way to change the default for *.doc files so that a double-click will open them in Pages? 
    (Instead of me going to the trouble of finding out where they are actually located on the hard drive so that I can open pages and say - here, open this file--even though you didn't create it--)

    Click on a .doc file and type Cmnd I to open Get Info. In the Open with: menu select Pages, then click on Change All…
    Walt

  • I work for the County and we purchased a copy of Adobe Photoshop CS2 long ago.  The person that did the order is no longer here.  All I have is the CD Disk that is new but i did not know the key code is.  Is there a way to get the keycode for this?

    I work for the County and we purchased a copy of Adobe Photoshop CS2 long ago.  The person that did the order is no longer here.  All I have is the CD Disk that is new but i did not know the key code is.  Is there a way to get the keycode for this?

    It would not work anyway. The activation servers have been retired and Adobe has provided a new CS2 download along with a new serial number for CS2 owners.
    Download Acrobat 7 and CS2 products
    Gene

  • Is there a way to adjust the left/right output?

    Is there a way to adjust the left/right output on the iPod?
    Mine seems to push a little harder on the left side no matter which
    ear devices I use.  My hearing in my right ear is a little weaker,
    so I'm hearing mostly just the left side instead of an equal balance.
    My best earphones don't fit the same way when reversed, so they don't
    sound anywhere near the way they should.  You know the drill-- no
    fit, no seal, no bass... no good.
    And, yes, I know I can make a crossed connector cable...
    Thanks for responding.

    using the 30 pin connector means it bypass the volume switch so you can't adjust the volume, see adjust the EQ setting helps. Otherwise you have to add the switch (a pre-amp etc) in between the iPod and your device

  • How  to verify yum configuration  in OEL . is there any way  to rollback the package

    Hi ,
    How we can verify  the yum configurtion . is there any way to rollback the package using yum
    Also  let me know how to rollback packages that upgraded using up2date .

    Hi ,
    There is nothing  in  yum.repos.d directory  and  below are  entries in /etc/yum.conf file . can you  please  cnfirm wherther yum is configured or not
    yum.repos.d]# ls -ltrh
    total 0
    #cat /etc/yum.conf
    [main]
    cachedir=/var/cache/yum/$basearch/$releasever
    keepcache=0
    debuglevel=2
    logfile=/var/log/yum.log
    exactarch=1
    obsoletes=1
    gpgcheck=1
    plugins=1
    installonly_limit=3
    #  This is the default, if you make this bigger yum won't see if the metadata
    # is newer on the remote and so you'll "gain" the bandwidth of not having to
    # download the new metadata and "pay" for it by yum not having correct
    # information.
    #  It is esp. important, to have correct metadata, for distributions like
    # Fedora which don't keep old packages around. If you don't like this checking
    # interupting your command line usage, it's much better to have something
    # manually check the metadata once an hour (yum-updatesd will do this).
    # metadata_expire=90m
    # PUT YOUR REPOS HERE OR IN separate files named file.repo
    # in /etc/yum.repos.d

  • I have  license for Adobe Design Std CS6 6.0 MLP .Is there any way to get the installer for this?

    I have  license for Adobe Design Std CS6 6.0 MLP .Is there any way to get the installer for this?

    Download CS6 products
    Mylenium

  • Is there any way to enlarge the font for the panels in Bridge?

    Is there any way to enlarge the font for the panels in Bridge? Either CC or CS6?

    To change the default message font, use UIManager:   UIManager.put("OptionPane.messageFont",
          new Font("Lucida Console", Font.PLAIN, 12)); Per-instance, use HTML:   JOptionPane.showMessageDialog(
          "<html><font face='Lucida Console'>Your message here</font></html>");

  • Is there a way to change the pinch-to-zoom feature?

    Is there a way to change the behavior of pinch-to-zoom in Safari 5.1.4 on Lion?  It seems to have adopted the iOS zoom (where it's a zoom into an area on the page) and I would prefer that it emulated a Command-+ type of page zoom.  When using pinch-to-zoom in a site like Gmail or Google Reader, the content ends up requiring horizontal scrolling if you pinch-to-zoom... while Command-+ increases the size of everything but keeps it within a single screen.
    Can this be done?  Is there the equivalent of the about:config page from Firefox?
    Apple... can you fix this (or offer an option to determine how pinch-to-zoom works in Safari)?!?!
    Thanks!
    - John

    Thanks for your response.
    I have searched for a solution to change the order of my tags and haven't found it.
    I add multiple tags to my emails and the color at a glance means something to me - if I add an earlier, more up the priority ladder it shows that color instead of the one that I want. I'm rambling but the fact remains that I would like to be able to change the tag priority.
    Have a great one!
    Teri

  • Is there a way to display the legend for a chart, but not the chart?

    Hi,
    I have a stacked column chart and a line chart on top of each other.   I can't use the legend for the stacked column chart because the data will change from month to month, and the 2 charts will not be aligned.  I copied the stacked column chart to another part of the canvas and want to display only the legend, but the chart is still displaying.  Is there a way to prevent the chart from displaying?    Thanks.

    hi Jim Wojewnik,
    we can show only the legend in a pie chart by dragging the edges to closer.do the following,
    select the pie chart,select the edge of the chart and make it small and u ll find the pie chart shrinking.make it lean such that the pie chart disappear.
    try this work around and let me know.
    regards,
    ravi.

  • Is there a way to change the thumbnails for movies/videos?

    This may be more of a Leopard question, but I'm wondering if there's a way to change the thumbnail that OSX and Front Row display of movie files. I think this feature is awesome but would love to have more control over it so I can pick a frame from the video that relevant to me. Imagine Front Row's menu for movies with a bunch of thumbnails that are title screens or your favorite scenes from your movie collection (rather than a random thumbnail that may or may not even be identifiable to that movie).
    I've already included this request to Apple in a suggestion I sent along including a few other Front Row requests/suggestions I had including movie/video playlists, album art support over streaming/shared libraries, and music that doesn't stop playing when you return to the main menu.

    It appears that "saving" doesn't impact the quality, but wraps the file up in the .mov format (size and quality appear to stay the same). It worked ("saving" instead of using the save as a reference movie seems to fix the starting playback from the poster-frame issue). However, now a new issue has come up... I like to save the files to DVD as the original .avi so they will play on our Philips DVD players. However, being wrapped up in .mov means I have to have two versions of the file, and if my HDD ever dies or fills up I'll have to always correct the poster frame, and save another copy from the .avi original. Kind of frustrating... I wish Front Row/Quick Time would let you easily change the thumbnail and not have to change the format, etc.
    Thanks everyone for your help. Hopefully some of this feedback has helped others with similar questions.

  • Is there a way to change the CSR for install SSL Certificate for CCMADMIN

    HI there,
    Our customer want a solution for the https failure on CCMAdmin and CCMUser sites.
    For that, I have exported a csr to buy a ssl certificate from verisign.
    The problem is the csr includes fqdn an not just the servername
    But the users just have to type in the servername to reach the server.
    Is there a way to export a csr which include as common name only the server name without changing the domain settings in the cucm?
    thanks
    Marco

    Hi
    You can go to the server via SSH, and enter the 'set web-security' command with the alternate-host-name parameter:
    Command Syntax
    set web-security orgunit orgname locality state country alternate-host-name
    Parameters
    • orgunit represents the organizational unit.
    • orgname represents the organizational name.
    • locality represents the organization location.
    • state represents the organization state.
    • country represents the organization country.
    • alternate-host-name (optional) specifies an alternate name for the host when you generate a
    web-server (Tomcat) certificate.
    Note When you set an alternate-host-name parameter with the set web-security command,
    self-signed certificates for tomcat will contain the Subject Alternate Name extension with
    the alternate-host-name specified. CSR for Cisco Unified Communications Manager will
    contain Subject Alternate Name Extension with the alternate host name included in the CSR.
    Typically you would still use an FQDN, but a less specific one (e.g. ccm.company.com)...
    Regards
    Aaron
    Please rate helpful posts...

  • Is there a way to change the hotkey for starting firefox in safe-mode?

    The current default hotkey is shift. Holding it when starting firefox will start it in safe mode (true story). My super duper favorite handy windows hotkey for starting programs pinned to the task bar in windows 7 is windows_key + shift + #, and that conflicts with the firefox setting, and i always end up starting firefox in safe mode because im that lazy.

    Greetings!
    I'm an irssi user, and I have awesome mouse gesture addon for it, and I'm afraid I can't live without it anymore.. But it requires Shift key for opening links, therefore Firefox, as my default browser, always starts in Safe mode :(
    I'm not a programmer, easiest workaround would be modifying the irssi addon, but I suck on that, too.
    If there's a way to bypass Safe Mode in Firefox, or at least a way to change the Shift key to something else, that would make my miserable life a tad easier.

  • HT4314 I have two games Tribez and Tribez and Castles on my iPad. I have to send my iPad Air back for repair to crack glass. Is there any way to save the games., for when I have to restore back up

    I have two games tribez and tribez and Castle. As my new iPad air has a cracked screen I have to send it back for repair. I have to do a reset and restore backup when I get it back. Is there any way to back up above games. On tribez I have reached level 99 and will be annoying to starts again.

    Do you have a computer with iTunes on it that you have associated the iPad with?
    If the answer is yes, simply set iTunes up to back up the device locally, fully sync the apps, photos, movies, etc. A copy of everything, including the config of the device and all your settings (scores) will be made on the computer's drive. This even includes a backup copy of all the apps. When you get the replacement device (probably a refurbished blank unit), a Restore from that backup will totally reconstruct what you have today.
    If the answer is no, you will have quite a bit more work to do in order to get back to the original state that the iGadget is currently in (minus the crack).

Maybe you are looking for

  • Macbook pro early 2011 - overheat and crash with blue screen and glitches

    Hi since last wednesday my MBP has started to freeze and then crash with bluescreen, glitches and so on... Most of the time doesnt not restart with any command as is overheating as well. I did a clean installation on friday night and i am now running

  • Closed orders in R3 showing as open in BEx

    Hi, Good Day! So, I am trying to execute a report which shows me sales orders' status. I notice that few orders which are showing as completed in VA02 are showing as open in BEx report/BW. I had looked further into this and observed that the schedule

  • Anyone know of a hard perspex keyboard cover?

    Hi I have something very specific in mind, and I'm trying to find out if it exists and can be bought. I have a G5 with a standard Apple keyboard, and my wife and I have it running, doing various tasks, pretty much 24/7, whether we're at the computer

  • [svn:osmf:] 15515: Extend unit tests for NetStreamSwitchManager.

    Revision: 15515 Revision: 15515 Author:   [email protected] Date:     2010-04-16 12:36:02 -0700 (Fri, 16 Apr 2010) Log Message: Extend unit tests for NetStreamSwitchManager.  Remove unreachable code. Modified Paths:     osmf/trunk/framework/OSMF/org/

  • Read more values from web

    Hi, i have a web page with some rows and every rows has a checkbox. I need to read all the data relating checkboxes selected by the user in the Controller and i don't know how can i do it. For only one row i use the command: pageContext.getParameter(