Problem with entering iframe adress

again this has to do with simple viewer. as when i paste the folder under my iDisk/Web/Sites/ how do i enter the correct adress into the page.html to find the index of the slideshow folder?

It would be better to put it in iDisk/Sites
Address would be homepage.mac.com/username/slideshowfoldername/index.html

Similar Messages

  • Keyboard problems with Enter, delete, backspace, and right/left arrows

    In some applications, such as Yahoo and this message block right now !!, when composing a message, the arrow keys and delete, backspace keys become non responsive. Various ones will work on a random basis.
    I am getting double "carriage returns" also. Maybe this is why in Omegle when I press ENTER, it will not post a chat message; it will bring up a scroll box and for me to post the comment, I have to use the mouse to click ENTER.
    I have changed batteries in my keyboard, uninstalled /reinstalled Firefox. I have checked the above websites in Chrome and other browsers, and there are no problems.
    This has happened before, I don't recall what the solution was or if it just went away.'''
    Affected sites -- at least these
    http://us.mg6.mail.yahoo.com/neo/launch?ncrumb=Fx5R4O7ccqb&.rand=1041364415&nmig=yes#
    http://omegle.com/
    https://support.mozilla.com/en-US/questions/new?product=beta&category=b2&search=Keyboard+problems+with+Enter%2C+delete%2C+backspace%2C+and+right%2Fleft+arrows&showform=1

    PROBLEM SOLVED: http://forum.archlinux-br.org/viewtopic.php?id=1257
    Solution posted on Brazilian Archlinux forum. Credits to user "920608".
    [cache]
    /etc/xorg.conf
    Section "Files"
             #RgbPath "/usr/X11R6/lib/X11/rgb"
    EndSection
    Section "ServerFlags"
               Option "AutoAddDevices" "False"
    EndSection
    C'ya

  • Problem with entering URL

    Ever since the last update or two I seem to have an irritating problem with entering URLs. If I'm navigating a site and modify the URL manually in the address field and hit enter, the URL reverts back automatically to the previous one instead of accepting the new modified entry.
    For example if I'm on www.site.com/path/path and go to the URL bar and remove the last '/path' and hit enter, the browser seems to 'remember' and take me to the previous URL path, i.e. www.site.com/path/path. It doesn't matter whether the deleted text forms part of the URL path or whether its parameters after the path, or even if I modify the URL to something like www.site.com/path/anotherpath.
    Once it starts 'remembering' there seems to be no way of getting around this except to close the browser down and start again. I've noticed this behavior on FF20.0.1 and also on FF21. It happens on all 3 of the PCs I use (2 at home, one at work). I'n not sure if its being caused directly by FF or the NoScript plugin (the latter seems unlikely).
    Is there a setting somewhere to modify this behavior, or is it a bug?

    i couldn't find any documentation for it either, however after testing it, it appears that when browser.urlbar.autoFill.typed is set to '''true''' it means that only addresses you've once typed into the url-bar manually get autofilled, when browser.urlbar.autoFill.typed is set to '''false''' then all addresses that are stored in your history no matter if you have typed them in once manually or visited them through a link on a website.
    browser.urlbar.autoFill will generally switch the autocomplete feature in the address bar on or off.

  • Problem with Enter key and JOptionPane in 1.4

    Hi,
    I had a problem with an application I was working on.
    In this application, pressing [Enter] anywhere within the focused window would submit the information entered into the form that was contained within the frame.
    The application would then try to validate the data. If it was found to be invalid, it would pop up a JOptionPane informing the user of that fact.
    By default, pressing [Enter] when a JOptionPane is up will activate the focused button (in most cases, the [OK] button) thus dismissing the dialog.
    In JDK 1.3 this worked fine. But in JDK 1.4, this has the result of dismissing the dialog and opping it up again. This is because the [Enter] key still works on the frame behind the JOptionPane and thus tries to validate it again, which results in another invalid dialog msg popping up.
    The only way to get out is to use the mouse or the Esc key.
    Now, in the application I put in a workaround that I was not very happy with. So, to make sure it wasn't the application itself, I created a test which demonstrates that it still misbehaves.
    Here it is.
    import java.awt.Container;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.AbstractAction;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JTextField;
    import javax.swing.KeyStroke;
    import javax.swing.UIManager;
    import javax.swing.UnsupportedLookAndFeelException;
    import javax.swing.WindowConstants;
    * @author avromf
    public class FocusProblemTest extends AbstractAction
         private static JFrame frame;
         public FocusProblemTest()
              super();
              putValue(NAME, "Test");
         public void actionPerformed(ActionEvent e)
              JOptionPane.showMessageDialog(frame, "This is a test.");
         public static void main(String[] args)
              FocusProblemTest action= new FocusProblemTest();
              try
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
              catch (Exception e)
                   e.printStackTrace();
              frame= new JFrame("Test");
              frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              Container contents= frame.getContentPane();
              contents.setLayout(new FlowLayout());
              JTextField field= new JTextField("Test");
              field.setColumns(30);
              JButton  button= new JButton(action);
              KeyStroke enterKey = KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0, true);
              button.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(enterKey, "test");
              button.getActionMap().put("test", action);
              contents.add(field);
              contents.add(button);
              frame.pack();
              frame.setVisible(true);
    }Does anyone have any solution to this problem?

    I know that focus management has changed alot.
    Based on my experimentation a while back, in 1.4 it still believes that the JFrame is the window in focus, even though a JOptionPane is currently in front of it (unless I misinterpreted what was going on). Thus, the frame seems to get the keyboard event and re-invoke the action.
    A.F.

  • Problem with entering data

    I have a windows Xp system with Microsoft SQL Server 2005 setup and using java 1.6
    I'm using the JDBC-ODBC Bridge and also setup the DSN and that works fine.
    The following code worked fine a few days back but now every time I enter a row of data and if the data type of a variable is varchar or char it enters the text followed by spaces.
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con=DriverManager.getConnection("jdbc:odbc:Mydata","myusername","mypassword"); PreparedStatement stat2=con.prepareStatement("insert into Login(vUserName,vPassword,vAddress,age) values(?,?,?,?)");         stat2.setString(1,textName.getText()); stat2.setString(2,textPass.getText()); stat2.setString(3,textAddress.getText()); stat2.setInt(4,Integer.parseInt(textAge.getText())); stat2.executeUpdate(); JOptionPane.showMessageDialog(frame,new String("Your details have been registered"));
    If I enter a name such as John in the textName field, when it updates the database, it adds spaces after John upto the max capacity. (The vUserName in the database is a VARCHAR(25) ).
    Could this be a problem with the odbc driver or the jdbc driver?
    P.S The username and password are bogus here.
    Thanks in advance
    Message was edited by:
    ArcherKing

    Howdy people! I've finally fixed the problem. I've cornered the b***ard. I thought of posting the solution here just in case some one else runs into the same problem and gets stuck.
    It is an option in the DSN setup of the ODBC driver.
    [url #" style="display: block;
    background-image:url('http://www.geocities.com/lijoethomas/sqlpadding.gif');
    width:509px; height: 354px]
    The picture above is one of the pages in the DSN setup for the sql server.
    If the ANSI nulls, padding and warning option is enabled it pads your VARCHAR's and[b] CHAR's with white space.
    VARCHAR's are supposed to be just the characters we enter.
    Foot note
    *** stands for "ast"
    Cheers ;)
    Message was edited by:
    ArcherKing

  • Problem with Enter Query

    Hi all,
    I'm facing a problem with the Enter_Query. The problem is when i press F7, all the details in a form (Except primary key i.e.., Document Reference) are cleared (After asking for Do you want to save the changes). When I try to do F8, It is searching for the same Document Reference. When I try to find out the error, I got the description as the function key is not allowed. The Document reference is not getting cleared unless i exit the form. I'm using Oracle 10g, Forms and Reports (6i Version).
    Regards,
    Alok Dubey

    Unless you are using a onetime only where clause then the DEFAULT_WHERE remains as it is a property of the block. This will not be cleared by an F7 unless you explicitly clear it by setting it to NULL.
    Or
    I've misunderstood what you say.
    Are you saying that you have an item that is not being cleared? If so is it on the same block as the one you are clearing?
    Message was edited by:
    MarkyMac

  • Problem with choseing email adresses from prompt.

    When I write an email and write somethink in box "to" i have prompt from my adress book. When I chose one of them (by clicking mouse) and push enter I always have first promt although I chose second or third.
    What Can I do with this? Do you have this problem too?
    I have the latest version of TB.

    This is a known bug and the developers are working on fixing this asap.
    * https://bugzilla.mozilla.org/show_bug.cgi?id=1107844
    If you use the 'Contacts sidebar' to add names in your address book to a TO field, then there is no problem.
    In a new Write message you can enable the 'Contacts sidebar'.
    'View' > select 'Contacts Sidebar' or toggle the view using''' f9''' key.
    Select the address book to show names.
    Select name(s) and click on 'Addto TO' button or one of the other options.

  • Problem with entering Discussions due to invalid cookie?

    Quite often, when trying to enter Discussions, while using Safari, I get the message: "…We're having a problem processing your login.   9: invalid cookie supplied Unknown status code: 9…". Some time later, without apparent reason, things are functioning fine again.
    Using Firefox did never show such problem.
    Why?
    and
    What to do (with Safari, other than trashing it)?

    Rather than reinvent the wheel, why not hack your way through the undergrowth of this thread:
    https://discussions.apple.com/thread/3069648?tstart=0
    which covers the issue in depth!

  • Problem with entering integer numbers from keyboard

    I have written this simple code:
    import java.io.*;
    public class Simple{
         public static void main(String[] args)throws Exception{
              System.out.println("Enter two integer numbers: ");
              BufferedReader enter=new BufferedReader(new InputStreamReader(System.in));
                   int first=Integer.parseInt(enter.readLine());
                   int second=Integer.parseInt(enter.readLine());
              System.out.println("Result is: "+(first+second));
    and it works fine if I type first number, press Enter, then type
    second number and press Enter.
    But if I type in one line: 2 3 (with space between) I get run-time error:
    Exception in thread "main"...bla...bla at java.lang.Integer.parseInt(Integer.java)...
    I know that error is coming from Integer.parseInt(string) in my code, but I
    don't know how can I avoid it.
    In C that is rather simple scanf("%d %d",&first,&second), but in Java it's much more
    complicated.
    Do you have any suggestions how to solve this problem?

    store the user input in a string
    use a StringTokenizer st
    then
    while(st.hasNext())
    int first=Integer.parseInt(st.nextToken());
    but you should really catch a NumberFormatException
    walker

  • I am having a big problem with entering search terms in Google

    Here is the problem. I enter several search terms and do a search. So far, so good.
    After I am finished clicking on one or more links I return to the Google search page to do a new search.
    Since most of the words are the same, except the last one or two, I backspace over the old words and start entering the new ones.
    Then very strange things happen much of the time.
    1. It may restore the old words (the ones I already backspaced over and erased) and put my new words behind the old ones.
    2. It may just restore the old words, that had been backspaced over, completely removing the new words I had just typed in.
    Any ideas why this keeps happening? Is it Google or Firefox causing the problem?
    It seems very strange that words that had been backspaced over (erased) magically reappear as if I hadn't removed them.
    Thank you.

    What is the problem?
    Does send work?
    Receive?
    Error messages?
    Does the account work on other devices?
    DId it ever work on an iOS device?
    Did yo Google for the setting to use?
    DId you delete the account on the iPod and tried again?

  • Problem with enter key in the quiz templates

    hi,
    I need some i am using quiz templates and my problem is when
    i make the swf file and test the quiz it works good , but when i
    press the enter key , the quiz doesn't work and repeat and go to
    the first screen , i don't know if i have to block the enter key or
    how i can resolve this ?
    Thanks a lot

    I know that focus management has changed alot.
    Based on my experimentation a while back, in 1.4 it still believes that the JFrame is the window in focus, even though a JOptionPane is currently in front of it (unless I misinterpreted what was going on). Thus, the frame seems to get the keyboard event and re-invoke the action.
    A.F.

  • Problem with entering hieroglyphs!!!

    iPhone 5s
    iOS 8.0.2
    Hello,
    since updating to iOS 8 and iOS 8.0.2 later, there is no possibility to enter hieroglyphic texts anymore! Particulary, it's impossible to enter texts in Japanese anymore!! It seems like iOS' makers just forgot to add to the new iOS' version all the necessary Japanese dictionaries.
    Now, when I try to tap with hieroglyphs, there are just english letters insted.
    Tryed to switch off and switch on, restart, change language keyboards in Settings several times and without any result.

    Try resetting the keyboard dictionary.
    iOS 8 broke my Japanese keyboard. (iPhone 5s)

  • Problems with entering data

    Hi all,
    I have prepared several data forms and grids, but I'm not able to enter data. All cells are red colored with cell status "INVALID".
    Does anybody know why is that?
    Thanks,
    Vlado

    The red color in cells indicate that you have chosen a Point Of View (POV) which is invalid for the accounts viewed on the form.
    Example 1: Suppose you have selected several accounts some of them having intercompany analysis and then select an ICP member, accounts not supporting intercompany analysis will be displayed as red, while accounts supporting ICP analysis, will display as yellow (provided you have selected base members for all other POV dimensions)
    Example 2: Suppose you use Custom 3 to hold both Channel and Grade analysis with different hierarchy subtrees (example drawn from COMMA sample app). Note that the [None] member belongs only in the Grades hierarchy. When you choose to view the OperatingIncome account which uses TotalChannels as Custom3TopMember (the hierarchy which does not contain the [None] member) with Custom 3 = [None], again you will see the invalid cells.
    Kostas

  • Multi line field Navigation problem with ENTER key

    No trigger on the field. Multi line Property is set to true.
    The probleb is, when the cursor reaches in the multi line field. the contents of the field are hilighted/selected. So as it happens in Notepad or Word, if you select some already written text and press ENTER key the selected text will be replaced by carriage return so the selected data will be lost. Same is the case with multi line field. When field gets focus it selects the contents of field and when ENTER is pressed all the contents are deleted and a carriage return is placed.
    any solution?
    null

    Hi Nadeem,
    One work around is that you have store content of that multi-line field in to some other variable thru PRE-TEXT-ITEM and once again assign (based on some conditon) in POST-TEXT-ITEM.
    null

  • Problem with Enter key on Aluminum Keyboard

    Just upgraded to an Aluminum iMac with the thin keyboard. We have a terminal application that communicates with our mainframe. The application looks for the 0x03 character, along with the NSNumericPadKeyMask flag, to determine that the Enter key was pressed, and then changes the character to a 0x0d (Return). This is because the 0x03 character is recognized as a Break key on the mainframe. However, when using the Aluminum Keyboard, the Enter key goes straight through as a 0x03, meaning the flag is not being set. To make things more interesting, if I use the Keyboard Viewer and click on the Enter key, the flag is set and the 0x0d is sent.
    Is there something else I should be looking for to recognize the Enter key? Perhaps something with the KeyCode? Is there some way to remap the Enter key to emulate the Return?

    I don't think you'll be able to control a Button symbol in the way you desire.  You probably need to create it as a MovieClip so that you can control what frame it is in.
    To utilize the ENTER key to take action, the following should work...
    var keyListener:Object = new Object();
    keyListener.onKeyDown = function() {
        if (Key.isDown(Key.ENTER)) {
             // do your button_mc control here
    Key.addListener(keyListener);

Maybe you are looking for