Help Urgently Needed With Border

Hi
Please can anyone help me?
I have designed a site and I am trying to put a border around
the whole of the table (not individual cells).
Is this possible to do?
Thank you very much, Louisa

Erp...
<table style="border: 3px solid gray;" ...>
</table>
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Malcolm N_" <[email protected]> wrote in message
news:[email protected]..
> On Fri, 3 Aug 2007 15:31:14 +0000 (UTC), "LoobieLouLou"
> <[email protected]> wrote:
>
>>Hi
>>Please can anyone help me?
>>I have designed a site and I am trying to put a
border around the whole of
>>the table (not individual cells).
>>Is this possible to do?
>>Thank you very much, Louisa
>
>
> give the table a css class
> <table class="table1">
>
> and control it with this
> .table {
> border: 3px solid gray;
> }
>
>
> or just quick and dirty
>
> <table style="border: 3px solid gray; </table>
> --
>
> ~Malcolm N....
> ~

Similar Messages

  • Help urgently needed with Java RMI task.

    Hello All. Please I need help urgently with this task. I cant seem to be able to do this. Here is the task:
    There are m squares with side lengths a1, a2, ..., am and a rectangle with the height and width equal to h and w respectively. Find a subset of the squares, which must be placed within the rectangle in such a way that they do not overlap, and cover the maximum area of a rectangle.*
    Please all help me solve this task using Java RMI. I would be very grateful for your help. Thanks in advance.

    Here is my client.java.
    import compute.;*
    import java.lang.Math.;*
    import java.lang.Long;
    *public class Hypothesis implements Task {*
    private long start;
    private long end;
    private int number;
    private int count;
    public Hypothesis(long start, long end, int number,int
    *count) {*
    this.start = start;
    this.end = end;
    this.number = number;
    this.count = count;
    *public Object execute() {*
    return findSolution();
    *public String findSolution() {*
    long i,j,k,l,m=1,i_max,j_max,k_max,l_max,l_start;
    System.out.println(start);
    System.out.println(end);
    System.out.println(number);
    System.out.println(count);
    for(m=start+number;m<end;m+=count)
    i_max=(long)java.lang.Math.pow((double)(min(p5(m)-3)),0.2d)+1;
    for(i=i_max;i>0;i--)
    j_max=(long)java.lang.Math.pow((double)(min(p5(m)-p5(i)-2)),0.2d)+1;
    if (j_max>i) j_max=i;
    for(j=j_max;j>0;j--)
    k_max=(long)java.lang.Math.pow((double)(min(p5(m)-p5(i)-p5(j)-1)),0.2d)+1;
    if (k_max>j) k_max=j;
    for(k=k_max;k>0;k--)
    l_max=(long)java.lang.Math.pow((double)(min(p5(m)-p5(i)-p5(j)-p5k))),0.2d)+1;
    if (l_max>k) l_max=k;
    if (l_max>2) l_start=l_max-2;
    else l_start=1;
    for(l=l_max;l>l_start-1;l--)
    if(p5(i)+p5(j)+p5(k)+p5(l)==p5(m))
    Long[] solution=new Long[5];
    solution[0]=i;
    solution[1]=j;
    solution[2]=k;
    solution[3]=l;
    solution[4]=m;
    *return "" solution[0]"^5+"*
    solution[1]"^5+"*
    solution[2]"^5+"*
    solution[3]"^5="*
    solution[4]"^5";*
    return null;
    *private long p5(long n){*
    return nn*n*n*n;*
    *private long min(long n){*
    return n>0?n:0;
    I just can't seem to get the whole thing work correctly on the server side. I need it to run from 1 client on atleast 3 servers. Please any explanations will be appreciated.

  • Help urgently needed with xml reading

    hi, i have a 3gig xml file which i am surprised it is so large as i have even shortened all of the names,
    it contains 2000 elements which have a filename and an array, each element has an array of size 6000, and each element in this array has an array of shorts, say 100 of them, and also a filename.
    i ahve used stax writing to be able to write such a large file without having memory problems.
    i then had to program a stax reader to be able to read it all in without building the whole tree but with some large cases i am now getting out of memory again, it seems to eb from the read so maybe the code eve though it doesnt have to hold the tree in memory, it has to hold the file in memory, the code for reading is shown here:
    package utilities;
    import Categorise.Collection;
    import Categorise.Comparison;
    import Categorise.TestCollection;
    import java.io.IOException;
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.xml.sax.helpers.DefaultHandler;
    import org.xml.sax.Attributes;
    import java.io.File;
    import java.util.ArrayList;
    import java.util.List;
    import measures.Protocol;
    * @author dthomas
    public class XMLParser extends DefaultHandler
        static Collection collection = new Collection();
        List<Short> cList;
        List<Comparison> comparisonList;
        File trainFileName;
        File testFileName;
        TestCollection tc;
        List<TestCollection> testCollectionList;
        List<File> testFileNameList = new ArrayList<File>();
        List<File> trainFileNameList = new ArrayList<File>();
        boolean allTrainsAdded = false;
        Protocol protocol;
        List<File> trainingDirList;
        File testingDir;
        int counter = 0;
        /** Creates a new instance of XMLParser */
        public XMLParser() {
        public static Collection read( File aFile )
            long startTime = System.currentTimeMillis();
            System.out.println( "Reading XML..." );
            SAXParserFactory spf = SAXParserFactory.newInstance();
            SAXParser sp;
            try {
                sp = spf.newSAXParser();
                sp.parse( aFile, new XMLParser() );
            } catch (IOException ex) {
                ex.printStackTrace();
            } catch (SAXException ex) {
                ex.printStackTrace();
            } catch (ParserConfigurationException ex) {
                ex.printStackTrace();
            long endTime = System.currentTimeMillis();
            long totalTime = ( endTime - startTime ) / 1000;
            System.out.println( "Done..."  + totalTime + " seconds" );
            return collection;
        public void startElement(String uri,String localName,String qName, Attributes attributes)
            if( qName.equals( "RE" ) )
                testCollectionList = new ArrayList<TestCollection>();
            else if( qName.equals( "p") )
                boolean isConcatenated = new Boolean( attributes.getValue( "c" ) );
                boolean isStatic = new Boolean( attributes.getValue( "s" ) );
                protocol = new Protocol( isConcatenated, isStatic );
            else if( qName.equals( "trdl" ) )
                trainingDirList = new ArrayList<File>();
            else if( qName.equals( "trd" ) )
                File trainDir = new File( attributes.getValue( "fn" ) );
                trainingDirList.add( trainDir );
            else if( qName.equals( "td" ) )
                testingDir = new File( attributes.getValue( "fn" ) );
            else if( qName.equals( "TC" ) )
                counter++;
                System.out.println( counter );
                comparisonList = new ArrayList<Comparison>();
                testFileName = new File( attributes.getValue( "tfn" ) );
                testFileNameList.add( testFileName );
                tc = new TestCollection( );
                tc.setTestFileName( testFileName );
            else if ( qName.equals( "r" ) )
             String order = attributes.getValue( "o" );
                String type = attributes.getValue( "t" );
                String value = attributes.getValue( "v" );
                cList.add( Short.parseShort( order ), new Short( value ) );
            else if( qName.equals( "c" ) )
                cList = new ArrayList<Short>();
                trainFileName = new File( attributes.getValue( "trfn" ) );
                if( !allTrainsAdded )
                    trainFileNameList.add( trainFileName );
        public void characters(char []ch,int start,int length)
            String str=new String(ch,start,length);
            System.out.print(str);
        public void endElement(String uri,String localName,String qName)
            if (qName.equals( "c") )
                allTrainsAdded = true;
                short[ ] cCounts = new short[ cList.size() ];      
                for( int i = 0; i < cCounts.length; i++ )
                    cCounts[ i ] = cList.get( i );
                Comparison c = new Comparison( trainFileName, tc );
                c.setcCounts( cCounts );
                this.comparisonList.add( c );
            else if( qName.equals( "TC" ) )
                Comparison[ ] comparisons = new Comparison[ comparisonList.size() ];
                comparisonList.toArray( comparisons );           
                tc.setComparisons( comparisons );
                testCollectionList.add( tc );
            else if( qName.equals( "RE" ) )
                TestCollection[ ] testCollections = new TestCollection[ testCollectionList.size() ];
                testCollectionList.toArray( testCollections );
                collection.setTestCollections( testCollections );
                File[ ] testFileNames = new File[ testFileNameList.size() ];
                testFileNameList.toArray( testFileNames );
                collection.setTestingFiles( testFileNames );
                File[ ] trainingFileNames = new File[ trainFileNameList.size() ];
                trainFileNameList.toArray( trainingFileNames );
                collection.setTrainingFiles( trainingFileNames );
                collection.setProtocol( protocol );
                File[ ] trainingDirs = new File[ trainingDirList.size() ];
                trainingDirList.toArray( trainingDirs );           
                collection.setTrainingDirs( trainingDirs );
                collection.setTestingDir( testingDir );
    }any help would be greatly greatly appreciated
    thanks
    Danny =)
    ps with the amount of data contained, should the xml file be this large? and does ayone know the size difference of holding a filename as a File rather than a string and then creating the file when it is needed?

    yes i do need them but i could store them as strings instead if you think that would help? if it never runs out of memory i dot see how i was able to hold all of this information in memory before, as it was all written to file.
    thanks

  • Help urgently needed with edit to tape / print to video error

    I have tried to edit to tape and print to video a sequence (0my whole project, worked for way too many nights to let go... so frustrated and sad right now because it doesn't work.
    The project is saved on an extern harddisk, my harddrive on teh pc is too full (not big enough).
    My camera and FCP connects but all the time I get an error that 'the tape may be locked' . AND I HAVE TRIED WITH DIFFERENT TAPES, none of them were locked!
    I am not really sure how to set the camera in this VTR mode... I have tried in the settings to set it in webcam mode... and I have tried without... and I dont have a button or setting called VTR, only a *PLAY' option or a 'FILMØ option....
    My A/V settings are FireWire PAL and DA PAL 48khz ... however have no ide what that means or if these should be changed...?
    I checked from apple but cannot find my DV cam on the list... hmm, does that mean I cannot do edit to tape recordings???
    My Dv cams informations:
    NV-GS140 by Panasonic, Model 0x80330B, 0x804580114B5DD1
    I checked the system settings and was able to the FireWire/NV-GS140 Unit
    I have a MacBook1,1 / Intel Core Duo/ 2 GHz
    OS 10.4.11
    I use the version FCP 2
    Please help me out, I am really without any good suggestions how to proceed!

    You're going to have to use a dvd authoring program. Burning the seq to a dvd qill just create a qt movie on a dvd data disc. It won't create a dvd video disc that plays in a dvd player.
    Export from fcp a QT movie, current settings, self-contained. Use Anamorphicizer (http://mac.softpedia.com/get/Video/Anamorphicizer.shtml) to make imovie recognise it as 16:9. Then import that file to idvd.
    Or you can drop your 16:9 sequence into a new 4:3 sequence to letterbox it, then you can do the export as above but skip the anamorphicizer step.
    It's better to use compressor on the original 16:9 sequence and then use dvdsp to author, but if you've never used dvdsp it's a big program to get your head round.
    The export can be done in two ways;
    1. Export from fcp using 'export using compressor'.
    2. Export a QT ref/self-contained movie and import that into compressor.
    3. Export a QT movie and import it direct into DVDSP.
    The second option will take longer initially (if you use the self-contained option) but will then allow compressor to work in the background, the first option will tie up fcp for the duration of the encode.
    Once in compressor use one of the 16:9 dvd presets, depending on the duration of the movie and the quality you want. Don't try to adjust the settings. If your movie is 31 mins just use the shortest option (i think it's 60min) and make sure you select the m2v video and ac3 audio options. If you just select the mpeg 2 video you'll only get video, as you've discovered.
    Open dvdsp and create your opening menu and a video track, import the movie file, add it to the video track, and then add the audio to the track as well. Then add any chapter submenus you may want.

  • Help urgently needed please ! My Iphone 4 is on silent vibration mode, received a call and has frozen with the Iphone unusable and yet vibrating. I have tried switching off, connecting to power, connecting to laptop and removing SIM card ???

    Help urgently needed please ! My Iphone 4 is on silent vibration mode, received a call and has frozen with the Iphone unusable and yet vibrating. I have tried switching off, connecting to power, connecting to laptop and removing SIM card ???

    Problem solved... just saw the answer in another thread... https://discussions.apple.com/message/13110222#13110222

  • Help urgently needed, I have installed Logic Pro 9, since then my Final Cut Pro X keep freezing. Anyone what is wrong and how to solve it? I desperately need help on this. Thanks

    Help urgently needed, I have installed Logic Pro 9, since then my Final Cut Pro X keep freezing. Anyone what is wrong and how to solve it? I desperately need help on this. Apple support says I have to pay £85 for to help me. Thanks

    Just a word of advice. Never ever use the word "urgent" on this forum

  • HELP urgently needed: My Sandberg FireWire for Laptop will not start on my T60

    Let me start with information on my T60:
    OS information: Microsoft Windows XP
    OS version: 5.10.2600   Service Pack 2
    Processor: x86 Family 6 Model 14 Stepping 8
    Memory: 3.135.856 kb
    BIOS version: 2.09  (79ETC9WW)
    Machine type-Model: 1951A47
    I have just got a new Sandberg FireWire for Laptop, a PC Card with 3 6-pins connectiont. After inserting the card in the PC Card slot, the Windows Device Manager tells me that there are problems with the card. Looking at the 1394 Card Properties the status says:
    "This device cannot start. (Code 10) - Click Troubleshoot to start the troubleshooter for this device."
    The troubleshooter did not solve my problem. I have tried disconnecting, re-connection, shut down Windows and start again etc.
    At Sandberg Help Desk they tell me that I have two slots in my laptop, one with a 16 bits bus and another with a 32 bits slots, and I should use the latter. It seems that I can use the lower slide only in my laptop and I cannot push the card into the upper slide. There is not enough room for it.
    Here is what I found on Lenovo's support site on my type & model:
     PC Card
    Conforms to the PC Card Standard 95
    Type II slot
    Both the 16-bit Release 2.1 card standard and the 32-bit CardBus card are supported.
    Have a look at these screen captures.
    What should I do to solve my urgent problem!? 
    Message Edited by pbl_ibm on 10-09-2008 05:10 AM
    Message Edited by pbl_ibm on 10-09-2008 07:27 AM
    Message Edited by pbl_ibm on 10-09-2008 07:45 AM
    Message Edited by pbl_ibm on 10-09-2008 07:45 AM

    garytr23 wrote:
    Sounds to me like a driver configuration problem.  Maybe something bad happened during driver install.  I would recommend uninstalling the device from device manager by right clicking on it and hitting uninstall.  Reboot the computer.  Have a go at it again.  Also, test your pcmcia port functionality by finding and plugging in a different card.  See if that works.  It might need repair.
    Message Edited by garytr23 on 10-09-2008 09:41 AM
    The status right now is:
    The PC Card reader works on my T60
    If I use a Firewire PC Card it will not start - as described above (on T60)
    The PC Card work properly on my T61P - and I succeeded importing a video file from a digital camera using the Fireswire PC Card.
    So what does a wise man do in this situation??
    Please help me as I urgently need to know how to solve this serious issue!! 
    Have you got an idea? Can I import the video in another way??
    Message Edited by perbuch on 10-12-2008 07:55 AM

  • Installation problem, please help, urgent needs,

    I have install the FCP 7 into my MBP, and updated, but in the "add behavior" tap i don't have those new behavior like "text-basic" "text-continuous" "text-energetic" etc..... how can i add it back?
    urgent needs, please help

    fixed

  • URGENT HELP IS NEEDED WITH IMOVIE and MY SONY HD CAMERA HDR XR100E

    Hi there Fellow Mac Users.
    ok heres the situation..
    i bought the brand new sony HDR xr100E Video camera and as soon as i connetced it a few weeks back to my Apple Mac IMOVIE opened automatically and i was able to edit the movie, add sound, titles etc.
    Now last week there was a IMOVIE Update launched via software update and i downloaded it and now since then my Sony Cameara does not work with IMOVIE as imovie does not recognise it any more.
    when ever you go to the option to import from cameara it does not find the camera but instead it opens the I sight Camera on the Macbook.
    i have uninstalled the operating system, reinstalled, i have uninstalled the imovie application, reinstalled and still nothing.
    Can some one , anyone please help me ASAP im desperate.. ow and PS has anyone else exeprienced this same issue since the Upgrade?

    Thanks. What we will be using it for is mainly videoing children and family and we would like the 1080 HD but not necessarily hooked on the tape system. A hydrid might be something... like the BD and HDD. I found the Sony autofocus a bit slow at times which we would like to improve and we would like to have something that easily allow some pre-editing before getting to the FCE (I mean deleting unwanted clips etc). Also preferably not too large and heavy...
    Hope that makes the advise easier. Thanks again.

  • Help urgently needed! BB curve 8900 dead with red blinking lights on!!!

    Hi to everyone!  i just bought a BB Curve 8900 last month and now i'm facing aproblem. i am new to this forum and i was hoping you guys can help me out. i connected my BB to my pc with desktop manager to download some music when it prompted me to update my software. So i did, then at the end of the installation, i got fatal error and now all i got is a dead phone with red light blinking every 2 sec. can anyone help me pls?thank in advance and more power to this forum.

    First locate your carrier and the OS file you wish to use.
    http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    Do a backup of your device first, using Desktop Manager > Backup. Close Desktop Manager upon completion.
    1. Download the OS file to the PC then install it to the PC by running (double clicking) the file you downloaded.
    2. Go to c:\program files\common files\research in motion\apploader and delete the file named "vendor.xml."
    3. Plug in BB and double click on "Loader.exe." It's located in the same place as the above vendor.xml file.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • JTable help Urgent need !!!!!

    hi, I am having problem in getting scrollBar arround my JTextArea that's in a cell of my JTable. If you run the following two files and see the output. The second cell should show me the scrollBars as the whole text is not visible. Please look at the code and see where I am doing wrong. I need to have scrollBars appear arround my individual JTextArea if the text doesn't fit in it. Any help is appreciated...
    /****** This is the main file ***********/
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.border.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    public class MultiLineCellExample extends JFrame
    public MultiLineCellExample()
    super( "Multi-Line Cell Example" );
    DefaultTableModel dm = new DefaultTableModel() {
    public Class getColumnClass(int columnIndex) {
    return String.class;
    dm.setDataVector(new Object[][]{{"2"},{" Error 1Error 1Error 1Error 1Error 1Error 1 Error 1Error 1Error 1Error 1 Error 1Error 1Error 1 Error 1Error 1Error 1Error 1Error 1Error 1 Error 1Error 1Error 1Error 1Error 1Error 1Error 1"}},
    new Object[]{"Following are the Errors"});
    JTable table = new JTable( dm );
    int lines = 2;
    table.setRowHeight( table.getRowHeight() * lines);
    table.setDefaultRenderer(String.class, new TextCellRenderer());
    JScrollPane scroll = new JScrollPane( table );
    getContentPane().add( scroll );
    setSize( 400, 130 );
    setVisible(true);
    public static void main(String[] args)
    MultiLineCellExample frame = new MultiLineCellExample();
    frame.addWindowListener( new WindowAdapter() {
    public void windowClosing( WindowEvent e ) {
    System.exit(0);
    /********* This is the TableCellRenderer file **********/
    /* this code is from
    Copyright (c) 1999 Computer Engineering and Communication Networks Lab (TIK)
    Swiss Federal Institute of Technology (ETH) Zurich, Switzerland
    All rights reserved.
    Permission is hereby granted, without written agreement and without
    license or royalty fees, to use, copy, modify, and distribute this
    software and its documentation for any purpose, provided that the above
    copyright notice and the following two paragraphs appear in all copies
    of this software.
    import javax.swing.*;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.border.*;
    import javax.swing.table.*;
    import java.awt.Component;
    import java.awt.Color;
    import java.io.Serializable;
    public class TextCellRenderer extends JTextArea
    implements TableCellRenderer, Serializable{   //,Scrollable{  Need to implement this too to get scrolls on individual JtextAreas too.
                                                                                    //currently not working, have to look into too.     
    protected static Border noFocusBorder;
    private Color unselectedForeground;
    private Color unselectedBackground;
    public TextCellRenderer() {
         super();
    noFocusBorder = new EmptyBorder(1, 1, 2, 1);
              this.setOpaque(true);
    this.setBorder(noFocusBorder);
    this.setColumns(6);
    this.setWrapStyleWord(true);
              this.setLineWrap(true);
              this.setAutoscrolls(true);
              //this is not working yet, trying to figure out some other way
         JScrollPane pane = new JScrollPane( this,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
                                                      JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
    public void setForeground(Color c) {
    super.setForeground(c);
    unselectedForeground = c;
    public void setBackground(Color c) {
    super.setBackground(c);
    unselectedBackground = c;
    public void updateUI() {
    super.updateUI();
              setForeground(null);
              setBackground(null);
    JTable table;
    // implements javax.swing.table.TableCellRenderer
    public Component getTableCellRendererComponent(JTable table, Object value,
    boolean isSelected, boolean hasFocus, int row, int column) {
    this.table = table;
         if (isSelected) {
         super.setForeground(table.getSelectionForeground());
         super.setBackground(table.getSelectionBackground());
         else {
         super.setForeground((unselectedForeground != null) ? unselectedForeground
         : table.getForeground());
         super.setBackground((unselectedBackground != null) ? unselectedBackground
         : table.getBackground());
         setFont(table.getFont());
         if (hasFocus) {
         setBorder( UIManager.getBorder("Table.focusCellHighlightBorder") );
         if (table.isCellEditable(row, column)) {
         super.setForeground( UIManager.getColor("Table.focusCellForeground") );
         super.setBackground( UIManager.getColor("Table.focusCellBackground") );
         } else {
         setBorder(noFocusBorder);
    setValue(value);
         return this;
    protected void setValue(Object value) {
         setText((value == null) ? "" : value.toString());
    if (table != null) {
    String s = getText();
    //count the number of returns
    int ind = 0;
    //add an extra line for the scroll bar if required
    int num = 2;
    do {
    ind = s.indexOf("\n", ind);
    if (ind >= 0) {
    num++;
    ind++;
    } while (ind > 0);
    //set the row height to fit in this cell
    int newHeight = (table.getFont().getSize()*9*num)/5;
    if (table.getRowHeight() < newHeight) {
    table.setRowHeight(newHeight);
    public static class UIResource extends DefaultTableCellRenderer
    implements javax.swing.plaf.UIResource
    public Dimension getPreferredScrollableViewportSize()
              return this.getPreferredSize();      
         public int getScrollableBlockIncrement(Rectangle r, int orietation, int direction)
              return 10;      
         public boolean getScrollableTracksViewportHeight()
              return false;      
         public boolean getScrollableTracksViewportWidth()
              return false;      
         public int getScrollableUnitIncrement(Rectangle r, int orientation, int direction)
              return 10;      

    Hi,
    You want to have a cell in the JTable with a JTextfield and a JScrollBar??? Can you specify and put the source code enclose in   JRG

  • Help urgently needed: bizarre problem - no audio in imported clip!

    Hey there!
    I have a bizarre - never the less urgent problem:
    When I import some material (presentations) which I have recorded on Mini DV with my Canon MVX10i Camcorder the following problem occurs:
    There is one particular presentation which somehow looses the audio during the import process!
    That means the imported clip has no audio even though the audfio is on tape! Other clips before and after do not have this problem - the audio is available after the import.
    A bizarre but serious problem for me. Any suggestions?
    Thanks a lot in advance
    Thorge

    I had a similar problem. When I started the tape from the beginning no audio would import. To solve it I started the tape a few seconds in and It seemed to work.
    Hope this helps.

  • Help urgently needed: Iphone 5 update error

    I went into system settings to update my iphone 5 to the newer verzion of ios 7 and instead of starting the update when I clicked it, it went into recovery mode. I have so many valuble pictures on my phone I can't just restore it to factory defaults and lose all of them as well as videos. I have tried holding the on/off button and the home button for 15 seconds and it just keeps going back to the same screen. Please, please, please help. I also can't get help directly from apple this night since I cannot get into my phone to get the serial number. Please, any help is greatly appreciated.

    I am in the same situation as the original poster.  I am trying to restore the device, but my iTunes says it is downloading the software update (although it shows when my phone is *not* plugged in that the download was completed). When the "download" is not yet complete, I get a message telling me there was a problem downloading the software for the phone because the network connection failed, even though there is no problem with my wifi.  I occasionally get the random message: "iTunes has detected an iPhone in recovery mode.  you must restore this iPhone before it can be used with iTunes." I need to point out that the message is randomly received *as* I am downloading the software update to restore it.
    This is the third attempt at restoring the phone, so any advice to make this work is appreciated.

  • HELP urgently needed-software update question

    Hi.
    Just installed (20/10/12) latest updates for OSX10.7 Including printer update, Java update (removal) and osx bundle update. Upon restart, the computer won't recognise my password. It wasn't a misstype, I've tried it several times. Not quite sure what's going on. All was fine until I did the update. Any possibility I've been hacked and what's the chance my computer now has key logging on it (worried about going into admin account to check any probs).  Worried this is to do with Java somehow. I'm really security conscious (have now changed all passwords for all accounts and am accessing this from parents computer which is Java free)
    Please help, I'm moving house at the moment and really need my macbook operational!
    Yours desperately
    Kaz

    It just means that you have the latest available updates installed. If any new update is released for your phone's product code, it will automatically show on Ovi Suite if you are connected to the internet.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Help urgently needed...about buttons!

    Hey guys!
    Was wondering if someone could help me out here.
    I have a selection of buttons that once clicked will play an animation. You can see what I mean by visiting my link below!
    http://robshaw.me/test/UB/AS3-535-3.html
    I only want one button to raise at a time and when you click another button the one that has already raised animates back down and the new button clicked raises up.
    I have been told that I only need three functions.
    Could anyone please please please tell me how to go about this?
    Thankyou so much in advance!
    _Rob

    Nope, no need to juggle listeners...
    var selectedMC:MovieClip = null;
    var allowPlay:Boolean = true;
    function sharedPlay(evt:MouseEvent):void {
         if(allowPlay){
             allowPlay = false;
             if(selectedMC != null){ // deal with previous selected mc
                  selectedMC.play();
             selectedMC = MovieClip(evt.currentTarget.parent);  // process current
             selectedMC.play();
    and in your movieclips in the animation stop frame you can use something like...
    MovieClip(parent).allowPlay = true;

Maybe you are looking for