Image fill tile file location?

I want to edit the background on an iWeb template. The template uses tile fills to color the background. Some pages are yellow, some are purple. I want to change a purple page to a yellow one.
When selecting Page Background->Image Fill->Tile->Choose to change the purple page to a yellow one, I'm given a file search. I need to know where the template's tiles are stored, so I can change the page. A simple color fill doesn't work with this template.
Where are the tiles for iWeb's backgrounds stored? I've not been able to find them in any Library/Application Support locations.
TIA.

The files used in a theme are stored in the iWeb application/Contents/Resources/Themes folder. In that folder will be packages for each theme. You'll need to open the theme package, locate the graphic file and edit it with an image editor.
You will have more control if you started with either the white, black or modern frame theme and customize it completely. Those themes will allow you to widen the page for better fit with mobile devices (Apple recommends 980 pixels). The other themes cannot be widened as the graphic files used in the are not scaleable.
OT

Similar Messages

  • Desktop photo has file location

    Hi
    my mac desktop image has its file location accross the front of the screen and i dont know how to remove it
    i have been in to the apple shop and they didnt know how to remove it either
    thanks David

    If you change the desktop image, does the displayed filename change too, or is it only that one image that is affected?
    If it's just that image, if you open it in Preview, does it have the file path burned into it?
    Do you have a third-party utility that's doing this? Reboot with the shift key held down - any change?
    Check your Login Items in System Preferences, and any items under your Library/LaunchAgents, Library/LaunchDaemons and Library/StartupItems folders.
    Matt

  • Image fill location

    I'm using one of the templates at the moment but when i try and change the image fill to another picture it points me in the direction of my documents
    Can anyone tell me where the image fills are located on the hard drive
    Cheers

    Your image files are where every you put them when you first got them. Are you referring to photos from a camera? Do you use iPhoto? If so then bring up the Media pane in iWeb, click on Photos and peruse your iPhoto Library till you find the one you want. Or to make the search quicker, go into iPhoto and put the photos you want to use in an album. Then pick the album in the Media Browser when in iWeb. When you've found the photo in the Media Browser, drag it into the small bin in either the background section or the page section.
    OT

  • How do I change the pre-filled file location when I choose Save As?

    16 September 2013
    Using Windows 7 Home Edition and Firefox 24.0
    I always want Firefox to offer a location when I download stuff. At the moment it fills the Save As file location with a location I never use and it is the same one every time, and I don't know how to stop this from happening. How can I teach Firefox to fill the Save As location with another file location, for example Desktop?
    NB This is absolutely not about setting the default under
    Tools/Options/General/Downloads/Save Files To...
    although everyone automatically assumes it is.
    Background: After using Firefox for a few months on my Windows 7 machine, I then imported old Firefox settings from a VISTA machine.

    You may want to reset the prefs file, it should show the last place you saved a page from.
    * [[Reset Firefox preferences to troubleshoot and fix problems]]

  • MacBook Air, can I partition my Mac external drive to have an ISO image file location for Windows downloads?

    Hi, in preparation for installing bootcamp and windows 7, and in the absence of a DVD drive on my MacBook Air, can I partition my Mac external drive to have an ISO image file location for Windows downloads?

    The Boot Camp instructions are located here: http://www.apple.com/support/bootcamp/
    The Boot Camp Discussion Community is located here: https://discussions.apple.com/community/windows_software/boot_camp

  • An error occurred saving the images to the chosen file location

    I am trying to save the scans from my HP Officejet 6500.  I receive the following error message:
    An error occurred saving the images to the chosen file location.
    I have Win 7.
    I can scan and save if I choose to use the picture option but I can't use the feeder with the picture option.  It is only good if I have 1 page.

    I received this exact same message:
    an error occurred saving the images to the chosen file location.
    8,[(8,106,0)]
    I have not had the time to verify this, but I suspect the security settings on any other location you specify are not the same as those of the default.  i.e. C:\Users\%Username%\Documents\My Scans
    When I used the default location and base name the software provided, it worked.
    My guess is Microsoft and/or HP may have changed the security permissions for something in the path folders and the Scanning Software is therefore not permitted to write into the location you entered.

  • Image Fill Files Available?

    When Steve Jobs presented Keynote 3, the new 3-D charts had some very nice "Image Fill" woodgrain and marbled textures.
    I understand that those textures were included as part of a specific theme, but I would like to be able to use textures like those in a presentation with a different theme.
    Are those "Image Fill" files available somewhere? Or is there a way to use "Copy Style" and then save the style?

    You can find the woodgrains in the Leatherbook Theme.
    Save a blank leatherbook preso (with theme images).
    Thanks for your response. The good news is that it sounds like a woodgrain image file can be created.
    The bad news is that I have no idea what a "preso" is, nor how to "save a blank preso".
    Could you possibly give more specific instructions? Thanks in advance.

  • Image file used for "Image Fill"

    Hi,
    In the "Road Trip" iWeb template there is a wood background.
    I want to create a square shape and use "image fill" to make
    it look like wood. Where do I find the image they are using
    for this fill?
    , Jonathan
    Power mac G5   Mac OS X (10.4.6)  

    Control-Click on the IWeb application to Show Package Contents. Then go to Contents/Resources/Shared. In that folder, again Control-Click and Show Package Contents for any of the Road Trip webtemplate packages. That's where you'll find background.jpg.
    [ Visit here for iWeb Tips, Tricks and Hacks ]

  • How to load images from css file in JavaFX 8

    I have this css file which loads images in JavaFX 8 application:
    #pill-left {
        -fx-padding: 5;
         -fx-border-image-source: url("/com/dx57dc/images/left-btn.png");
        -fx-border-image-slice: 4 4 4 4 fill;
        -fx-border-image-width: 4 4 4 4;
        -fx-border-image-insets: 0;
        -fx-border-image-repeat: stretch;
         -fx-background-color: null !important;
    #pill-left:selected { -fx-border-image-source: url("/com/dx57dc/images/left-btn-selected.png"); }
    #pill-left .label {
        -fx-text-fill: #d3d3d3;
        -fx-effect: dropshadow( one-pass-box , rgba(0,0,0,0.75) , 0, 0.0 , 0 , -1 );
    #pill-left:selected .label {
        /* -fx-text-fill: black; */
        -fx-text-fill: white;
        -fx-effect: dropshadow( one-pass-box , white , 0, 0.0 , 0 , 1 );
    #pill-center {
        -fx-padding: 5;
         -fx-border-image-source: url("/com/dx57dc/images/center-btn.png");
        -fx-border-image-slice: 4 4 4 4 fill;
        -fx-border-image-width: 4 4 4 4;
        -fx-border-image-insets: 0;
        -fx-border-image-repeat: stretch;
         -fx-background-color: null !important;
    #pill-center:selected { -fx-border-image-source: url("/com/dx57dc/images/center-btn-selected.png"); }
    #pill-center .label {
        -fx-text-fill: #d3d3d3;
         -fx-effect: dropshadow( one-pass-box , rgba(0,0,0,0.75) , 0, 0.0 , 0 , -1 );
    #pill-center:selected .label {
        -fx-text-fill: black;
        -fx-effect: dropshadow( one-pass-box , white , 0, 0.0 , 0 , 1 );
    #pill-right {
        -fx-padding: 5;
        -fx-border-image-source: url("/com/dx57dc/images/right-btn.png");
        -fx-border-image-slice: 4 4 4 4 fill;
        -fx-border-image-width: 4 4 4 4;
        -fx-border-image-insets: 0;
         -fx-border-image-repeat: stretch;
        -fx-background-color: null !important;
    #pill-right:selected { -fx-border-image-source: url("/com/dx57dc/images/right-btn-selected.png"); }
    #pill-right .label {
         -fx-text-fill: #d3d3d3;
        -fx-effect: dropshadow( one-pass-box , rgba(0,0,0,0.75) , 0, 0.0 , 0 , -1 );
    #pill-right:selected .label {
        -fx-text-fill: black;
        -fx-effect: dropshadow( one-pass-box , white , 0, 0.0 , 0 , 1 );
    The images are located at the Java package com.dx57dc.images
    In Java 7_25 this code works as expected but in JavaFX 8 b99 I get this error:
    ava.lang.NullPointerException
    at com.sun.javafx.sg.prism.NGRegion.renderContent(NGRegion.java:1129)
    at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:1598)
    at com.sun.javafx.sg.prism.NGNode.render(NGNode.java:1520)
    at com.sun.javafx.sg.prism.NGGroup.renderChildren(NGGroup.java:233)
    at com.sun.javafx.sg.prism.NGGroup.renderContent(NGGroup.java:199)
    at com.sun.javafx.sg.prism.NGRegion.renderContent(NGRegion.java:1249)
    at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:1598)
    at com.sun.javafx.sg.prism.NGNode.render(NGNode.java:1520)
    at com.sun.javafx.sg.prism.NGGroup.renderChildren(NGGroup.java:233)
    at com.sun.javafx.sg.prism.NGGroup.renderContent(NGGroup.java:199)
    at com.sun.javafx.sg.prism.NGRegion.renderContent(NGRegion.java:1249)
    at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:1598)
    at com.sun.javafx.sg.prism.NGNode.render(NGNode.java:1520)
    at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:99)
    at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:210)
    at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
    at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
    at com.sun.javafx.tk.RenderJob.run(RenderJob.java:58)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
    at java.lang.Thread.run(Thread.java:724)
    D3D Vram Pool: 13,331,480 used (5.0%), 13,331,480 managed (5.0%), 268,435,456 total
    20 total resources being managed
    4 permanent resources (20.0%)
    1 resources locked (5.0%)
    7 resources contain interesting data (35.0%)
    0 resources disappeared (0.0%)
    D3D Vram Pool: 13,331,480 used (5.0%), 13,331,480 managed (5.0%), 268,435,456 total
    20 total resources being managed
    4 permanent resources (20.0%)
    1 resources locked (5.0%)
    7 resources contain interesting data (35.0%)
    0 resources disappeared (0.0%)
    D3D Vram Pool: 13,331,480 used (5.0%), 13,331,480 managed (5.0%), 268,435,456 total
    20 total resources being managed
    4 permanent resources (20.0%)
    1 resources locked (5.0%)
    7 resources contain interesting data (35.0%)
    0 resources disappeared (0.0%)
    What is the proper way to load images from css in Java 8?
    Ref
    How to load images from css file in JavaFX 8 - Stack Overflow

    There is nothing special to do - you execute the statement from your program just like any other SQL statement.  The only thing to be aware of are the privilege/permission issues:
    When loading from a file on a client computer:
    READ CLIENT FILE privilege is also required for the database user.
    Read privileges are required on the directory being read from.
    The allow_read_client_file database option must be enabled.
    The read_client_file secure feature must be enabled.
    Revoking these privileges is also the only way you can prevent a user from executing the statement.

  • File location and name

    If I use iPhoto to import files from my camera where are the files actually stored and how do I change the actual file name? I have figured out how to change the picture title but it does not change the file name.
    If I use iPhoto to import pictures from the hard drive do they get copied to the iPhoto file location or just linked? When I moved to the mac I created a folder named "old laptop stuff" and moved everything to that folder. I am now trying to organize all of this stuff on the mac. Can I delete the picture files from the old laptop stuff folder after using iphoto to import and organize them?

    Hi Dispatcher,
    Where are the files stored? Take a look at the screenshot.
    iPhoto 6 Library folder in the Finder
    As you can see the structure is now related to rolls. Rolls are created for each folder you import and each import session from a camera.
    It is very easy to change the names of film rolls within iPhoto to make them easier to find images within. Open the info panel in iPhoto by clicking on the "i" icon. Once it is opened, click on the roll title in the viewing window.
    Click on the word "title" in the info pane and type in your new title. I like to use a date and text format such as 12/25/05 Christmas at Mom's, 1/05/06 my birthday, etc. Once the roll names are changed within iPhoto, they are also changed within the Finder, making it easy to locate an image.
    When importing from a camera, make sure you name the roll with a date and text before the import.
    You can add titles in iPhoto, but as you found out only iPhoto sees these new titles. To do what you want you have to name the photos before importing into iPhoto. Either download to the computer with your camera software or use Image Capture (found in your Applications folder) to download the photos.
    Launch Image Capture (keep the little window open that says no camera is connected or IC will quit if you close the window)
    Go to Image Captures preferences and choose what you want to happen when a camera is connected.
    Next time a camera is connected, if you chose Image Capture to open, then IC will open and download the photos.
    Rename your photos then import them into the library
    You can choose to do it either way when you first use iPhoto (this is new in version 6)
    If you choose to copy into the library when importing, then the photos are copied into the library (iPhoto Library folder in the Finder)
    After you have imported all those folders of images, you can then delete the folder.

  • Is there a way to display the file location in iTunes?

    I have several external hard drives connected to my windows PC.   Over time, I have copied my music files (some I have ripped from CD's, and some I have copied from a friend's external drive) to 3 or 4 different locations, each of which is on a separate external drive.   Now, iTunes has gone out and pulled all of those files into my music.   As a result, I have 3 or more copies of many songs.  
    The only way I can see where they are located, as far as I know, is to right click on each song, go to Get Info, and look at the "WHERE" box at the bottom of the window.
    Is there a way for me to set the file location up as a field in iTunes?  What I want to do now is to move all of my music to one location, then delete duplicates, before backing the entire library up.
    Thanks in advance for any help you can give me!

    I use CoderPlus workspace & tabbed panels.  For me, the file url is on the far right side. See screenshot. 
    If you click the "Page Icon" in upper right corner to tile, the URL shows on the left side.
    Nancy O.

  • Only two hard drives - optimal file locations?

    Hi,
    Can anyone tell what would be the optimal file location configuration (regarding perfomance) when there are only two physical hard drives available? One is abviously running the OS (Windows XP), but how to locate raw images, ACR cache and catalog-files for optimal performance (and are there any other file locations to consider from LR point of view)? The search did not provide answer to this question, and with google everything pretty much boils down to having (at least) three physical hard drives or RAID-array, which are not an option for me.
    The workstation can have only two internal drives but allows dedicated controllers for both of them, and I would prefer not to have external drive (only USB2 and FW400 connectors available). Memory is already maxed for the current mother board, and disk activity seems to be next place to optimize. The current performance is "ok", but it would not hurt to squeeze a bit more.
    Running Windows XP and LR 2.3.
    Thanks in advance.

    Thank you for your advice. It has been quite a pain to find out credible setup hints for simple two drive setup.
    This slightly differs from original topic, but...
    Have there been more inprovements within 2.4 code than have been mentioned in release notes (e.g. http://thelightroomlab.com/2009/06/lightroom-24-and-adobe-camera-raw-54-available/)? I have currently no need for additional camera support, and the bugs mentiones as "fixed" have not been a problem for me. I have had some cases with inconsistent plug-in behaviour (and few crashes) with export plug-ins, but I have judged those as problems either with SDK or plug-in itself.

  • Not able to access files from Workspace Images and Static files

    Hi,
    We have just migrated our APEX Application from one server to another.
    All the functionality is working fine except the images or files which we are uploading
    in
    Shared Components -> Static Files
    Shared Components -> Images
    We are uloading Images in Shared Components -> Images but those are not getting displayed there.
    Similarly the files which we are uploaded in Shared Components -> Static Files are not accessible. If we
    try to download using download icon its showing blank screen.
    I am using some javascript files which i have uploaded into static files, but not able to refer them in page.
    Please someone guide us how to resolve the above problem.
    Thanks in advance.
    Thanks & Regards
    Sanjay
    Edited by: user11204334 on May 25, 2010 1:35 AM
    Edited by: user11204334 on May 25, 2010 3:45 AM

    Hello Sanjay,
    If you upload any static files such as IMAGES, FILES, or CSS you have to use the tags: #WORKSPACE_IMAGES# or #IMAGE_PREFIX# depending on your files location..
    then try something like htp.p ('<img src="#IMAGE_PREFIX#fileName.gif" />');
    And it should show the fileName.gif on your browser...
    I am not sure if i remember correctly, you can reference files to a specific application or to the whole application, if I am not mistaken..Correct me..
    Regards,
    Noel Alex Makumuli,
    Tanzania

  • How do I create a Disk Image of a FILE?

    How do I get Disk Utility to make a .dmg (regular or encrypted) of a single FILE, not a Folder, Disk or Device, without using a third party utility? OR are 3rd party utiities a better choice for Disk Image creation?
    I've read all the "Help" info and it only covers creating a .dmg of a Folder, Disk or Device NOT an individual/single file. [Unless I'm blind]
    No matter what I do only folders, disks, and devices are highlighted but all files are grayed out during any .dmg creation.
    PowerBook G4 Ti 15" (400-MHz)   Mac OS X (10.4.8)   1GB RAM, 80MB HD, AE, AEBS

    Yes, that's correct, at least not directly. You can create a blank disk image, copy the file to the mounted disk image, then burn the image to a CD/DVD.
    Open Disk Utility and select Blank Disk Image from the New menu. Provide a name, Save location, and select the image size from the drop down menu. Leave Encryptions at None and Format as read/write. Click on the Create button.
    After the image file appears the "removable" disk should be automatically mounted. If not double-click on it to mount it. A "removable" disk icon will appear. Drag the file you want to place on the disk image to the "removable" disk icon. The eject the "removable" disk icon. Now select the disk image file in the DU left side list and click on the Burn icon in the DU toolbar. Be sure to have a blank disc ready.
    The above is actually the "long" way to do this. A much easier way is to simply insert a blank CD or DVD into the optical drive. The Finder will pop up a dialog asking what to do. Select the option to mount on the Desktop. You will now see a disc icon on the Desktop. Drag the file you want to burn to the CD/DVD, right-click or CTRL-click on the disc icon and select Burn from the contextual menu.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Adding a timestamp to a save file location

    Hi,
    How can I add a timestamp to a save file location in testStand?
    My Teststand Sequence calls a VI to grab an image, I tell the VI where to save the image and also name it, I now wish to add a time stamp
    to the image, so when I record multiple images the previous one is not overwritten.
    Any ideas.
    Thanks

    Hi,
    How can I add a timestamp to a save file location in testStand?
    My Teststand Sequence calls a VI to grab an image, I tell the VI where to save the image and also name it, I now wish to add a time stamp
    to the image, so when I record multiple images the previous one is not overwritten.
    Any ideas.
    Thanks

Maybe you are looking for

  • Unable to launch java web start

    We have already devloped an application based on java web start. Most of the client machines, we try to install java web start and run the developed app, it works fine. For one of the clients machine, we have an issue with java web start itself, it d

  • IPad no charging/syncing

    iPad will not charge! I am using the charger that came with the iPad. When connected it states "not charging". I know it is charging at a slower rate and also when connected to pc, iTunes does no recognize it. I can not sync! iPad will charge with my

  • Regarding triggering of fct code in case of interactive reporting

    Hi to all... 2....here i want to print sub totals and totals for each and every vendor number in a script.how to print subtotals and totals in a script?where we have to code the actual coding? thanks and regards, k.swaminath reddy.

  • ISE NAD RADIUS Fail Open

    Good afternoon, NAC offers ip admission command for fail open on a router.  Is there an equivalent command for access switches pointing to a RADIUS server? Situation: Access switches have two RADIUS servers configured, one pointing to Load Balancer a

  • 10g 64 bit installation on Linux!!

    i want to run runinstaller from a remote host (32 bit) to install a database on itanium server (64-bit). The installation file i have downloaded is for 64-bit Linux too. When i started ./runinstaller i could not succeed to start the script and i got