Please help - Problem with loading swf's (running very slowly)

Hi
I have posted this problem up in the last few days so I built a quick demo of my problem. Can somebody please download it and take a look at it and see what I'm doing wrong?
You can download it here at:
http://www.bounceworld.ie/download/Demo_Test.zip
The external swf's when loaded.....run very very slow; sometimes unresponsive as if there is a script running in the background. I'm using keyboard commands to navigate through the screens - eg:
on (keyPress "<Space>") {
gotoAndStop("scene02", "firstframeLabel");
Thank you for your help!!!!

Hi
I'm trying to use Key Listeners to solve my problem.
I don't know much about key liseners so can somebody help me out.
I have the following on a keyframe yet it still wont jump to the certain frames when I press the relevent keys. Am I missing something?
stop();
KeyListener = new Object();
KeyListener.onKeyDown = function() {
if (Key.getAscii() == 38) {  // UP key
gotoAndStop(89);}
if (Key.getAscii() == 40) {  // DOWN key
gotoAndStop(91);}
if (Key.getAscii() == 37)  // LEFT key
gotoAndStop(88);}
if (Key.getAscii() == 32) {  // SPACEBAR key
loadMovie("application_01.swf", "container");}

Similar Messages

  • Premiere Pro CS5: please help problem with importing a file error output "there was an error decompressing audio or video"

    please help problem with importing a file error output "there was an error decompressing audio or video"

    this is related to what adobe program/version?

  • Please help me with the following two questions, very urgent

    Hi All,
    Please help me with some scenerios about what are the common problems when modifying a standard script such a standard Invoice script and how can we overcome them.
    What are the common problems encountered when working with SAP SMARTFORMS and how to overcome them?
    Please help me with these questions, its very urgent.
    Thanks in advance.
    MD.

    hi
    hope it will help you.
    reward if ehlp.
    How to create a New smartfrom, it is having step by step procedure
    http://sap.niraj.tripod.com/id67.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Here is the procedure
    1. Create a new smartforms
    Transaction code SMARTFORMS
    Create new smartforms call ZSMART
    2. Define looping process for internal table
    Pages and windows
    First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
    Here, you can specify your title and page numbering
    &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
    Main windows -> TABLE -> DATA
    In the Loop section, tick Internal table and fill in
    ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
    Global settings :
    Form interface
    Variable name Type assignment Reference type
    ITAB1 TYPE Table Structure
    Global definitions
    Variable name Type assignment Reference type
    ITAB2 TYPE Table Structure
    4. To display the data in the form
    Make used of the Table Painter and declare the Line Type in Tabstrips Table
    e.g. HD_GEN for printing header details,
    IT_GEN for printing data details.
    You have to specify the Line Type in your Text elements in the Tabstrips Output options.
    Tick the New Line and specify the Line Type for outputting the data.
    Declare your output fields in Text elements
    Tabstrips - Output Options
    For different fonts use this Style : IDWTCERTSTYLE
    For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming
    http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
    INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
    MOVE-CORRESPONDING MKPF TO INT_MKPF.
    APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZSMARTFORM'
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    FM_NAME = FM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    if sy-subrc <> 0.
    WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    GS_MKPF = INT_MKPF
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Smartform
    you can check this link here you can see the steps and you can do it the same by looking at it..
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    SMARTFORMS STEPS.
    1. In Tcode se11 Create a structure(struct) same like the Internal table that you are going to use in your report.
    2. Create Table type(t_struct) of stracture in se11.
    3. In your program declare Internal table(Itab) type table of structure(struct).
    4. Define work area(wa) like line of internal table.
    5. Open Tcode Smartforms
    6. In form Global setting , forminterface Import parameter define Internal table(Itab) like table type of stracture(t_struct).
    7. In form Global setting , Global definitions , in Global data define Work area(wa) like type stracture(struct).
    8. In form pages and window, create Page node by default Page1 is available.
    9. In page node you can create numbers of secondary window. But in form there is only one Main window.
    10. By right click on page you can create windows or Go to Edit, Node, Create.
    11. After creating the window right click on window create table for displaying the data that you are passing through internal table.
    12. In the table Data parameter, loop internal internal table (Itab) into work area(wa).
    13. In table there are three areas Header, Main Area, Footer.
    14. Right click on the Main area create table line by default line type1 is there select it.
    15. Divide line into cells according to your need then for each cell create Text node.
    16. In text node general attribute. Write down fields of your work area(wa) or write any thing you want to display.
    17. Save form and activate it.
    18. Then go to Environment, function module name, there you get the name of function module copy it.
    19. In your program call the function module that you have copied from your form.
    20. In your program in exporting parameter of function pass the internal table(itab).
    SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms.
    SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can
    configure forms with data from an SAP System for the relevant business processes.
    To print a form, you need a program for data retrieval and a Smart Form that contains the entire from logic. As data retrieval and form logic are separated, you must only adapt the Smart Form if changes to the form logic are necessary. The application program passes the data via a function module interface to the Smart Form. When activating the Smart Form, the system automatically generates a function module. At runtime, the system processes this function module.
    You can insert static and dynamic tables. This includes line feeds in individual table cells, triggering events for table headings and subtotals, and sorting data before output.
    You can check individual nodes as well as the entire form and find any existing errors in the tree structure. The data flow analysis checks whether all fields (variables) have a defined value at the moment they are displayed.
    SAP Smart Forms allow you to include graphics, which you can display either as part of the form or as background graphics. You use background graphics to copy the layout of an existing (scanned) form or to lend forms a company-specific look. During printout, you can suppress the background graphic, if desired.
    SAP Smart Forms also support postage optimizing.
    Also read SAP Note No. 168368 - Smart Forms: New form tool in Release 4.6C
    What Transaction to start SAP Smart Forms?
    Execute transaction SMARTFORMS to start SAP Smart Forms.
    Key Benefits of SAP Smart Forms:
    SAP Smart Forms allows you to reduce considerably the implementation costs of mySAP.com solutions since forms can be adjusted in minimum time.
    You design a form using the graphical Form Painter and the graphical Table Painter. The form logic is represented by a hierarchy structure (tree structure) that consists of individual nodes, such as nodes for global settings, nodes for texts, nodes for output tables, or nodes for graphics.
    To make changes, use Drag & Drop, Copy & Paste, and select different attributes.
    These actions do not include writing of coding lines or using a Script language.
    Using your form description maintained in the Form Builder, Smart Forms generates a function module that encapsulates layout, content and form logic. So you do not need a group of function modules to print a form, but only one.
    For Web publishing, the system provides a generated XML output of the processed form.
    Smart Forms provides a data stream called XML for Smart Forms (XSF) to allow the use of 3rd party printing tools. XSF passes form content from R/3 to an external product without passing any layout information about the Smart Form.
    SmartForms System Fields
    Within a form you can use the field string SFSY with its system fields. During form processing the system replaces these fields with the corresponding values. The field values come from the SAP System or are results of the processing.
    System fields of Smart Forms
    &SFSY-DATE&
    Displays the date. You determine the display format in the user master record.
    &SFSY-TIME&
    Displays the time of day in the form HH:MM:SS.
    &SFSY-PAGE&
    Inserts the number of the current print page into the text. You determine the format of the page number (for example, Arabic, numeric) in the page node.
    &SFSY-FORMPAGES&
    Displays the total number of pages for the currently processed form. This allows you to include texts such as'Page x of y' into your output.
    &SFSY-JOBPAGES&
    Contains the total page number of all forms in the currently processed print request.
    &SFSY-WINDOWNAME&
    Contains the name of the current window (string in the Window field)
    &SFSY-PAGENAME&
    Contains the name of the current page (string in the Page field)
    &SFSY-PAGEBREAK&
    Is set to 'X' after a page break (either automatic [Page 7] or command-controlled [Page 46])
    &SFSY-MAINEND&
    Is set as soon as processing of the main window on the current page ends
    &SFSY-EXCEPTION&
    Contains the name of the raised exception. You must trigger your own exceptions, which you defined in the form interface, using the user_exception macro (syntax: user_exception <exception name >).
    Example Forms Available in Standard SAP R/3
    SF_EXAMPLE_01
    Simple example; invoice with table output of flight booking for one customer
    SF_EXAMPLE_02
    Similar to SF_EXAMPLE_01 but with subtotals
    SF_EXAMPLE_03
    Similar to SF_EXAMPLE_02, whereby several customers are selected in the application program; the form is called for each customer and all form outputs are included in an output request
    Advantages of SAP Smart Forms
    SAP Smart Forms have the following advantages:
    1. The adaption of forms is supported to a large extent by graphic tools for layout and logic, so that no programming knowledge is necessary (at least 90% of all adjustments). Therefore, power user forms can also make configurations for your business processes with data from an SAP system. Consultants are only required in special cases.
    2. Displaying table structures (dynamic framing of texts)
    3. Output of background graphics, for form design in particular the use of templates which were scanned.
    4. Colored output of texts
    5. User-friendly and integrated Form Painter for the graphical design of forms
    6. Graphical Table Painter for drawing tables
    7. Reusing Font and paragraph formats in forms (Smart Styles)
    8. Data interface in XML format (XML for Smart Forms, in short XSF)
    9. Form translation is supported by standard translation tools
    10. Flexible reuse of text modules
    11. HTML output of forms (Basis release 6.10)
    12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc. (Basis-Release 6.10)

  • Problem with loading swf

    Hi,
            I've an AIR application which is loading an swf file to swfloader. Its working properly when its running from builder. But not showing the swf file after exporting  it as an air installer package and run it on  desktop.The swf   file is stored in src itself.The swf file was generated using flash.
    Any help will be appreciated.
    Thanks in advance.

    Hi,
    It might be security issue.Air uses application sandbox.
    You are trying to load the content from non-application sand box to
    application sandbox.
    Any one of the following may give solution to this error.
    1.using HTMLLoader to load swf files.
    2.using loadbytes.
    3.creating sandboxbridge.
    You can check the loadbytes method in the attachment.
    vamshi.
    2009/10/5 newflexcoder <[email protected]>
    >
    Hi,
    >
            I've an AIR application which is loading an swf file to swfloader.
    Its working properly when its running from builder. But not showing the swf
    file after exporting  it as an air installer package and run it on
    desktop.The swf   file is stored in src itself.The swf file was generated
    using flash.
    >
    Any help will be appreciated.
    >
    Thanks in advance.
    >

  • Please Help-Problem with Optical Drive, it's a Mystery...

    Well I'm a fairly big Imogen Heap fan, and her new CD came out the 25th. So I went to Best Buy and I bought the deluxe version which includes a seperate disc with instrumentals. I got home, put it in, and my Mac made a "scratching" kind of noise, then it spit out the disc. I figured there was a problem with it, I went back to Best Buy, got a new one, and it did the exact same thing.
    HOWEVER, both of the instrumental discs worked just fine, and imported just fine. The normal audio disc also works on my Ubuntu computer, Windows computer, and my other Early 2009 Macbook Pro. I also restarted my Mac, cleaned the disc, and that did nothing.
    So, what's the problem do you think?
    (Also I went to Apple but there were no appointments available, and they were too busy to just look at it without an appointment )

    Hi Mate,
    I didn't do an OS install, I took it to an apple store and made a Genius Bar appointemnt. Explained the proble and after 15min conversation, they diagnosed it as teh following;
    The felt/rubber where you put the CD/DVD had gone hard and the friction is causing the CD/DVD to get stuck and be loaded. They tried to tell me that I need to replace the top case  (£140+VAT) as its in-built into it or I can use a £3 spudger to push the CD's in......needles to say the Spudger works fine.....Shame I wasted £100 on the new optical drive ;o( Maybe sell teh spare on eBay....Happy days!

  • Please help - problems with iPod Nano

    I saw a page in my Popular Science magazine and it had iPod Linux. So I went to the website installed it, and it worked!!! But the problem is , is that when I plug it in to my computer, it charges but won't show up as a drive. Please help!!!!!!!!!!!!!

    Even within the iPod Linux Project the Fifth Generation iPod and the Nano are unsupported hardware so you are pretty much on you own, however check these links out:
    iPod Linux Unsupported - What if Something Goes Wrong
    iPod Linux Project- My iPod is really messed up, how can I fix it?

  • Problems with my E63. Running incredibly slowly.

    Basically my E63 is running incredibly slowly and will not run any applications or even allow me to send a text. It allows me to make a phone call, but only if I type in the number from the main screen, which takes about 30 seconds to appear once ive typed it. Any ideas what the problem is?

    Okey, youre not able to open anything on it?
    I was thinking cleaning the browser cache, maybe deleting some messages etc, but it is impossible or what?
    If the phonememory is full, it could be that which is making your phone act so slow. If you havent any programs running (as you cannot open any) it shouldn't be lack of ram.
    What you could try is to soft reset your device, which in this case will wipe your phone memory deleting all installed apps, contacts, messages etc.
    Before doing this you should back up your belongings to e. g ovi suite or Nokia pc suite.
    I also suggest you buy a memory card. A smaller memory card is very cheap and it would take away a lot of problems related to phone memory as you can store pics, messages, videos, songs, a lot of apps etc, on it.

  • Please Help: problems with 2nd internal SATA drive on G5

    Hello everyone,
    I was transferring and deleting very large files from my main drive, a 2nd 250GB SATA internal drive, and an external 250GB FW800 drive recently (about 50GB worth of data transfered), and decided to run disk warrior and repair my permissions/verify disk in disk utilities once completed.
    Everything seemed fine until I verified my 2nd internal drive upon which I received the following error: "First Aid Failed" citing "Invalid node structure" and that the volume needs to be repaired. I attempted to Repair disk, though the process stops and I get the same error "Volume could not be repaired because of an error."
    This 2nd SATA drive only holds data (I'm a musician so it only holds sample data for streaming in Logic) but it contains allot of information (185GB used of 233GB) which according to my math comes out to about 80% used. This should be acceptable amount, correct? The drive also has Journaling enabled, though I'm not sure if its relevant or not.
    What should I do? The drive itself seems to be working fine, but why would disk utility have a problem reading/repairing it if its indeed fine. Should I be worried? The drive is probably no more than 2 years old, so it cant be drive failure yet, can it?
    Thanks in advance for any help you can provide!
    Update: I tried to graph the problem drive again in diskwarrior, and this time an error occurred! This obviously did not happen the first time I used diskwarrior to graph and build a new directory, so something must have happened recently. What could have happened? What should I do?
    Message was edited by: Jonathan Timpe

    This 2nd SATA drive only holds data (I'm a musician
    so it only holds sample data for streaming in Logic)
    but it contains allot of information (185GB used of
    233GB) which according to my math comes out to about
    80% used. This should be acceptable amount, correct?
    Yes, that's fine.
    The drive also has Journaling enabled, though I'm not
    sure if its relevant or not.
    Hmm, I think I once had a drive with a directory problem that couldn't be fixed with DiskWarrior without journaling being (temporarily) disabled. After disabling journaling, I used DiskWarrior to Rebuild the drive's directory, then I reenabled journaling.
    What should I do? The drive itself seems to be
    working fine, but why would disk utility have a
    problem reading/repairing it if its indeed fine.
    Should I be worried? The drive is probably no more
    than 2 years old, so it cant be drive failure yet,
    can it?
    I'm afraid it could be, I've had drives fail at any time between half a year after purchase up to 3 or more years after. Though often one hears the drive "die", or notices very slow performance due to bad blocks being weeded out, and the S.M.A.R.T. status - visible in Disk Utility (only for internal drives) in the bottom right, when you select a drive (not volume) is an indicator of a harddisk's health as well (though not the most complete, see this hint, or S.M.A.R.T. Guard).
    Update: I tried to graph the problem drive again in
    diskwarrior, and this time an error occurred! This
    obviously did not happen the first time I used
    diskwarrior to graph and build a new directory, so
    something must have happened recently.
    Did you try to repair anything with Disk Utility in the meantime?
    What could
    have happened? What should I do?
    So did the Repair with DiskWarrior not finish? What kind of error was it?
    In my experience, DiskWarrior mostly fixed any directory trouble. For more serious cases, see this thread.

  • Please help problem with GUI

    Hi
    I have two problems firstly when i try to assign a method to a button to a GUI
         JButton SetPrice = new JButton ("Set Price");
            contentPane.add( SetPrice);
             SetPrice.addActionListener(new ActionListener() {
                                   public void actionPerformed(ActionEvent e) {  SetPrice ();    }This is teh code i am using to set up teh button on teh display.Belwo is the method it should run.
    public double SetPrice( int price)
             if (price <= 199.9){
           Cost= price;
             return Cost;
            else {
              System.out.println ( "Set a price which is less than 199.9");
              return Cost; }
            }When i try to compile it comes up with when i comipile
    SetPrice (int) in Shop cannot be applied to ()The variable has type double.So pelase my someone show me how to make the action listener button run this method.
    Thanks

    JButton SetPrice = new JButton ("Set Price");
            contentPane.add( SetPrice);
             SetPrice.addActionListener(this);
    SetPrice.setActionCommand("setprice");
    public void actionPerformed(ActionEvent e) {
    String action=e.getActionCommand();
    if(action.equals("setprice") {
    //do something
        }

  • Please Help: Problems with erratic mouse

    I am running Snow Leopard 10.6.7 and just recently started experience erratic behaviour from my magic mouse. I have read countless forums that document this issue - its a known thing. It honestly drove me insane to the point that I completely formatted my 27" iMac and got back up to 10.6.7 - after installing the magic mouse software again, the SAME behaviour happened. I tried changing the channels at which my airport extreme broadcasts my wireless signal throughout the house - no luck.
    I even switched over to my wired keyboard and Mighty Mouse - and you wouldn't believe it, but I am also experience this subtle jerkiness with the mouse - the cursor will get laggy when dragging from side to side, or up and down - definitely noticeable since I have been using mac's for 6 years now. I am absolutely blown away by this sudden phenomenon and have no explanation for it. My desk surface is fine (since it worked for years before hand). Both lenses on the mice have been blown out by a dust blower, they are clean.
    I am about to lose my mind. Any ideas?

    I am having the same problem. It started about 2 weeks ago and it drives my completely nuts. Even my wired mouse does have a noticeable lag. I use a lot of Photoshop and jerkiness is very annoying and it slows me down.
    Anybody has an idea why this is happening?

  • Please help: problems with tutorial 'building advanced portals'

    hi there,
    i'm an absolute newbie with oracle portal and trying to work through the tutorials. a lot of questions arise...
    like this one:
    i've created a multi-tabbed region (chapter 3.4) and added a chart to each tab. So now i have a tab-bar on top-navigation-level and a tab-bar in this region. but they don't look the same and i can't find out, where to manipulate the style of the sublevel-region-tab.
    Can someone help, please?
    thank you very much
    Ralf Schmitt

    Ralf
    When you click on 'Edit Page' (top right hand corner) you should be able to edit both sets of tabs there and each individual tab properties.
    Darren

  • HT201240 PLEASE HELP PROBLEMS WITH MY MAX OSX 10.5.8

    Does anyone know how many chaaracter my mac password can be up to ? I forgot my password and my trackpad and mouse is broken so I can't use Command S to make a new one and I'm just trying to figure out what the password requirements were in 2010? any help would be much appreciated I have another macbook but I would really like to get the other one up and running again as a desktop with a mouse and keyboard. Thanks.

    edit: trackpad and keyboard don't work it took a fall two years ago when my girlfriend dropped it I can only start it using the s key after power up and after it turns on the keyboard and trackpad do not function.

  • PLEASE HELP - Problem with 2 column fixed template in Dreamweaver CS3

    I am trying to create a website using the 2 column fixed, right sidebar, header and footer html template in Dreamweaver CS3.  I tried putting a picture in the right side bar as well as with in the main content or left portion of the page, and neither picture is showing up when I view it in any of the browsers I'm using.
    I've made some minor changes in colors and sizing, but other than that no other changes.  The pic I put in for the header is showing up just fine though.
    Any help or advice to solve this issue would be greatly appreciated.
    Thanks!!

    Here is the base Dreamweaver code including the pic references that I'm trying to show on either side - when the browser opens, it only shows a blank space where the pics should be... let me know what you think.  Thanks!!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/AL TemplateNEW.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Temp Home</title>
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #666666;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    .twoColFixRtHdr #container {
    width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    background: #FFFFFF;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 1px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    .twoColFixRtHdr #header {
    background: #DDDDDD;
    padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    .twoColFixRtHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .twoColFixRtHdr #sidebar1 {
    float: right; /* since this element is floated, a width must be given */
    width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px;
    .twoColFixRtHdr #mainContent {
    margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
    padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    .twoColFixRtHdr #footer {
    padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#DDDDDD;
    .twoColFixRtHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    -->
    </style><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixRtHdr #sidebar1 { width: 220px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]--></head>
    <body class="twoColFixRtHdr">
    <div id="container">
      <div id="header">
        <h1>Header</h1>
      <!-- end #header --></div>
      <div id="sidebar1">
        <h3>Sidebar1 Content</h3>
        <!-- InstanceBeginEditable name="RightSideBar" -->
        <p>Right Side Bar Content - - -    </p>
        <p>Inserted pic below here</p>
        <p><img src="/images/Syntergy5.jpg" width="123" height="105" /></p>
        <p>The background color on this div will only show for the length of the content. If you'd like a dividing line instead, place a border on the right side of the #mainContent div if it will always contain more content. </p>
        <p>Donec eu mi sed turpis feugiat feugiat. Integer turpis arcu, pellentesque  eget, cursus et, fermentum ut, sapien. Fusce metus mi, eleifend  sollicitudin, molestie id, varius et, nibh. Donec nec libero.</p>
    <!-- InstanceEndEditable -->
        <p> </p>
      <!-- end #sidebar1 --></div>
      <div id="mainContent">
        <h1> Main Content </h1>
        <!-- InstanceBeginEditable name="MainContent" -->
        <p>Main Content - - </p>
        <p>inserted pic below here:</p>
        <p><img src="/images/Kelly1.jpg" width="285" height="236" /></p>
        <p> </p>
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent aliquam,  justo convallis luctus rutrum, erat nulla fermentum diam, at nonummy quam  ante ac quam. Maecenas urna purus, fermentum id, molestie in, commodo  porttitor, felis. Nam blandit quam ut lacus. Quisque ornare risus quis  ligula. Phasellus tristique purus a augue condimentum adipiscing. Aenean  sagittis. Etiam leo pede, rhoncus venenatis, tristique in, vulputate at,  odio. Donec et ipsum et sapien vehicula nonummy. Suspendisse potenti. Fusce  varius urna id quam. Sed neque mi, varius eget, tincidunt nec, suscipit id,  libero. In eget purus. Vestibulum ut nisl. Donec eu mi sed turpis feugiat  feugiat. Integer turpis arcu, pellentesque eget, cursus et, fermentum ut,  sapien. Fusce metus mi, eleifend sollicitudin, molestie id, varius et, nibh.  Donec nec libero. </p>
        <!-- InstanceEndEditable -->
        <p>
          <!-- end #mainContent -->
        </p>
      </div>
    <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
      <div id="footer">
        <p>Footer</p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    </body>
    <!-- InstanceEnd --></html>

  • Please help, problems with two different ipods

    Both my ipod and my sister's ipod are experiencing problems. Both ipod's are 4th gen with click wheel.
    My ipod isn't being recognized by itunes (I have the latest version) and only once in awhile will my computer recognize my ipod. I get a file showing my calender, notes, etc,.. I can't click on any of them though. When I connect my ipod to the usb cord and connect the cord to the computer, the ipod only just restart's itself.
    My sister's ipod does absolutely nothing except show the apple logo and then shut off. Earlier today it was displaying the exclamation mark and the folder icon and it once displayed the sad ipod icon.
    Does anyone here know what the problem is with these two ipod's and if there is a way that I can fix them?

    See these troubleshooting articles.
    My iPod is sad.
    iPod displays a "sad iPod" icon.
    What does this picture on my iPod mean?
    Also, there is a pretty comprehensive post written by another forum member which is about the sad iPod icon or the folder and ! icon. Be aware that it's quite involved and contains some info that will almost certainly void the warranty. If your iPod is still within the warranty period, you should use that option first.
    The Sad iPod/folder and ! icon.
    You can arrange online service here.
    Service request.

  • Please HELP / problem with Mac to PC migration

    Good afternoon,
    I have a 1TB WD mybook external HD to which I would like to copy large files like movies, music and pictures from my Mac and then connect it to my wife's PC and place it on her internal HD. With the HD being formated on my mac, I'm unable to migrate the files to her PC. I was wondering how to format the drive so that it would be able to read/write on both the Mac and PC. I have looked for answers on this discussion but I didn't find anything that applies directly to me.
    Much thanks in advance for your help

    Hi, heres a link:-
    http://forums.cnet.com/5208-6126_102-0.html?threadID=212870
    ...L

Maybe you are looking for