Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 9 of 9
  1. #1
    Join Date
    Dec 2004
    Location
    Salt Lake City, Utah
    Posts
    4

    Forcing Thumbnail View

    I created a file pop-up within the cd so customers can view my client’s additional contract pictures. He wants them to always come up in thumbnail view automatically. Is there a script to force this?

  2. #2
    Join Date
    Oct 2003
    Posts
    164
    Do you mean you automatically pop open the folder where the images are stored on the disc, and he wants that folder view to default to thumbnail? For example, if your just browsing a directory and you go to the view menu and choose Thumbnail. Or did you have something else in mind with regards to a Pop-up window through an AMS project window?
    -Scott F.

  3. #3
    Join Date
    Oct 2003
    Posts
    164

    Lightbulb

    I recall having delivered a CD to a client a few years ago with a similar request (assuming that the window is a folder/directory window as opposed to an AMS project window). It was for Win2000 OS. I believe the solution was pretty simple.

    Here's the WinXP version:

    Right-click the folder, choose properties, choose the customize tab, select "pictures" from the "Use this folder type as template" drop-down. That's it. Then just burn the disc.

    HOWEVER, I just tested it with a disc on WinServer 2003, and it did not retain the folder view - BUT, the machine I loaded it on also has user-specified folder views globally set to "Detail View", so that may be overiding the folder properties burned to the disc.

    Then again, it may be that I just have a number of synapses mis-firing in the ol' noggin, and as a result have conveniently "tricked myself" into remembering the outcome as "working beautifully"...

    So, maybe give 'er a whirl, and if nothing else it might jump-start a brainstorm or two.
    -Scott F.

  4. #4
    Join Date
    Dec 2004
    Location
    Salt Lake City, Utah
    Posts
    4
    Yes, through AMS, the user clicks a folder icon that says additional Photos (The pictures are stored in an "extras" folder in cd root). I would like to make it global for thumbnail view but had similar experience with other pc's.

    My brother-in-law is Scott Ferguson too!

  5. #5
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    Have you considered using the Thumbnail plugin? Seems it would give you the result you're looking for, plus you'd have some control on what the user is/can do.

  6. #6
    Join Date
    Oct 2003
    Posts
    164
    I would like to make it global for thumbnail view but had similar experience with other pc's.
    Hmmm, alrighty then. Could this possibly be handled through shell?

    Found the following at:
    shell reference


    Code:
    FOLDERVIEWMODE Enumerated Type  
    
    --------------------------------------------------------------------
    Set of constants used to specify the folder view type. 
    
    Syntax
    
    typedef enum {
        FVM_FIRST = 1,
        FVM_ICON = 1,
        FVM_SMALLICON = 2,
        FVM_LIST = 3,
        FVM_DETAILS = 4,
        FVM_THUMBNAIL = 5,
        FVM_TILE = 6,
        FVM_THUMBSTRIP = 7,
        FVM_LAST = 7
    } FOLDERVIEWMODE;
    
    Constants
    
    FVM_FIRST
    Specifies a convenience constant equal to the first constant in FOLDERVIEWMODE.
    
    FVM_ICON
    The view should display medium-size icons. 
    
    FVM_SMALLICON
    The view should display small icons. 
    
    FVM_LIST
    Object names are displayed in a list view.
    
    FVM_DETAILS
    Object names and other selected information, such as the size or date last updated, are shown.
    
    FVM_THUMBNAIL
    The view should display thumbnail icons. 
    
    FVM_TILE
    The view should display large icons. 
    
    FVM_THUMBSTRIP
    The view should display icons in a filmstrip format.
    
    FVM_LAST
    Specifies a convenience constant equal to the last constant in FOLDERVIEWMODE.
    Anybody familiar with "shell stuff" want to chime-in here...?


    Brother-in-law with same name... (with my best Wayne & Garth impersonation - "No Way!" "Waaaaay!!" "...Cule!")
    -Scott F.

  7. #7
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    You'll need the FREE LuaCOM plugin for this, but it seems to work.
    Thanks for the idea Scott.

    Code:
    --Create an Instance of IE
    oIE=luacom.CreateObject("InternetExplorer.Application.1")
    --set the folder
    sFolder = "C:\\Pictures"
    --navigate to the folder
    oIE:Navigate2(sFolder)
    --set the view
    oIE.Document.CurrentViewMode = 5  -- 6 for filmstrip
    --show IE
    oIE.Visible = true

  8. #8
    Join Date
    Dec 2004
    Location
    Salt Lake City, Utah
    Posts
    4
    Thanks, great information! Off to a meeting for now but will try these
    suggestions.

    John

  9. #9
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    This is a little better:

    Code:
    --Create an Instance of IE
    oIE=luacom.CreateObject("InternetExplorer.Application.1")
    --set the folder
    sFolder = "C:\\Pictures"
    --navaigate to the folder
    oIE:Navigate2(sFolder)
    
    --set the menu, adddres, and toolbar to off
    oIE.Menubar = false;
    oIE.AddressBar = false;
    oIE.ToolBar = false;
    
    --[[  Some other settings to play with ]]--
    -- oIE.FullScreen = true;  -- KIOSK MODE
    -- oIE.Resizable = false;  --Can't resize the window
    -- oIE.StatusBar = true;   --turn the statusbar on
    -- oIE.StatusText = "This will be in the statusbar"  --set the statusbar text
    
    --set the view
    oIE.Document.CurrentViewMode = 5  -- 6 for filmstrip
    --show IE
    oIE.Visible = true

Similar Threads

  1. Spotlight: Thumbnail List Object
    By Desmond in forum AutoPlay Media Studio 5.0
    Replies: 0
    Last Post: 03-22-2004, 02:36 PM
  2. How to view content the specific folder..
    By lepinski in forum AutoPlay Media Studio 5.0
    Replies: 4
    Last Post: 03-11-2004, 12:16 AM
  3. Thumbnail Plugin question
    By RobertB in forum AutoPlay Media Studio 5.0
    Replies: 6
    Last Post: 02-13-2004, 08:50 AM
  4. Making a Thumbnail Image Browser
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 09-26-2003, 02:16 PM
  5. View a pdf w/o installing?
    By grant in forum Setup Factory 5.0
    Replies: 2
    Last Post: 08-03-2001, 05:29 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts