700 pixel limitation - can anyone help

Hi,
I want to create a website that's more than the 700 pixel templates the people who designed iWeb think we should be happy with. Anyone got any clues how to get round this?
Have seen this topic answered elsewhere on here but unfortunately the solutions don't work for me - example: use the black or white or Formal template and delete everything on the page. Have tried this but unable to delete the placeholder which keeps everyhting a mere 700pixels wide.
Any help really really appreciated.
Graham.

You can increase the page width with the Inspector/Page/Layout pane.;
Click to view full size
OT

Similar Messages

  • My iPhone 4 will NOT show up on iTunes, not even by putting it into recovery mode. Can anyone help me fix this problem? I would like to use iTunes with it.

    I got an iPhone 4 on Thursday.
    I connected it to my PC, a Windows Vista, that day and nothing showed up besides a "camera."
    My computer picked it up as a camera, which I understand is a common occurence in the iPhone.
    After browsing countless youtube videos and Apple Forum Questions, nothing helped.
    I put it into recovery mode by holding on the power and menu button, but when I opened iTunes it still didn't detect anything.
    I feel like I'm almost hurting my iPhone because I turned it off and on so many times, and plugged it in and out several times, and so forth.
    Here is what happened after putting it into recovery mode: 1. A Windows "device locator" popped up. 2. It was looking for a solution to help me with the unknown device, or iPhone. 3. I clicked onto the find solution button, and it told me that I needed a disc.
    --- I didn't have a disc, so I looked up this problem and it told me to manually find Apple mobile device support on my driver, so I did.---
    4. I then went onto Control Panel and clicked on SYSTEM and MAINTENANCE and went to DEVICE MANAGER.
    5. There I found my iPhone listed under USB controllers.
    6. I uninstalled and installed it several times.
    7. I then manually found a program to ease the problem. The program was "apple mobile device support," which was located on my apple driver.
    8. Nothing happened, besides it reporting to me that Apple USB was found and that "code 39" or "code 1" was in the way.
    9. I didn't know what to do with this....
    By this time, I was about to give up on my iPhone and return it back to the store.
    I tried again, but in a different way this time.
    1. I put it back into recovery mode and I opened itunes.
    2. itunes reported to me that some burning or CD/Drive software was missing and that I needed to reinstall it.
    3. SO, I reinstalled it several times, about 12 (iTunes), and nothing changed.
    4. I then looked up the problem of why the CD/Drive software problem kept popping up.
    5. I fixed it by going to my registry and adding an UpperFilter with the code GEARaspi...something like that.
    6. The problem was fixed, but still no iPhone onto my itunes.
    I stayed up all night last night to fix this problem...I'm annoyed and tired.
    I tried another problem to fix this.
    1. I didn't put it into recovery mode.
    2. My iPhone showed up under portable devices under "device manager," from SYS/MAIN"
    3. I did update software.
    4. I clicked on "apple mobile device support" but nothing happened.
    5. It reported to me of the Code thing again.
    I even called the Apple people and they didn't know what to do, so I stopped calling them...because they only had limited options to fix the problem.
    Can anyone help me?

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • Can anyone help me, please(again)

    Hello :
    I am sorry that my massage is not clearly.
    Please run my coding first, and get some view from my coding. you can see somes buttons are on the frame.
    Now I want to click the number 20 of the buttons, and then I want to display a table which from the class TableRenderDemo to sit under the buttons. I added some coding for this problem in the class DrawClalendar, the coding is indicated by ??.
    but it still can not see the table apear on on the frame with the buttons.
    Can anyone help me to solve this problem.please
    Thanks
    *This program for add some buttons to JPanel
    *and add listeners to each button
    *I want to display myTable under the buttons,
    *when I click on number 20, but why it doesn't
    *work, The coding for these part are indicated by ??????????????
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.GridLayout;
    public class DrawCalendar extends JPanel {
         private static DrawCalendar dC;
         private static TestMain tM;
         private static TableRenderDemo myTable;
         private static GridLayout gL;
         private static final int nlen = 35;
        private static String names[] = new String[nlen];
        private static JButton buttons[] = new JButton[nlen];
         public DrawCalendar(){
              gL=new GridLayout(5,7,0,0);
               setLayout(gL);
               assignValues();
               addJButton();
               registerListener();
        //assign values to each button
           private void assignValues(){
              names = new String[35];
             for(int i = 0; i < names.length; i++)
                names[i] = Integer.toString(i + 1);
         //create buttons and add them to Jpanel
         private void addJButton(){
              buttons=new JButton[names.length];
              for (int i=0; i<names.length; i++){
                   buttons=new JButton(names[i]);
         buttons[i].setBorder(null);
         buttons[i].setBackground(Color.white);
         buttons[i].setFont(new Font ("Palatino", 0,8));
    add(buttons[i]);
    //add listeners to each button
    private void registerListener(){
         for(int i=0; i<35; i++)
              buttons[i].addActionListener(new EventHandler());          
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
    private class EventHandler implements ActionListener{
         public void actionPerformed(ActionEvent e){
         for(int i=0; i<35; i++){
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
         if(i==20){  //???????????               
              tM=new TestMain(); //???????
              tM.c.removeAll(); //??????
              tM.c.add(dC); //???????
              tM.c.add(myTable); //????
              tM.validate();
         if(e.getSource()==buttons[i]){
         System.out.println("testing " + names[i]);
         break;
    *This program create a table with some data
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.TableColumn;
    import javax.swing.DefaultCellEditor;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TableRenderDemo extends JScrollPane {
    private boolean DEBUG = true;
    public TableRenderDemo() {
    // super("TableRenderDemo");
    MyTableModel myModel = new MyTableModel();
    JTable table = new JTable(myModel);
    table.setPreferredScrollableViewportSize(new Dimension(700, 70));//500,70
    //Create the scroll pane and add the table to it.
    setViewportView(table);
    //Set up column sizes.
    initColumnSizes(table, myModel);
    //Fiddle with the Sport column's cell editors/renderers.
    setUpSportColumn(table.getColumnModel().getColumn(2));
    * This method picks good column sizes.
    * If all column heads are wider than the column's cells'
    * contents, then you can just use column.sizeWidthToFit().
    private void initColumnSizes(JTable table, MyTableModel model) {
    TableColumn column = null;
    Component comp = null;
    int headerWidth = 0;
    int cellWidth = 0;
    Object[] longValues = model.longValues;
    for (int i = 0; i < 5; i++) {
    column = table.getColumnModel().getColumn(i);
    try {
    comp = column.getHeaderRenderer().
    getTableCellRendererComponent(
    null, column.getHeaderValue(),
    false, false, 0, 0);
    headerWidth = comp.getPreferredSize().width;
    } catch (NullPointerException e) {
    System.err.println("Null pointer exception!");
    System.err.println(" getHeaderRenderer returns null in 1.3.");
    System.err.println(" The replacement is getDefaultRenderer.");
    comp = table.getDefaultRenderer(model.getColumnClass(i)).
    getTableCellRendererComponent(
    table, longValues[i],
    false, false, 0, i);
    cellWidth = comp.getPreferredSize().width;
    if (DEBUG) {
    System.out.println("Initializing width of column "
    + i + ". "
    + "headerWidth = " + headerWidth
    + "; cellWidth = " + cellWidth);
    //XXX: Before Swing 1.1 Beta 2, use setMinWidth instead.
    column.setPreferredWidth(Math.max(headerWidth, cellWidth));
    public void setUpSportColumn(TableColumn sportColumn) {
    //Set up the editor for the sport cells.
    JComboBox comboBox = new JComboBox();
    comboBox.addItem("Snowboarding");
    comboBox.addItem("Rowing");
    comboBox.addItem("Chasing toddlers");
    comboBox.addItem("Speed reading");
    comboBox.addItem("Teaching high school");
    comboBox.addItem("None");
    sportColumn.setCellEditor(new DefaultCellEditor(comboBox));
    //Set up tool tips for the sport cells.
    DefaultTableCellRenderer renderer =
    new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for combo box");
    sportColumn.setCellRenderer(renderer);
    //Set up tool tip for the sport column header.
    TableCellRenderer headerRenderer = sportColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer)headerRenderer).setToolTipText(
    "Click the sport to see a list of choices");
    class MyTableModel extends AbstractTableModel {
    final String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    final Object[][] data = {
    {"Mary ", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    public final Object[] longValues = {"Angela", "Andrews",
    "Teaching high school",
    new Integer(20), Boolean.TRUE};
    public int getColumnCount() {
    return columnNames.length;
    public int getRowCount() {
    return data.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int row, int col) {
    return data[row][col];
    * JTable uses this method to determine the default renderer/
    * editor for each cell. If we didn't implement this method,
    * then the last column would contain text ("true"/"false"),
    * rather than a check box.
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    * Don't need to implement this method unless your table's
    * editable.
    public boolean isCellEditable(int row, int col) {
    //Note that the data/cell address is constant,
    //no matter where the cell appears onscreen.
    if (col < 2) {
    return false;
    } else {
    return true;
    * Don't need to implement this method unless your table's
    * data can change.
    public void setValueAt(Object value, int row, int col) {
    if (DEBUG) {
    System.out.println("Setting value at " + row + "," + col
    + " to " + value
    + " (an instance of "
    + value.getClass() + ")");
    if (data[0][col] instanceof Integer
    && !(value instanceof Integer)) {
    //With JFC/Swing 1.1 and JDK 1.2, we need to create
    //an Integer from the value; otherwise, the column
    //switches to contain Strings. Starting with v 1.3,
    //the table automatically converts value to an Integer,
    //so you only need the code in the 'else' part of this
    //'if' block.
    try {
    data[row][col] = new Integer(value.toString());
    fireTableCellUpdated(row, col);
    } catch (NumberFormatException e) {
    JOptionPane.showMessageDialog(TableRenderDemo.this,
    "The \"" + getColumnName(col)
    + "\" column accepts only integer values.");
    } else {
    data[row][col] = value;
    fireTableCellUpdated(row, col);
    if (DEBUG) {
    System.out.println("New value of data:");
    printDebugData();
    private void printDebugData() {
    int numRows = getRowCount();
    int numCols = getColumnCount();
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + data[i][j]);
    System.out.println();
    System.out.println("--------------------------");
    *This program for add some buttons and a table on JFrame
    import java.awt.*;
    import javax.swing.*;
    public class TestMain extends JFrame{
    private static TableRenderDemo tRD;
         private static TestMain tM;
    protected static Container c;
    private static DrawCalendar dC;
         public static void main(String[] args){
         tM = new TestMain();
         tM.setVisible(true);
         public TestMain(){
         super(" Test");
         setSize(800,600);
    //set up layoutManager
    c=getContentPane();
    c.setLayout ( new GridLayout(3,1));
    tRD=new TableRenderDemo();
    dC=new DrawCalendar();
    addItems();//add Buttons to JFrame
    private void addItems(){
         c.add(dC); //add Buttons to JFrame
         //c.add(tRD); //add Table to JFrame     

    I think this is what you are trying to do. Your code was not very clear so I wrote my own:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.text.*;
    public class TableButtons extends JFrame implements ActionListener
         Component southComponent;
        public TableButtons()
              JPanel buttons = new JPanel();
              buttons.setLayout( new GridLayout(5, 7) );
              Dimension buttonSize = new Dimension(20, 20);
              for (int j = 0; j < 35; j++)
                   // this is a trick to convert an integer to a string
                   String label = "" + (j + 1);
                   JButton button = new JButton( label );
                   button.setBorder( null );
                   button.setBackground( Color.white );
                   button.setPreferredSize( buttonSize );
                   button.addActionListener( this );
                   buttons.add(button);
              getContentPane().add(buttons, BorderLayout.NORTH);
         public void actionPerformed(ActionEvent e)
              JButton button = (JButton)e.getSource();
              String command = button.getActionCommand();
              if (command.equals("20"))
                   displayTable();
              else
                   System.out.println("Button " + command + " pressed");
                   if (southComponent != null)
                        getContentPane().remove( southComponent );
                        validate();
                        pack();
                        southComponent = null;
         private void displayTable()
            String[] columnNames = {"Student#", "Student Name", "Gender", "Grade", "Average"};
            Object[][] data =
                {new Integer(1), "Bob",   "M", "A", new Double(85.5) },
                {new Integer(2), "Carol", "F", "B", new Double(77.7) },
                {new Integer(3), "Ted",   "M", "C", new Double(66.6) },
                {new Integer(4), "Alice", "F", "D", new Double(55.5) }
            JTable table = new JTable(data, columnNames);
            table.setPreferredScrollableViewportSize(table.getPreferredSize());
            JScrollPane scrollPane= new JScrollPane( table );
            getContentPane().add(scrollPane, BorderLayout.SOUTH);
            validate();
            pack();
            southComponent = scrollPane;
        public static void main(String[] args)
            TableButtons frame = new TableButtons();
            frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
            frame.pack();
            frame.setVisible(true);
    }

  • Can anyone help me, please

    Hello again:
    Please run my coding first, and get some view from my coding.
    I want to add a table(it is from TableRenderDemo) to a JFrame when I click on the button(from DrawCalendar) of the numer 20, and I want the table disply under the buttons(from DrawCalendar), and the table & buttons all appear on the frame. I added some code for this problem(in the EventHander of the DrawCalendar class), but I do
    not known why it can not work.Please help me to solve this problem.
    Can anyone help me, please.
    Thanks.
    *This program for add some buttons to JPanel
    *and add listeners to each button
    *I want to display myTable under the buttons,
    *when I click on number 20, but why it doesn't
    *work, The coding for these part are indicated by ??????????????
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.GridLayout;
    public class DrawCalendar extends JPanel {
         private static DrawCalendar dC;
         private static TestMain tM;
         private static TableRenderDemo myTable;
         private static GridLayout gL;
         private static final int nlen = 35;
        private static String names[] = new String[nlen];
        private static JButton buttons[] = new JButton[nlen];
         public DrawCalendar(){
              gL=new GridLayout(5,7,0,0);
               setLayout(gL);
               assignValues();
               addJButton();
               registerListener();
        //assign values to each button
           private void assignValues(){
              names = new String[35];
             for(int i = 0; i < names.length; i++)
                names[i] = Integer.toString(i + 1);
         //create buttons and add them to Jpanel
         private void addJButton(){
              buttons=new JButton[names.length];
              for (int i=0; i<names.length; i++){
                   buttons=new JButton(names[i]);
         buttons[i].setBorder(null);
         buttons[i].setBackground(Color.white);
         buttons[i].setFont(new Font ("Palatino", 0,8));
    add(buttons[i]);
    //add listeners to each button
    private void registerListener(){
         for(int i=0; i<35; i++)
              buttons[i].addActionListener(new EventHandler());          
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
    private class EventHandler implements ActionListener{
         public void actionPerformed(ActionEvent e){
         for(int i=0; i<35; i++){
    //I want to display myTable under the buttons,
    //when I click on number 20, but why it doesn't
    //work
         if(i==20){  //???????????               
              tM=new TestMain(); //???????
              tM.c.removeAll(); //??????
              tM.c.add(dC); //???????
              tM.c.add(myTable); //????
              tM.validate();
         if(e.getSource()==buttons[i]){
         System.out.println("testing " + names[i]);
         break;
    *This program create a table with some data
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.TableColumn;
    import javax.swing.DefaultCellEditor;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TableRenderDemo extends JScrollPane {
    private boolean DEBUG = true;
    public TableRenderDemo() {
    // super("TableRenderDemo");
    MyTableModel myModel = new MyTableModel();
    JTable table = new JTable(myModel);
    table.setPreferredScrollableViewportSize(new Dimension(700, 70));//500,70
    //Create the scroll pane and add the table to it.
    setViewportView(table);
    //Set up column sizes.
    initColumnSizes(table, myModel);
    //Fiddle with the Sport column's cell editors/renderers.
    setUpSportColumn(table.getColumnModel().getColumn(2));
    * This method picks good column sizes.
    * If all column heads are wider than the column's cells'
    * contents, then you can just use column.sizeWidthToFit().
    private void initColumnSizes(JTable table, MyTableModel model) {
    TableColumn column = null;
    Component comp = null;
    int headerWidth = 0;
    int cellWidth = 0;
    Object[] longValues = model.longValues;
    for (int i = 0; i < 5; i++) {
    column = table.getColumnModel().getColumn(i);
    try {
    comp = column.getHeaderRenderer().
    getTableCellRendererComponent(
    null, column.getHeaderValue(),
    false, false, 0, 0);
    headerWidth = comp.getPreferredSize().width;
    } catch (NullPointerException e) {
    System.err.println("Null pointer exception!");
    System.err.println(" getHeaderRenderer returns null in 1.3.");
    System.err.println(" The replacement is getDefaultRenderer.");
    comp = table.getDefaultRenderer(model.getColumnClass(i)).
    getTableCellRendererComponent(
    table, longValues[i],
    false, false, 0, i);
    cellWidth = comp.getPreferredSize().width;
    if (DEBUG) {
    System.out.println("Initializing width of column "
    + i + ". "
    + "headerWidth = " + headerWidth
    + "; cellWidth = " + cellWidth);
    //XXX: Before Swing 1.1 Beta 2, use setMinWidth instead.
    column.setPreferredWidth(Math.max(headerWidth, cellWidth));
    public void setUpSportColumn(TableColumn sportColumn) {
    //Set up the editor for the sport cells.
    JComboBox comboBox = new JComboBox();
    comboBox.addItem("Snowboarding");
    comboBox.addItem("Rowing");
    comboBox.addItem("Chasing toddlers");
    comboBox.addItem("Speed reading");
    comboBox.addItem("Teaching high school");
    comboBox.addItem("None");
    sportColumn.setCellEditor(new DefaultCellEditor(comboBox));
    //Set up tool tips for the sport cells.
    DefaultTableCellRenderer renderer =
    new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for combo box");
    sportColumn.setCellRenderer(renderer);
    //Set up tool tip for the sport column header.
    TableCellRenderer headerRenderer = sportColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer)headerRenderer).setToolTipText(
    "Click the sport to see a list of choices");
    class MyTableModel extends AbstractTableModel {
    final String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    final Object[][] data = {
    {"Mary ", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    public final Object[] longValues = {"Angela", "Andrews",
    "Teaching high school",
    new Integer(20), Boolean.TRUE};
    public int getColumnCount() {
    return columnNames.length;
    public int getRowCount() {
    return data.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int row, int col) {
    return data[row][col];
    * JTable uses this method to determine the default renderer/
    * editor for each cell. If we didn't implement this method,
    * then the last column would contain text ("true"/"false"),
    * rather than a check box.
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    * Don't need to implement this method unless your table's
    * editable.
    public boolean isCellEditable(int row, int col) {
    //Note that the data/cell address is constant,
    //no matter where the cell appears onscreen.
    if (col < 2) {
    return false;
    } else {
    return true;
    * Don't need to implement this method unless your table's
    * data can change.
    public void setValueAt(Object value, int row, int col) {
    if (DEBUG) {
    System.out.println("Setting value at " + row + "," + col
    + " to " + value
    + " (an instance of "
    + value.getClass() + ")");
    if (data[0][col] instanceof Integer
    && !(value instanceof Integer)) {
    //With JFC/Swing 1.1 and JDK 1.2, we need to create
    //an Integer from the value; otherwise, the column
    //switches to contain Strings. Starting with v 1.3,
    //the table automatically converts value to an Integer,
    //so you only need the code in the 'else' part of this
    //'if' block.
    try {
    data[row][col] = new Integer(value.toString());
    fireTableCellUpdated(row, col);
    } catch (NumberFormatException e) {
    JOptionPane.showMessageDialog(TableRenderDemo.this,
    "The \"" + getColumnName(col)
    + "\" column accepts only integer values.");
    } else {
    data[row][col] = value;
    fireTableCellUpdated(row, col);
    if (DEBUG) {
    System.out.println("New value of data:");
    printDebugData();
    private void printDebugData() {
    int numRows = getRowCount();
    int numCols = getColumnCount();
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + data[i][j]);
    System.out.println();
    System.out.println("--------------------------");
    *This program for add some buttons and a table on JFrame
    import java.awt.*;
    import javax.swing.*;
    public class TestMain extends JFrame{
    private static TableRenderDemo tRD;
         private static TestMain tM;
    protected static Container c;
    private static DrawCalendar dC;
         public static void main(String[] args){
         tM = new TestMain();
         tM.setVisible(true);
         public TestMain(){
         super(" Test");
         setSize(800,600);
    //set up layoutManager
    c=getContentPane();
    c.setLayout ( new GridLayout(3,1));
    tRD=new TableRenderDemo();
    dC=new DrawCalendar();
    addItems();//add Buttons to JFrame
    private void addItems(){
         c.add(dC); //add Buttons to JFrame
         //c.add(tRD); //add Table to JFrame     

    Click Here and follow the steps to configure your Linksys Router with Version FIOS.

  • I cannot figure out how to change the photo size on my iPhone 5s.  I was given the choice of small, medium or large the first time I took a picture.  Now I have no idea how to change it to medium.  Can anyone help?

    I cannot figure out how to change the photo size on my iPhone 5s.  The first time I took a pic it asked if I wanted smalll,  medium or large and listed the pixels.  I chose small but am now finding that is too small.  Can anyone help me set it to medium now?  I can't find any setting for that.  I'm a newby to iPhones and have no idea what I'm doing.  Thanks for any help you can offer.

    By "sending" do you mean sending email?
    If so, what app are you using to take the photos on your iPhone 5? Or are the photos from a different source (saved to your Camera Roll from somewhere else, like a web page or Messages)?
    My guess is that Mail gives you the option to send different file sizes when it detects you are trying to Mail a really large photo file. The size of photos on the iPhone 5 is really big and some email providers may stop your mail from being delivered if attachments are too large. Thus, Mail tries to help you by offering to resize the photo.
    I suspect that if you are sending smaller files, Mail does not bother giving you options to save a smaller version. In fact, I have seen this behavior. So, if the photo is already "small enough", it gets sent as-is.
    To my  knowledge, there is no global iOS setting for this. Some apps may have different rules, of course.

  • HT1365 Hi can anyone help with this issue regarding my wireless magic mouse? When im on google chrome and scrolling down the page i always have youtube running in the background but the audio cuts/spits/pops can anyone help me with this?

    Hi can anyone help with this issue regarding my wireless magic mouse? When im on google chrome and scrolling down the page i always have youtube running in the background but the audio cuts/spits/pops can anyone help me with this?

    The figures you mention only make sense on your intranet.  Are you still using the same wireless router.  The verizon one is somewhat limited as far as max wireless-n performace.  For one thing it only has a 2.4 radio.   I like many people who wanted wireless-n performance before they even added a wireless-n gigabit router, have my own handling my wireless-n network.

  • I have crashes constantly in my imac, can anyone help me to identify main cause? (Error report in post)

    Hello, my imac crashes every day, sometimes it's simply stop working in a black screen. I think that's something about video card, because every crash, I see a black screen or messed screen.
    Can anyone help me find the main cause? Below is my last error report.
    Anonymous UUID:       DDB9DB5F-EA5B-B45F-F5A7-6307FCE2572B
    Sat Sep 13 09:12:35 2014
    Machine-check capabilities: 0x0000000000000806
    family: 6 model: 23 stepping: 6 microcode: 1551
    signature: 0x10676
    Intel(R) Core(TM)2 Duo CPU     E8335  @ 2.66GHz
    6 error-reporting banks
    Processor 1: IA32_MCG_STATUS: 0x0000000000000005
    IA32_MC0_STATUS(0x401): 0xb200004000000800
    IA32_MC5_STATUS(0x415): 0xb200121020080400
    panic(cpu 1 caller 0xffffff80158dcad9): "Machine Check at 0xffffff7f973e73f7, registers:\n" "CR0: 0x000000008001003b, CR2: 0x0000000103e46000, CR3: 0x00000000181f2000, CR4: 0x0000000000000660\n" "RAX: 0x0000000000000031, RBX: 0xffffff8020905000, RCX: 0x0000000000000001, RDX: 0x0000000000000400\n" "RSP: 0xffffff80ae9e3d50, RBP: 0xffffff80ae9e3d80, RSI: 0x0000000000000004, RDI: 0xffffff80a8c45148\n" "R8:  0x00000000e0000000, R9:  0x0000000000000004, R10: 0x0000000104236380, R11: 0x0000000000000202\n" "R12: 0x0000000000000004, R13: 0xffffff80209e1240, R14: 0xffffff7f97404e20, R15: 0x0000000000000520\n" "RFL: 0x0000000000000046, RIP: 0xffffff7f973e73f7, CS:  0x0000000000000008, SS:  0x0000000000000010\n" "Error code: 0x0000000000000000\n"@/SourceCache/xnu/xnu-2422.110.17/osfmk/i386/trap_native.c :168
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80a8bd5e80 : 0xffffff8015822f79
    0xffffff80a8bd5f00 : 0xffffff80158dcad9
    0xffffff80a8bd6060 : 0xffffff80158f3fef
    0xffffff80ae9e3d80 : 0xffffff7f973e0676
    0xffffff80ae9e3e70 : 0xffffff7f973df8d9
    0xffffff80ae9e3f30 : 0xffffff80158ddb0c
    0xffffff80ae9e3f50 : 0xffffff801583758a
    0xffffff80ae9e3f90 : 0xffffff80158378d8
    0xffffff80ae9e3fb0 : 0xffffff80158d7417
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelCPUPowerManagement(217.92.1)[CF28958D-CA8A-3A79-911C -78217F5DDAF2]@0xffffff7f973dd000->0xffffff7f97407fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000015600000
    Kernel text base: 0xffffff8015800000
    System model name: iMac8,1 (Mac-F226BEC8)
    System uptime in nanoseconds: 53277101593110
    last loaded kext at 52049652796768: com.apple.macos.driver.AppleUSBEthernetHost 7.0 (addr 0xffffff7f97bb0000, size 28672)
    last unloaded kext at 52408741345770: com.apple.macos.driver.AppleUSBEthernetHost 7.0 (addr 0xffffff7f97bb0000, size 20480)
    loaded kexts:
    net.telestream.driver.TelestreamAudio 1.1.0
    com.apple.filesystems.smbfs 2.0.2
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleBluetoothMultitouch 80.14
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.kext.AMDFramebuffer 1.2.4
    com.apple.ATIRadeonX2000 8.2.4
    com.apple.kext.AMD2600Controller 1.2.4
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleIRController 325.7
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.iokit.AppleYukon2 3.2.3b1
    com.apple.driver.AppleIntelPIIXATA 2.5.1
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AirPortBrcm43224 700.36.24
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBUHCI 656.4.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.kext.triggers 1.0
    com.apple.driver.IOBluetoothHIDDriver 4.2.6f1
    com.apple.driver.AppleMultitouchDriver 245.13
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.kext.AMDSupport 1.2.4
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBHIDKeyboard 170.15
    com.apple.driver.AppleHIDKeyboard 170.15
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOATAPIProtocolTransport 3.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOATAFamily 2.5.2
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.29f1
    Graphics: ATI Radeon HD 2600 Pro, ATI Radeon HD 2600 Pro, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 800 MHz, 0x7F98000000000000, 0x202020202020202020202020202020202020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR2 SDRAM, 800 MHz, 0x7F98000000000000, 0x202020202020202020202020202020202020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.36.16)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 22 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: WiFi, AirPort, en1
    Serial ATA Device: Hitachi HDP725032GLA380, 320,07 GB
    Parallel ATA Device: OPTIARC  DVD RW AD-5630A
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    USB Device: SimpleDrive USB 2.0
    USB Device: Built-in iSight
    USB Device: BCM2046A
    USB Device: IR Receiver
    Thunderbolt Bus:

    Based on other users asking for help with crashes - looks like you don't have enough RAM to run Maverick and other applications at the same time.
    Find Apple has not been clear on what you should do before you upgrade - including finding out what software needs to be upgraded to work with mavericks and exactly how much RAM you need.
    seems 4GB is just not enough.

  • Can anyone help me as to why my raw files in bridge are not showing as thumbnails as they normally do . I can seem to fix it

    Can anyone help me as to why my raw files in bridge are not showing as thumbnails as they normally do . I can seem to fix it

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Flash swf that runs on every browser except in Firefox. Can anyone help me please?

    Hello.
    I have an flash swf in a site that runs on every browser except in Firefox. I get an warning telling me that the page requires a newer version of flash player but i already have the 10,0,32,18 and the swf was published for flash player 9.
    Can anyone help me please?

    The figures you mention only make sense on your intranet.  Are you still using the same wireless router.  The verizon one is somewhat limited as far as max wireless-n performace.  For one thing it only has a 2.4 radio.   I like many people who wanted wireless-n performance before they even added a wireless-n gigabit router, have my own handling my wireless-n network.

  • My ipod reset the menu can anyone help me

    i went to a friends house and before i went my ipod battery waz very low and wen i waz out my dad charged it for me (so wen i got back it would be fully charged and i could use it)but wen i got back i turned my ipod on and all the settings had been reset..???? all of my songs were still there but the menu waz completly reset i think its just because the battery ran flat before he charged it therefore causing it to reset the menu but i waz wondering if theres any other cause and if it damaged the ipod and is it a problem..??? can anyone help me with this
    thanx

    so does updating it improve its battery life or
    restoring it because im getting rubish battery time
    from my nano!
    I assume you know that the backlight kills your battery and that the quoted battery life is for operation under perfect conditions. I just posted this in another thread and I'm reposting it here for you....
    Specially about the battery, it lasts very little of
    I expected. (About 4-6 hours, ligh off, equalizer
    rock, moderate volume).
    Is it actually running out, or are you going by the meter? The vast majority of people who have this problem aren't actually running out of power. They only think they are. The meter is very inaccurate. After my iPod reaches zero, my iPod continues to work for five hours or more.
    If you want the meter to be more accurate, let the iPod run down completely, but don't do this too often. Just once in a blue moon. This will calibrate the meter but has nothing to do with the battery itself.
    The "life-use" of Li-ion batteries is to little too
    (about 500 cycle-charges)
    If you don't like Li-ion, the bad new for you is that Li-ion batteries are now used in all products by all manufacturers. ALL rechargeable batteries, no matter what type they are have a limited number of charge cycles - your phone, your laptop, everything. The only difference with Apple is that they're telling you this up front.
    Do you know or somebodys knows some way to extend
    battery charge?
    No, but if you follow the advice above, hopefully this won't be an issue.

  • Can anyone help in resizing the JLabel object

    Hi,
    can anyone help me in resizing the JLabel object after being dropped onto the DropContainer. I'm providing the code below
    import javax.swing.*;
    import java.awt.*;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.Transferable;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import java.awt.dnd.*;
    import java.io.File;
    import java.io.Serializable;
    import java.awt.event.*;
    import java.awt.Insets;
    import java.awt.Dimension;
    public class project2 extends JApplet implements Runnable{
    private DragContainer dragcontainer;
    private DropContainer dropcontainer;
    private DefaultListModel listModel,listModel1;
    public void start() {
    Thread kicker = new Thread(this);
    kicker.start();
    public void run() {
    project2 dndapplet = new project2();
    dndapplet.init();
    public void init() {
    try {
    getContentPane().setLayout(new BorderLayout());
    listModel = new DefaultListModel();
    dragcontainer = new DragContainer(listModel);
    getContentPane().add(BorderLayout.WEST, new JScrollPane(dragcontainer));
    listModel1=new DefaultListModel();
    dropcontainer = new DropContainer(listModel1);
    getContentPane().add(BorderLayout.CENTER,new JScrollPane(dropcontainer));
    catch (Exception e) {
    System.out.println("error");
    fillUpList("images");
    setSize(700, 300);
    public static void main(String[] args) {
    Frame f = new Frame("dndframe");
    project2 dndapplet = new project2();
    //Point pos=new Point();
    f.add(dndapplet);
    dndapplet.init();
    dndapplet.start();
    f.show();
    private void fillUpList(String directory) {
    File dir = new File(directory);
    File[] files = dir.listFiles();
    for (int i = 0; i < 11; i++) {
    listModel.addElement(new ImageIcon(directory + "\\" + files.getName()));
    class Cursor extends Object implements Serializable
    public static final int SE_RESIZE_CURSOR=0;
    int cursor;
    public Cursor(int SE_RESIZE_CURSOR)
    cursor=SE_RESIZE_CURSOR;
    class ImageTransferable implements Transferable, Serializable
    ImageIcon imageIcon;
    public static final DataFlavor IMAGE_FLAVOR = DataFlavor.imageFlavor;
    public DataFlavor[] getTransferDataFlavors()
    return new DataFlavor[] {IMAGE_FLAVOR};
    public ImageTransferable(ImageIcon imageIcon)
    this.imageIcon = imageIcon;
    public Object getTransferData(DataFlavor f) throws UnsupportedFlavorException
    if (!isDataFlavorSupported(f))
    throw new UnsupportedFlavorException(f);
    return imageIcon;
    public boolean isDataFlavorSupported(DataFlavor aFlavor)
    return IMAGE_FLAVOR.equals(aFlavor);
    class DragContainer extends JList implements DragGestureListener, DragSourceListener
    private DragSource iDragSource = null;
    public DragContainer(ListModel lm)
    super(lm);
    iDragSource = new DragSource();
    iDragSource.createDefaultDragGestureRecognizer(this,DnDConstants.ACTION_COPY_OR_MOVE, this);
    public void dragGestureRecognized(DragGestureEvent aEvt)
    ImageIcon imageSelected = (ImageIcon) getSelectedValue();
    ImageTransferable imsel = new ImageTransferable(imageSelected);
    if (imageSelected != null)
    System.out.println("startdrag...");
    iDragSource.startDrag(aEvt, DragSource.DefaultCopyNoDrop, imsel, this);
    else
    System.out.println("Nothing Selected");
    public void dropActionChanged(DropTargetDragEvent event)
    public void dropActionChanged(DragSourceDragEvent event)
    public void dragDropEnd(DragSourceDropEvent event)
    public void dragEnter(DragSourceDragEvent event)
    public void dragExit(DragSourceEvent event)
    public void dragOver(DragSourceDragEvent event)
    DragSourceContext context = event.getDragSourceContext();
    context.setCursor(null);
    context.setCursor(DragSource.DefaultCopyDrop);
    class DropContainer extends JList implements DropTargetListener,MouseListener
    private DropTarget iDropTarget = null;
    private int acceptableActions = DnDConstants.ACTION_COPY_OR_MOVE;
    JLabel imgLabel=null;
    public int dropX;
    public int dropY;
    public int x;
    public int y;
    public DropContainer(ListModel lm1)
    super(lm1);
    iDropTarget = new DropTarget(this, this);
    setBackground(Color.white);
    public void drop(DropTargetDropEvent aEvt)
    Point location=null;
    ImageIcon icon=null;
    Transferable transferable=null;
    //int dropX=0;
    //int dropY=0;
    try
    transferable = aEvt.getTransferable();
    location=new Point();
    if(transferable.isDataFlavorSupported(ImageTransferable.IMAGE_FLAVOR))
    aEvt.acceptDrop(acceptableActions);
    icon = (ImageIcon)
    transferable.getTransferData(ImageTransferable.IMAGE_FLAVOR);
    setLayout(null);
    imgLabel=new JLabel();
    imgLabel.setIcon(icon);
    imgLabel.addMouseListener(this);
    location=aEvt.getLocation();
    dropX=location.x;
    dropY=location.y;
    imgLabel.setBounds(dropX,dropY,icon.getIconWidth(),icon.getIconHeight());
    this.add(imgLabel);
    SwingUtilities.updateComponentTreeUI(this.getRootPane());
    aEvt.getDropTargetContext().dropComplete(true);
    else
    System.out.println("rejecting drop");
    aEvt.rejectDrop();
    aEvt.getDropTargetContext().dropComplete(false);
    catch (Exception exc)
    exc.printStackTrace();
    aEvt.rejectDrop();
    aEvt.getDropTargetContext().dropComplete(false);
    finally
    location=null;
    transferable=null;
    icon=null;
    imgLabel=null;
    public void mousePressed(MouseEvent e)
    x=e.getX();
    y=e.getY();
    public void mouseReleased(MouseEvent e)
    int temp1,temp2;
    temp1=y;
    temp2=x;
    imgLabel.setSize(temp1,temp2);
    public void mouseEntered(MouseEvent e) {}
    public void mouseExited(MouseEvent e) {}
    public void mouseClicked(MouseEvent e) {}
    public void dragEnter(DropTargetDragEvent event)
    System.out.println("dragenter");
    event.acceptDrag(acceptableActions);
    public void dragExit(DropTargetEvent event)
    System.out.println("dragexit");
    public void dragOver(DropTargetDragEvent event)
    System.out.println("dragover");
    event.acceptDrag(acceptableActions);
    public void dropActionChanged(DropTargetDragEvent event)
    System.out.println("dropactionchanged");
    event.acceptDrag(acceptableActions);
    }//class DropContainer

    Hi all,
    I have two classes, say 1st and 2nd.
    I have created an object of the second class in the first class and also i have invoked a method of the second class using it's object from the first class.
    but when i compile the first class i'm getting an error that "cannot access the second class".
    can anyone help me in fixing this problem
    thanks in advance
    murali

  • Can anyone help me using these fonts?...

    Hi guys, im building a site in dreamweaver and was hoping to use the fonts - positive a, barnes and pen of truth.
    I know that there is something you can do with some copy and paste code from google but i cant seem to find it.
    Can anyone help?!
    Heres my site - www.allroots.org
    Cheers
    Benn

    Benn,
    Line 6 of your HTML where you've used the reference for CabinSketch - it is incorrect referencing to Google Webfont library. The correct references it this:
    <link href='http://fonts.googleapis.com/css?family=Cabin+Sketch:700' rel='stylesheet' type='text/css'>
    700 being font-weight, bold.
    One more thing I noticed - Rye regular is also incorrectly referenced in your HTML. The correct line of reference is:
    <link href='http://fonts.googleapis.com/css?family=Rye' rel='stylesheet' type='text/css'>
    Replace both these to your existing lines that define these 2 font references.
    The current URL you've referenced to on Google Fonts API gives a 404 not found error - which means the font is not stored at Google at the referenced location which is why the font doesn't show up on your page. Try clicking on these links as given your document to see what I mean:
    CabinSketch Bold
    Rye Regular
    Trust this helps.
    -ST

  • File must be saved as a copy of this selection? can anyone help?

    ok so im on ps cs4 and all is well, i have been saving files as .png all day long and suddenly it stops allowing me to save as jpg,png and others as well, "File must be saved as a copy of this selection" is the message i got at the bottom of the screen. Can anyone help solve this problem?

    Did you change the bit depth?  Did you add one or more layers?  Did you add one or more channels?
    Whenever there's something in the image that cannot be stored because of a limitation of the output format (e.g., multiple layers or 16 bit per channel color and Save-As JPEG), Save As Copy will be selected by default.
    -Noel

  • My master cover art for "The Circus Life Podcast" isn't showing up in the store, only the podcast library.  Can anyone help?

    I just uploaded my new podcast, "The Circus Life Podcast" to iTunes via Libsyn.  The master artwork for the show itself is not showing up in the store, only the library in the podcast app once you have subscribed.  Me and my partner can't for the life of us figure out what to do.  The RSS feed was submitted and approved over a week ago and still the artwork isn't show.  Can anyone help?

    Yes I work at libsyn.   rob (at) libsyn (dot) com.
    Below are specs from Apple for artwork.  They don't mention the 500kb limit - but it seems at least for .jpg images - any we have seen issues with that meet all the other requirement are over 500 kb - and lowering the file size was able to get them working.
    But per CMYK - that definitely will not work on the iTunes store.  Change your artwork to RGB - get the file size down below 500kb - and reupload to libsyn - with a new file name and your artwork should show up in 1 to 5 days.
    Rob W
    libsyn
    <itunes:image>
    This tag specifies the artwork for your podcast. Put the URL to the image in the href attribute. iTunes prefers square .jpg images that are at least 1400x1400 pixels, which is different from what is specified for the standard RSS image tag. In order for a podcast to be eligible for an iTunes Store feature, the accompanying image must be at least 1400x1400 pixels.
    iTunes supports images in JPEG and PNG formats with an RGB color space (CMYK is not supported). The URL must end in ".jpg" or ".png". If the <itunes:image> tag is not present, iTunes will use the contents of the RSS image tag.
    If you change your podcast’s image, also change the file’s name. iTunes may not change the image if it checks your feed and the image URL is the same. The server hosting your cover art image must allow HTTP head requests for iTS to be able to automatically update your cover art.
    Spend some time developing an attractive, original image that represents your podcast well. Potential subscribers will see it on your podcast’s page and a much smaller version of the image in search results and feature placements. Make sure your design is effective in both sizes.
    The <itunes:image> tag is also supported at the episode level. For best results, we recommend using the <itunes:image> tag at the item level as well as embedding the same art within the media file’s metadata. To embed art within an individual episode’s metadata using iTunes, select the episode and choose Get Info from the File menu. Click the Artwork tab. Then click Add, navigate to and select the image file, and click Choose.

  • I recently had to update to office 2011 and outlook. All went well but now I cannot send via outlook but apple mail works ok and outlook receive is working. Can anyone help?

    I mac 24in 2.8 4gb ram OS 10.10
    I recently had to update to os10.10 and consequently office 2011 with outlook.  All was going well with the outlook mail until yesterday when the outlook send mail stopped working, receive works ok. I get error code 3259 and the message "an operation on the server timed out. the server may be down, overloaded, or there may be too much net traffic."  In the details  "Mail could not be sent.  Account name: "[email protected]"  The send failure occurs on my yahoo accounts, gmail accounts and comcast accounts.  Both send and receive work ok on apple mail.  Can anyone help me sort this and avoid going to microsoft support?

    hi i had the same problem today when i updated my itunes to latest version. however, i have just found my songs in the 'itunes media' folder. this was accessed through 'my music'  then keep clicking through until you find itunes media and all my library songs were in there and i then just added these files to my library and all were restored however, i have lost all my playlists but at least my 700 songs are back. very dissapointed with apple that they have let this happen with their latest update, the previous version was miles better than this one . hope you find them. stevo

Maybe you are looking for