Adding Multi-Window Slideshow

I have four images on the home page of this site. I want each
of these to be its own slide show independent of the other. Here is
the page:
http://test.worldwideflavorsllc.com
This is my first website so please bear with me. I was
referred to the following script to make the slide shows happen:
http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm
1. Does anyone know of an easier script to accomplish what I
want, preferable Freeware?
2. I've read the directions and I'm confused as to how I
direct the script to the locations on the page where I want it to
function.
I've never done this before and this is my first web page,
and I'm still learning DW8 so please dumb answers WAY down for me.
Thank you

> 1. Does anyone know of an easier script to accomplish
what I want,
> preferable
> Freeware?
Any 'freeware' will test your skill. You won't do better than
the offerings
at
http://www.projectseven.com/.
And the user interface and user support is
legendary.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Fugasi" <[email protected]> wrote in
message
news:gl56ve$3mn$[email protected]..
>I have four images on the home page of this site. I want
each of these to
>be
> its own slide show independent of the other. Here is the
page:
>
>
http://test.worldwideflavorsllc.com
>
> This is my first website so please bear with me. I was
referred to the
> following script to make the slide shows happen:
>
>
http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm
>
> 1. Does anyone know of an easier script to accomplish
what I want,
> preferable
> Freeware?
> 2. I've read the directions and I'm confused as to how I
direct the script
> to
> the locations on the page where I want it to function.
>
> I've never done this before and this is my first web
page, and I'm still
> learning DW8 so please dumb answers WAY down for me.
>
> Thank you
>

