Background patterns don't match using Layered Paper template in iWeb 09

The background patterns for the Layered Paper template don't match. They look okay when I'm using iWeb but are two different shades when posted online.
See:
http://web.me.com/vizcabulary/Johnson/Home.html

I created a quick test page with that theme and have no problems with it. You might try selecting a different theme and then go back to the layered theme. Are you using that theme without messing with the options regarding choosing the background image/color/etc?
OT

Similar Messages

  • Iweb crashes when trying to use "layered paper"

    anyone else having this problem??
    Im trying to create a site using this template but it crashes when i try to load the welcome page.
    EDIT: It doesnt crash when i use the blank page from this template, all of the others crash and bring up an error
    Message was edited by: TomDefyingLife

    Reboot into Safe Mode (hold down the Shift key while booting) which removes the font database which is the problem. Then reboot normally. Details can be found here: iWeb & iWork: Applications may suddenly quit after updating to Mac OS X v10.6.2.
    OT

  • Using Layers in templates

    Hi I've got a quick newbie question. I'm designing a website
    and currently in the process of creating a template for it. When
    creating the editable regions I want to be able to move and drag my
    layers wherever I want. But when I open a new page using the
    template all the editable layers are locked in position and it
    won't allow me to move them where I please. Is it possible to
    change this and if so how? Thanks in advance for the help!

    NicholasEdward wrote:
    > Hi I've got a quick newbie question. I'm designing a
    website and currently in
    > the process of creating a template for it. When creating
    the editable regions
    > I want to be able to move and drag my layers wherever I
    want. But when I open
    > a new page using the template all the editable layers
    are locked in position
    > and it won't allow me to move them where I please. Is it
    possible to change
    > this and if so how? Thanks in advance for the help!
    If you want to be able to move layers around a template then
    you need to
    create an editable region in the master template, where you
    can insert
    them. Create this editable region just before the closing
    </body> tag.
    This region will propgate to all pages made from the
    template. You will
    be able to insert as many layers into the region as you like
    and pull
    them around.
    <!-- TemplateBeginEditable name="layerInsert" -->
    <!-- TemplateEndEditable -->
    </body>
    </html>

  • CAN YOU USE A FLASH TEMPLATE IN IWEB?

    I have recently created my website using iWeb....albeit with much help from this forum...and am very pleased with the results.
    I would like to, however, have my site open with a Flash introduction. I have seen many affordable Flash Templates for sale on the web and am wondering it any of these would successfully work with iWeb. If so:
    1. What specs would I need to look for?
    2. Does anyone know of a site that sells iWeb compatible Flash intros?
    Thanks for all of your answers to my previous posts and hopefully this one as well.

    Sandie,
    Yes I have used Keynote as an intro and I once used it in swf format. I ended up liking the QT better.
    Here is the intro:
    http://web.mac.com/abenningfield/iWeb/CameraObscura/Camera%20Obscura%20Intro.htm l
    As an example...here is another I created in Keynote:
    http://web.mac.com/abenningfield/iWeb/ArchivalGenealogyVault/Archival%20Genealog y%20Vault%20Intro.html
    But as far as Adobe Flash goes.....I don't have the pro version (I have Basic) and I got a fully functional demo for 30days. Yeah it did cost about 400 bucks after the 30 day trial. Yikes.
    On the right side of this page is a third party flash file that I bought for a dollar. I used the free demo of Flash and put it on my site. After you format the flash file you want.....you don't need to keep Flash unless you want it (I did).
    http://web.mac.com/abenningfield/iWeb/CameraObscura/Links.html
    But Keynote is great...and yes Kirk is right....wait for the new version.
    Also here is another app that converts video to swf:
    http://www.verticalmoon.com/products/video2swf/video2swf.htm

  • Pattern matching using Regular expression

    Hi,
    I am working on pattern matching using regular expression. I the table, I have 2 columns A and B
    A has value 'A499BPAU4A32A386KBCZ4C13C41D20E'
    B has value like '*CZ4*M11*7NQ+RDR+RSM-R9A-R9B'
    the requirement is that I have to match the columns of B in A. If there is a value with * sign, this must be present in A like 'CZ4' should exit in string A.
    The issue I am facing is that there are 2 values with * sign. The code works fine for first match (CZ4) but it does not look further as M11 does not exist in A.
    I used the condition
    AND instr(A,substr(REGEXP_SUBSTR(B, '*[^*]{3}'),2) ,1)=0
    First of all, is this possible to match multiple patterns in one condition?
    If yes, please suggest.
    Thanks

    user2544469 wrote:
    Thanks a lot Frank. This query worked wonderful for the test data I have provided however I have some concerns:
    - query doesnot include the column BOOK which is a mandatory check.Sorry, that was my mistake. It was a very easy mistake to make, since you posted sample data where it didn't matter. Instead of doing a cross-join between vn and got_must_have_cnt, do an inner join, using book. That means book will have to be in got_must_have_cnt, and all the sub-queries from which it descends. Look for comments that say "March 22".
    If you want to treat '+' in test_cat.codes as '*', then the simplest thing is probably just to use REPLACE, so that when the table has '+', you use '*' instead.
    WITH     got_token_cnt     AS
         SELECT     cat
         ,     book                                        -- Added March 22
         ,     REPLACE (codes, '+', '*') AS codes                    -- If desired.  Changed March 22
         ,     LENGTH (codes) - LENGTH ( TRANSLATE ( codes
                                                       , 'x*+-'
                                      , 'x'
                             ) AS token_cnt
         FROM    test_cat
    ,     cntr     AS
         SELECT     LEVEL     AS n
         FROM     (  SELECT  MAX (token_cnt)     AS max_token_cnt
                 FROM        got_token_cnt
         CONNECT BY     LEVEL     <= max_token_cnt
    ,     got_tokens     AS
         SELECT     t.cat
         ,     t.book                                        -- Added March 22
         ,     REGEXP_SUBSTR ( t.codes
                         , '[*+-]'
                         , 1
                         , c.n
                         )          AS token_type
         ,     SUBSTR ( REGEXP_SUBSTR ( t.codes
                                       , '[*+-][^*+-]*'
                               , 1
                               , c.n
                   , 2
                   )          AS token
         FROM     got_token_cnt     t
         JOIN     cntr          c  ON     c.n     <= t.token_cnt
    ,     got_must_have_cnt     AS
         SELECT       cat, book                                   -- Changed March 22
         ,       COUNT (CASE WHEN token_type = '*' THEN 1 END) AS must_have_cnt
         FROM       got_tokens
         GROUP BY  cat, book                                   -- Changed March 22
    SELECT       mh.cat
    ,       vn.vn_no
    FROM       got_must_have_cnt     mh
    JOIN                    vn  ON  mh.book     = vn.book               -- Changed March 22
    LEFT OUTER JOIN      got_tokens     gt  ON     mh.cat                  = gt.cat
                                     AND INSTR (vn.codes, gt.token) > 1
    GROUP BY  mh.cat
    ,            mh.must_have_cnt
    ,            vn.vn_no
    HAVING       COUNT (CASE WHEN gt.token_type = '*' THEN 1 END)     = mh.must_have_cnt
    AND       COUNT (CASE WHEN gt.token_type = '-' THEN 1 END)     = 0
    ORDER BY  mh.cat
    - query is very slow with 60000 records in vn table. Cost is somewhere around 36000.See these threads:
    When your query takes too long ...
    HOW TO: Post a SQL statement tuning request - template posting
    Relational databases were designed to have (at most) one piece of information in each column. If you decide to have multiple items in the same column (as you have a variable number of tokens in the codes column), don't be surprised if that makes things slower and more complicated. Most of the query I posted, and perhaps most of the time needed, is jsut to normalize the data. If you stored the data in a narmalized form, perhaps something like got_tokens, then you wouldn't need the first 3 sub-queries that I posted.
    Edited by: Frank Kulash on Mar 22, 2011 12:04 PM

  • HT1918 I have been using the same credit card for about a year and now it's telling me my security code don't match so it won't let me buy anything.... Any ideas

    I have been using the same credit card for about a year and now it's telling me my security code don't match so it won't let me buy anything.... Any ideas

    Is the address on your iTunes account exactly the same (format and spacing etc) as on your credit card bill : http://support.apple.com/kb/TS1646 ? If it is then you could try what it says at the bottom of that page :
    If the issue persists, contact your credit card company and verify that they and any company they use to process credit card authorisations have the correct information on file.
    And/or try contacting iTunes support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • How to use Class Pattern to find match word ?

    Hi All:
    Now I want find some words in a article . for example , I want to find a word ---"book" . For this purpose , I use java.util.regex.Pattern to do that . Following is my code
    String tmpStr = ".*?[\\W]+book[\\W]+.*?";                         
    Pattern p = Pattern.compile(tmpStr);
    Matcher m = p.matcher(testStr);                // assume testStr is the article
    while ( (m1.find()) ) {
             System.out.println("find");
    }                    However , this code only help me to find some like " book " , " book! " , " !book " . But I also want to find some like "book " or " book" , since there aren't space before book or no space after book . How can I correct my code to do that ?
    Thanks in advance

      String tmpStr = "\\bbook\\b";

  • Lightroom's color management paper options don't match any paper i can buy from Canon

    Up to now I have been using "managed by printer" for printing on my new Canon MG8250. But i have seen several suggestions that i should let Lightroom manage the colors so i decided to give this a go by choosing "other" instead.
    This gave me a list of papers to choose from: Canon IJ Color printer profile 2005, fine art photo rag 2, GL2/SG2, GL3/SG3, MP2, Other fine art paper 2, PT1, PT2, PT3. All the names being preceded by MG8200 series apart from the first one
    However, when i looked up the papers available from Canon, these were all different:  Photo paper pro platinum (PT-101), photopaper pro luster (LU-101), photo paper plus glossy II (PP-201), photo paper plus semi-gloss (SG-201), glossy paper everyday use (GP-501), Matte photo paper (MP-101)
    There are some papers here which look as if they they might relate to the lightroom list eg PT-101 and PT1, SG-201 and SG2 but, at the moment, i am particularly interested in which option should be used to match the photo paper plus glossy II (PP-201) paper which I have bought - GL2 looks as if it might be a contender
    Any help would be most appreciated

    Hi ssprengel,
    Thanks for the reply. I didn't know how these things work but now realise that my profiles seem to have been sitting in windows/system32/spool/drivers/color  since I bought the computer in 2010.
    The guide you referred to suggested that at least one of the profiles on my computer, GL3, should be suitable (there was no mention of GL2) In fact I ended up trying most of my profiles but they all had a very distinct red tint which was completely unacceptable. I even tried specifying and downloading a new profile from Ilford (I can't see where to get these from Canon) but this had the same red tint. When using the profiles I did switch off Color Management in the Print Preferencies, or rather i set it to manual and left all the sliders at zero.
    When i used "managed by printer" there was no red tint and the print looked reasonably good although not quite matching the screen, particularly in brightness.
    It may be worth mentioning that, for the profiles, the red tint was obvious in the print preview. I did not have to wait until the actual print, although I obviously did print to check.
    I did try printing my RAW files to JPEG then printing via Explorer and this ended up around the same quality as "managed by printer" directly from Lightroom
    Any ideas  about what causes the red tint when using the profiles?

  • HT204053 My security question don't match ones that I used so it won't allow me in but I have access to everything because I have my password.

    My security question don't match ones that I used so it won't allow me in but I have access to everything because I have my password.

    If you can't correctly guess that address, you need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (97436)

  • HT5312 Every time I do all the steps to reset the questions the only problem I have is that I noticed in the link to reset them using an email the email in the link don't match the one I created my account with. Does anyone know how to fix this problem?

    Every time I do all the steps to reset the questions the only problem I have is that I noticed in the link to reset them using an email the email in the link don't match the one I created my account with. Does anyone know how to fix this problem?

    You won't be able to change your rescue email address until you can answer your questions, you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the HT5312 page that you posted from to upadte your rescue email address for potential future use

  • Apparently I have 2 apple IDs. The first is my former email address. I want consolidate them using my current email. I can't remember my old password. I can't do a reset bcz. it sends the link to my former email. Security Qs like d.o.b. don't "match." SoS

    Apparently I have 2 apple IDs, but not on purpose. The first is my former email address used for my iPod Touch. When I later purchased an iPad2, I thought I updated my Apple ID using my new email and new married name. Apparently I created a second. I want to consolidate them using my current email, etc. But I can't remember my old password. I can't do a password reset bcz. it sends the link to my former/deactivated email. Security Qs like d.o.b. don't "match." So, when I use my iPod & it requires my password to carry out certain functions, I'm stuck. Please help! Thx

    No.
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    Recover use of the account:
    Forgotten Security Questions/Answers
    You need to contact Apple by:
    1 - Use the Express lane and start here:
    https://expresslane.apple.com
    then click More Products and Services>Apple ID>Other Apple ID Topics>Forgotten Apple ID security questions.
    or
    Apple - Support -form iTunes Store - Contact Us
    2 - Call Apple in your country by getting the number from here:
    http://support.apple.com/kb/HE57
    or           
    Apple ID: Contacting Apple for help with Apple ID account security
    3 - Use your rescue email address if you set one up
    Rescue email address and how to reset Apple ID security questions
    For general  information see:
    Apple ID: All about Apple ID security questions

  • Is there a way to sign up on iTunes Match using your credit from the iTunes store? I don't carry a C.C.

    I dont carry a C.C. and im wondering if there was a way to subscribe to iTunes Match using my credit on the iTunes store. Anyone have any info?

    I believe the answer is no, although if you were able to visit an Apple store you might be able to work something out there.  You can use credit I think, but the problem is they still need a credit card number on file to process the purchase.

  • Dreamweaver CSS div background color doesn't match .png menu button color on PC

    Hello,
    I created a menu with buttons the same background color (CSS) as the background color on my CSS template. However, for some reason, the colors don't look the same on mac and a pc. The background on the menu buttons that I created (.png) match the css template div background on a mac. But, when the site displays on a pc, the menu background color from the css template is darker than the .png background color, even though the color code is the exact same. On a mac, the .png background color matches the css div template color exactly. Anyone know what is going on or how to fix?
    I appreciate any assistance!

    Are both monitors calibrated?
    http://www.wikihow.com/Calibrate-Your-Monitor
    Windows renders images a tad darker.  To compensate, use Gamma Correction in Photoshop.
    http://www.photoshopsupport.com/tutorials/cb/gamma.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Quoting copies background pattern

    In Mail, someone sent me an email with one of those background patterns in the message. You know the kind: some people think it’s cute to have a background pattern in all their email messages. Anyway, when I quoted them, Mail copied the background pattern along with the quoted text, something that doesn't quite make sense! The quoted text was real text, not a graphic or image. When I clicked the pattern behind the quoted text, a border appeared around it with an “X” button in the corner. When I clicked the “X” button, Mail deleted not just the pattern, but also the quoted text! This is dumb. Obviously I just want to delete the pattern, not the text. How do I keep Mail from copying the background when I quote someone???

    yes thats what I'm talking about, the edges!
    I know that probably the best way how to do it would be to
    use CSS but I've never used it before so don't know how ...is there
    any chance you would link me to an example or so?
    The problem is actually the content inside the flash as well.
    Like positioning to the center, in case you change the browser
    window. If I try the Stage.onResize, it gives an error saying there
    is no such property.
    The 100% example of I'm trying to achieve is when you publish
    anything with Flash size property set to 100%, just WITHOUT the
    mentioned edges.
    See the example:
    http://blog.deconcept.com/swfobject/fullpage.html
    There is also a tutorial for it but I have no clue how will
    I link the HTML file and the CSS file..
    http://blog.deconcept.com/2005/01/02/100-height-and-100-width-xhtml-flash-embed/

  • REGEX: question about finding Overlapping matches using regular expressions

    I have the following problem.
    Say for my pattern I use:
    Pattern pattern = Pattern.compile("AAA");
    Matcher matcher = pattern.matcher("AAAAAA");when I run a loop
    while (matcher.find())
    System.out.println("Match Found: "+matcher.start()+" "+matcher.end());I get 2 Hits shown in the following output:
    Match Found: 0 3
    Match Found: 3 6
    therefore the regex is seeing the first AAA then the second AAA.
    I want it to find the other AAA's in there that are overlapping the other two finds i.e. I want the output to find
    AAA from 0 to 3
    AAA from 1 to 4
    AAA from 2 to 5 and finally
    AAA from 3 to 6
    thereby including the overlapping finds.
    How can I do this using regex? what am I missing that prevents the overlapping matches to be found? Do I need a quantifier?
    Thanks for the help!

    While the solutions above work fine with the given input, they don't really find all overlapping matches. They just find the longest possible match at each start position. Here's a more thorough approach:import java.util.*;
    import java.util.regex.*;
    public class Test
      public static List<String> matchAllWays(String rgx, String str)
        Pattern p = Pattern.compile(rgx);
        Matcher m = p.matcher(str);
        List<String> result = new ArrayList<String>();
        int len = str.length();
        int start = 0;
        int end = len;
        while (start < len && m.region(start, len).find())
          start = m.start();
          do
            result.add(m.group());
            end = m.end() - 1;
          } while (end > start && m.region(start, end).find());
          start++;
        return result;
      public static void main(String[] args)
        List<String> matches = matchAllWays("a.*a", "abracadabra");
        System.out.println(matches);
    }This approach requires JDK 1.5 or later; that's when the regions API was added to Matcher.

Maybe you are looking for