Similar Messages

  • New firefox 10.0 wont let me open mult windows, only tabs

    new firefox 10.0 wont let me open mult windows, only tabs. I have looked at tools/options/tabs and the open new windows in tabs is not clicked. have rebooted computer with no better results

    That issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Adding a window to container error

    I have this table that I want to add to a my main program.
    The table works but when I add the table module to the main program I get an error.
    Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: adding a window to a container
    This is the table program
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.io.*;
    public class TableSave extends JFrame
         private JTable table;
         public TableSave()
              String[] columnNames = { "Depth", "Density"};
              Object[][] data =
              table = new JTable(data, columnNames)
                   //  Returning the Class of each column will allow different
                   //  renderers to be used based on Class
                   public Class getColumnClass(int column)
                        return getValueAt(0, column).getClass();
              table.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
              table.setPreferredScrollableViewportSize(table.getPreferredSize());
              JScrollPane scrollPane = new JScrollPane( table );
              getContentPane().add( scrollPane );
              //  Save table to file button.
              //  Actually the code only prints out the data,
              //  its up to you to modify the code to write it to a file
              JButton button2 = new JButton( "Save Table to File" );
              button2.addActionListener( new ActionListener()
                  JFileChooser fc=new JFileChooser(System.getProperty("user.dir"));
                        //show dialog
                   public void actionPerformed(ActionEvent e)
                        int rows = table.getRowCount();
                        int columns = table.getColumnCount();
                        //  Write out the Column Headers
                        TableColumnModel header = table.getColumnModel();
                        for (int k = 0; k < columns; k++)
                             TableColumn column = header.getColumn(k);
                             String value = (String)column.getHeaderValue();
                             //System.out.print( value );
                             //System.out.print( "|" );
                        //System.out.println();
                        //  Write out the table data
                   try{
                        int fd = fc.showSaveDialog(TableSave.this);
                       if(fd==JFileChooser.APPROVE_OPTION){
                             FileOutputStream fo=new FileOutputStream(fc.getSelectedFile());
                             PrintStream ps=new PrintStream(fo);
                        for (int j = 0; j < rows; j++)
                             for (int k = 0; k < columns; k++)
                                  Object value = table.getModel().getValueAt(j, k);
                                  ps.println(value.toString() );
                                  //System.out.print( value.toString() );
                                  //System.out.print( "|" );
                          }//System.out.println();
                     }catch(Exception ex){}
              getContentPane().add(button2, BorderLayout.SOUTH);
         public static void main(String[] args)
              TableSave frame = new TableSave();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setVisible(true);
    }then I add it to the main program as follows
    public void actionPerformed (ActionEvent event)
            // Determine which object was the source of the event.
            Object source = event.getSource ();
          else if (source == menuSheet)
              count2++;
              JInternalFrame f = new JInternalFrame("mass/Density"+count2);
                f.setResizable(true);
              f.setClosable(true);
              f.setMaximizable(true);
              f.setIconifiable(true);
              f.setSize(270,420);
              f.setLocation(count2*15,count2*15);
              f.addInternalFrameListener(this);
              f.setVisible(true);
              frame.getContentPane().add(f);
                tablesave = new TableSave();
                Container pane = f.getContentPane ();
            pane.setLayout (new BorderLayout());
            pane.add (tablesave, BorderLayout.CENTER);
    Help me resolve this or offer a solution to this problem.
    regards,
    moi

    Hi there,
    Both Internal Frames and Jframe are containers.
    Jframe is a heavy weight component which you are trying to add in a lightweight internal Frame component, hence the error.
    You try having the table implementation which is just a JTable and not a Jframe (You are currently extending from JFrame), then it will work out.
    Cheers
    Ravi Sinha

  • Adding a window to a container: Error

    Hello there,
    Im facing a problem with my program.My program is about a Car Rental System and I am using GUI for the interface. From the main(CarRental) program,when user click one of the menu, there is another interface will appear for user to enter details.The problem is,my main (CarRental)program is running,click the first menu,then another interface open,but wen user enter details n click buttons , it is not even working. Below is my program:
    //This is main menu program
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import javax.swing.JFrame;
    public class CarRental extends JFrame implements ActionListener{
         JFrame f;
         JLabel l1,l2,l3,choice;
         JPanel p1,p2,p3,p4,p5,p6,p7,p8,p9;
         JButton btnA,btnB,btnC,btnD,btnE,btnF;
         Connection conn;
         Statement stmt;
         ResultSet rs;
         public CarRental(){
              p1=new JPanel();p2=new JPanel();p3=new JPanel();
              p4=new JPanel();p5=new JPanel();p6=new JPanel();
              p7=new JPanel();p8=new JPanel();p9=new JPanel();
              f=new JFrame("New Rental Record");
              l1=new JLabel("........::: Car Rental System :::.........");
              l2=new JLabel("*******************************************************");
              choice=new JLabel("Please select your option:");
              btnA=new JButton("[1] New Rental Record");
              btnB=new JButton("[2] Update Rental Record");
              btnC=new JButton("[3] Search Rental Record");
              btnD=new JButton("[4] Delete Rental Record");
              btnE=new JButton("[5] Display Rental record");
              btnF=new JButton("[6] Exit");
              l3=new JLabel("*******************************************************");
              f.setLayout(new GridLayout(10,1));
              f.pack();
              f.setVisible(true);
              f.setSize(350,500);
              f.setBackground(Color.white);
              p1.add(l1);f.add(p1);
              p2.add(l2);f.add(p2);
              p3.add(choice);f.add(p3);
              p4.add(btnA);f.add(p4);
              p5.add(btnB);f.add(p5);
              p6.add(btnC);f.add(p6);
              p7.add(btnD);f.add(p7);
              p8.add(btnE);f.add(p8);
              p9.add(btnF);f.add(p9);
              btnA.addActionListener(this);
              btnB.addActionListener(this);
              btnC.addActionListener(this);
              btnD.addActionListener(this);
              btnE.addActionListener(this);
              btnF.addActionListener(this);
         f.addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e)
                        {System.exit(0);}});
              public void actionPerformed(ActionEvent e){
                        if(e.getSource()== btnA)
                        {     NewRecord nr=new NewRecord();}
                         else if(e.getSource()== btnB)
                        {     updateRecord ur=new updateRecord();}
                        else if(e.getSource()== btnC)
                        {     searchRecord sr=new searchRecord(); }
                        else if(e.getSource()== btnD)
                        {     deleteRecord dr=new deleteRecord(); }
                        else if(e.getSource()== btnE){
                             try{
                                  Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                             catch(ClassNotFoundException e3) {
                                  JOptionPane.showMessageDialog(null,"ERROR:"+e3.getMessage());
                             try{
                                  conn=DriverManager.getConnection("Jdbc:Odbc:Car Rental", "", "");
                                  stmt=conn.createStatement();
                                  rs=stmt.executeQuery("Select * from Customer where CustID");
    String s=("CustID:   CustName:    CustAdd:          CustPhone:       No.of days rent:     Rate per rental: \n");
    while(rs.next())
    s=s+rs.getString(1)+"             "+rs.getString(2)+"              "+rs.getString(3)+"              "+rs.getString(4)+"                    "+rs.getString(5)+"                     "+rs.getString(6)+"\n";
                                       JOptionPane.showMessageDialog(null,s);}
    catch(SQLException e4){e4.printStackTrace();}}//end of F
    //to exit the program                    
    else if(e.getSource()== btnF){
    JOptionPane.showMessageDialog(null,"Thank you");System.exit(0);}
    else
    JOptionPane.showMessageDialog(null,"Invalid Option!");System.exit(0);
                   }//end of if statement
    public static void main(String args[]){
              CarRental cr= new CarRental();}//end of main
    }//end of main menu
    //New Rental program when user selects it
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    public class NewRecord extends JFrame implements ActionListener{
         JFrame f;
         Container c;
         FlowLayout layout;
         JLabel l1,l2,custId,custName,custAdd,custPhone,dayRent,rateRent;
    JTextField tid,tname,tphone,tday,trate;
                                  JTextArea tadd;
                                  JButton save,clear,exit;
                                  Connection conn;
                                  Statement stmt;
                                  ResultSet rs;
                                  JPanel p1,p2,p3,p4,p5,p6,p7,p8,p9,p10,p11;
                             public NewRecord(){
                                //super("New Record");
                                  layout = new FlowLayout();
                                  c=getContentPane();
                                  c.setLayout(layout);
                                  p1=new JPanel();p2=new JPanel();p3=new JPanel();
                                  p4=new JPanel();p5=new JPanel();p6=new JPanel();
                                  p7=new JPanel();p8=new JPanel();p9=new JPanel();
                                  p10=new JPanel();p11=new JPanel();
                                  f=new JFrame();     
                                  l1=new JLabel("........::: New Rental Record :::.........");
                                  l2=new JLabel("*******************************************************");
                                  custId =new JLabel("Customer ID:");
                                  custName=new JLabel("Customer name:");
                                  custAdd=new JLabel("Customer address:");
                                  custPhone=new JLabel("Customer phone:");
                                  dayRent=new JLabel("Days of rental:");
                                  rateRent=new JLabel("Rate per rental:");
                                  tid= new JTextField(10);
                                  tname=new JTextField(10);
                                  tphone=new JTextField(10);
                                  tadd=new JTextArea(4,30);
                                  tday=new JTextField(5);
                                  trate=new JTextField(10);
                                  save=new JButton("SAVE");
                                  clear=new JButton("CLEAR");
                                  exit=new JButton("EXIT");
                                  f.setLayout(new GridLayout(11,1));
                                  f.setBackground(Color.white);
                                  f.setVisible(true);
                                  f.setSize(600,600);
                                  p1.add(l1);f.add(p1);
                                  p2.add(l2);f.add(p2);
                                  p3.add(custId);p3.add(tid);f.add(p3);     
                                  p4.add(custName);p4.add(tname);f.add(p4);
                                  p5.add(custAdd);p5.add(tadd);f.add(p5);
                                  p6.add(custPhone);p6.add(tphone);f.add(p6);                         
                                  p7.add(dayRent);p7.add(tday);f.add(p7);
                                  p8.add(rateRent);p8.add(trate);f.add(p8);
                                  p9.add(save);f.add(p9);
                                  p10.add(clear);f.add(p10);
                                  p11.add(exit);f.add(p11);
                             /*     f.add(l1);
                                  f.add(l2);
                                  f.add(custId);
                                  f.add(tid);
                                  f.add(custName);
                                  f.add(tname);
                                  f.add(custAdd);
                                  f.add(tadd);
                                  f.add(custPhone);
                                  f.add(tphone);
                                  f.add(dayRent);
                                  f.add(tday);
                                  f.add(rateRent);
                                  f.add(trate);
                                  f.add(save);
                                  f.add(clear);
                                  f.add(exit);*/
                                  c.add(f);
                                  save.addActionListener(this);
                                  clear.addActionListener(this);
                                  exit.addActionListener(this);
                                  f.addWindowListener(new WindowAdapter(){
                                  public void windowClosing(WindowEvent e)
                                       {System.exit(0);}});
                             public void actionPerformed(ActionEvent e){
                                  if(e.getSource()== exit)
                                       {System.exit(0);}
                                  if(e.getSource()== clear){
                                       tid.setText("");
                                       tname.setText("");
                                       tadd.setText("");
                                       tphone.setText("");
                                       tday.setText("");
                                       trate.setText("");}
                                  if(e.getSource()== save){
                                       try{
                                            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                                       catch(ClassNotFoundException e1) {
                                            JOptionPane.showMessageDialog(null,"ERROR:"+e1.getMessage());
                                       try{
                                            conn=DriverManager.getConnection("Jdbc:Odbc:Car Rental", "", "");
                                            stmt=conn.createStatement();
                                            rs=stmt.executeQuery("Select * from Customer");
                                            while(rs.next()){
                                            tid.setText(rs.getString(1));
                                            tname.setText(rs.getString(2));
                                            tadd.setText(rs.getString(3));
                                            tphone.setText(rs.getString(4));
                                            tday.setText(rs.getString(5));
                                            trate.setText(rs.getString(6));}
                                            String s=("CustID:   CustName:    CustAdd:          CustPhone:       No.of days rent:     Rate per rental: \n");
                                            while(rs.next())
                                            s=s+rs.getString(1)+"             "+rs.getString(2)+"              "+rs.getString(3)+"              "+rs.getString(4)+"                    "+rs.getString(5)+"                     "+rs.getString(6)+"\n";
                                                 JOptionPane.showMessageDialog(null,s);
                                       catch(SQLException e2){
                                                 e2.printStackTrace();
                             public static void main(String args[]){
                                       NewRecord nr=new NewRecord();
                                  //     nr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                                       }//end of newRecord class
                                  }//ends of New rental program
    I tried to use extending to JPanel or JApplet but still the same. Any help??

    Hi,
    In the NewRecord java file, use change the
    f = new JFrame();               
    c = f.getContentPane();, after that all panel add into the container
    p1.add(l1);c.add(p1);                    
    p2.add(l2);c.add(p2);
    p3.add(custId);p3.add(tid);c.add(p3);     
    p4.add(custName);p4.add(tname);c.add(p4);
    p5.add(custAdd);p5.add(tadd);c.add(p5);
    p6.add(custPhone);p6.add(tphone);c.add(p6);          
    p7.add(dayRent);p7.add(tday);c.add(p7);
    p8.add(rateRent);p8.add(trate);c.add(p8);
    p9.add(save);c.add(p9);
    p10.add(clear);c.add(p10);
    p11.add(exit);c.add(p11);and finally remove this line below
    //c.add(f);Try to avoid add frame into the container, or else you will receive adding a window to a container error.
    Rgrds,
    Sen
    Message was edited by:
    arjensen

  • PNG files sent to iphone Photo App do not appear on 'date taken' (manually added in windows explorer)

    I have over 1000 PNG files that do not have exif 'date taken'. They only have exif 'date created or modified'
    The 'date created/modified' is not the actual date that I took the screen shots.
    I added the 'date taken' manually in windows explorer. However, it seems that this does not write this data into the exif 'date taken' which remains blank.
    When I transfer the PNG file from the PC to IPhone Photo App, it does not appear on the 'date taken' (that I added manually) but appears on the exif 'date created or modified'.
    Interestingly, when I do same as above but with JPG file, it does show up correctly based on the 'date taken' (that I added manually in windows explorer).
    So I converted the PNG file to JPG using one of the online tools. However, when I do this, the converted file does not retain the 'date taken'.
    I can fix the above by:
    1.  Use Paint to save the PNG file as JPG; this retains the 'date taken' but this is not the solution I am looking for as I would need to do this for each file (there is no bulk 'save as' in Paint)
    2. Use a file conversion tool to bulk convert from PNG to JPG; but again this is not solution, as I would have to manually add the 'date taken' in windows explorer to each JPG file
    Alternatively, I tried to rename the file name to include the 'date taken' and then use an exif date changer app to set the xhif dates based on file name.
    However, I was not able to find any software that would allow me to do this. The software that I have seen only picks up the 'date taken' from file EXIF data. But in my case there is no such data in the file - only the 'date taken' that I manually added in Windows Explorer.
    Any advice is appreciated. All I want to do is transfer PNG files from PC to Iphone Photo app and have these files appear in Photo app based on the 'date taken' (the one I manually added in windows - not the date taken in exif data).

    Have you touched the "More" button (on the iPhone).
    then gone to Audio Books.
    Are they there?
    I had an audio book still on my iphone, it survivedf the iOS5 update.
    To get rid of it, I plugged iPhone into Mac,
    Go to itunes.
    Click on Iphone in iTunes.
    Go to Books tab,
    Scroll down, there is audio books.
    Choose sync selected audio books,
    And untick the ones I don;t want.
    Dows this work for you?

  • How can i use multi-windows technology in JAVA

    I am developing a java application with JBuilder4, and now i want to make a multi-window application,which can be created dynamically, also the window can contain the button and line drawing i need.
    Please reply in detail because of my first learning java, thanks.

    You can try JInternalFrame, here is the tutorial:
    http://java.sun.com/docs/books/tutorial/uiswing/components/internalframe.html
    Good Luck!

  • Popup parenting issues in multi window

    Hello folks,
    I have a multi-window AIR application - there is one base
    application window, but we currently hide that and use mx:Window
    for all of our application windows. The application allows you to
    open new windows to enable easy drag and drop between different
    areas of content in the app. We use the addPopup method to display
    a custom editor control when working a specific content item. That
    means that you could have multiple windows open and each one
    displaying it's own popup to edit an item that the user if viewing
    in the window. 60% or so of the time, the popups work fine and
    parent to the proper window, but the other 40% of the time, the
    popup will parent to a different window. (I can post a link to a
    screencast demonstrating the behavior).
    The custom editor class has the following method, this is
    called to bring up the editor window. We cache these editors,
    following the advice for memory management by Sean Christmann and
    others.
    public function showOnView(view:UIComponent, mobj:*):void {
    PopUpManager.addPopUp(this, view as DisplayObject, true);
    PopUpManager.centerPopUp(this);
    callLater(_finishShowOnView, [view, mobj]);
    The _finishShowOnView method makes sure the instance of the
    editor is pointing to right model object. None of that touches the
    parent of the popup though.
    Anyone have any thoughts?
    - Brian

    Popup describe is case-sensitiveI haven't had a case sensitivity problem with the pop-up describe - where it works, it works if the name in the code is in either upper or lower case (I am assuming the actual object name is uppercase). However, it still doesn't work properly for objects owned by another user - it only finds something owner by another user if the current user has a private synonym with the same name. Even then describing the synonym name pops up the table details and describing the table with owner prefix pops up the synonym details.
    Ctrl+up-arrow or Ctrl+down-arrow to replace the editor contents from the history is great, but there is no ability to change the shortcut in the accelerators preferenceI agree with the frustration of not being able to change the Ctrl+Up/Down short cuts, but we will have to wait until they can improve it.
    The SQL Worksheet window frequently loses it's syntax coloring ...I haven't had problems with that
    There is no preference setting to control the starting point in the file system for File/Open or File/Save As...The File Open does remember the last four (?) directories that you have opened files from as short cuts, but being able to force it to open a specific directory by default would be good. The preference that Raghu mentioned is the directory where it looks for scripts when running them, rather than opening a file.
    Explore Directory from the Files tab tree doesn't seem to start from where you try to "explore"Like Raghu, I don't know what you mean by Explore Directory
    theFurryOne

  • How to open multi-windows to operate a remote compute using socket

    hi, please help me.
    I want to develop a program, it can open multi-windows to operate the remote comput at one time just like NetTerm. It use socket to setup connection with remote computer.
    Now I am using a Thread class to setup socket connection with computer, and use Thread's static varible to control all kinds of action of socket.But it can work only when openning one window,because all the thread instances share the same static variable.
    How to do it? Not using Thread? Then the frame will be frozen.
    All adivse are welcomed.Thank you.

    Maybe I don't say it clearly.The program need to show the output of the socket in the JTextArea and transfer the user input to the input of the socket to control the remote computer.

  • Small window slideshow?

    Hi,
    I've wanted to create a small window slideshow, instead of a full screen one.
    Is there a way to do this w/iPhoto 4.0.3, Quicktime or some other Application,
    or freeware/shareware?
    Thanks,
    L+

    Sure... Just export (or share) the slide show to QuickTime from iPhoto's File menu. Choose the size window you prefer in the resulting dialog.

  • Adding a Windows 8/2012 KMS key to a 2008 R2 KMS server.

    Hello,
    I have my KMS keys for Windows 8/2012.  Can these be added to a 2008 R2 KMS server or is there a document that details this?
    Shawn

    yes, There is a separate hotfix for Win 8.1 and 2012 R2.
    kb#2885698
    I have been successful install the hotfix, rebooting, and then adding the 2012 r2 key. I am still unsuccessful adding the windows 8/8.1 keys. Receiving the error: 
    kb#2752119
    which tells me that it doesn't like the hotfix... but you can give it a shot! 
    Other forums say that that the 2012 r2 key will activation windows 8.1, but i am still unsuccessful in activating my workstation.
    The WS2012R2 KMShost product key *will* successfully issue activations for Win8.1, but note that you must have 25 KMSclients communicating to a KMShost, for a "Client" OS edition to KMS-activate.
    You cannot install the Win8.1 KMShost product key on a Windows Server OS - you must use the Windows Server KMShost product key if your KMShost OS is Windows Server.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Why not release multi window app and snote type

    If you are not release multi window app like samsung note 10.1, in future you will be closed your apple products. This is not my opinion it is the public opinion

    When will release

  • Does ios5 supports multi-window ?

    I want to use multi-window in my ios application.Is it possible?

    Like this?
    http://i1224.photobucket.com/albums/ee374/Diavonex/a15661cf.jpg

  • Why was multi window support removef?

    when multi window came in on galaxy s3 firefox was very quick to support. why did they then remove it

    its bug
    *https://bugzilla.mozilla.org/show_bug.cgi?id=854040

  • Edit multi-window tab

    How can I add additional apps to my multi-window tab. (In addition to those available on the expanded edit tab)

    coachk23,
    I love the multi window feature on the Samsung's devices! The good news is that the feature is still available.  You can enable the feature by tapping and holding the back key on your phone for a few seconds. You can also drag down your notification bar, tap the boxes in the top right corner and select Multi Window to enable. Let us know if you still need any assistance!
    TrevorC_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Multi window feature has gone

    I updated the firefox mobile for Android and as a consequence firefox icon was removed from my galaxy note 2 multi window tray. Is there any method to get this feature back? If not can I reinstall a firefox version that supports this feature?
    Note: I've already tried Firefox 21.0 BETA version. There is no change.

    I've just found out that the developers have removed this because an user reported some icons that appear on screen can block some pixels if application. However, that is ridiculous to remove it. If so , the user must turn multi window feature off. There was no need to remove it.

Maybe you are looking for

  • Help Needed in resolving problems with Hyperion Planning Web Forms

    Hi,Can anyone help me with this problem?Problem:We are running Planning 2.3.1 I have created Webform & security(application owner has the ownership).Somehow Iam getting only 7 dimensions into webform & 1 dimension is missing in that. But whereas 8 di

  • Down Payment Request not being listed on F110

    Hi Guys I have completed down payment config for Sp GL indicator A and F. I have set up the recon accounts and allocated the required SP GL indicator to the paying company code. I have posted a down payment request. The open item credit is lying agai

  • The workflow could not check out the list item.

    Hi Guys, I have a workflow enabled on document library and it needs to started manually. Whenever user starts workflow manually, gets following error: "the workflow could not check out the list item. Make sure the list item is not checked out." lis

  • How to use many submit buttons in an one html form

    I'm doing a simple program to insert, edit, delete data from a web page to an database but the problem is that in an html form , you are allowed to put only 1 submit button. I heard that you can take the action of many buttons, for a one form using j

  • [SOLVED] mplayer-svn won't compile

    Wanted to try one application that needs svn version of mplayer to run. Well, i'm not able to compile it liba52/imdct_3dnow.h:289: error: can't find a register in class 'GENERAL_REGS' while reloading 'asm' liba52/imdct_3dnow.h:257: error: can't find