Can i stick an object to the side of the browser?

First, thanks for all the support that been given here, it was really helpfull!
second, I got an issue since adobe muse first came:
how can i stick something to the side of the browser no matter what width the user is seeing my website,
without pin it let's say to the left side of the screen.
when i'm using pin - it does do the work but it's not moving, i want the object (shape, text box, etc..) to stick to the side like header and footer but to the side.
if someone can help me out it will be lovely!
THANKS A LOT!
T

Hi… I found your question when I was looking for an answer to the same thing. But I think I've achieved what you were trying to achieve… A Tab, or a 'thing' that sits at the edge of the BROWSER window, no matter how wide or narrow, and moves horizontally with the edge of the Browser window as a user resizes the window, but always remains in the same position vertically within the site itself. Right? Well, maybe it was a 'fix' in the latest version of Muse, I'm running V7.4, Build 30 CL 784238 but it seemed quite easy.
All I did was draw a rectangle on the MASTER Page. Place it vertically at the point I wanted it to be seen at all times and made sure it was attached to the right hand edge of my site page (or the left if you prefer). Then I clicked the 'Pin' option in the tool bar at the top and right position, ie, top corner. Bingo. My little (as it became) 'email me' button moves with the browser window and stays vertically where I wanted it to be.
I've attached a screen grab of what I did and where I placed it. I hope this proves useful for you.

Similar Messages

  • How to display "Image" object in the browser?

    can anyone please tell me how can i display "Image" object in the browser?
    I have an image object that i retrieved from AS400 BLOB object by using toolbox.jar (for as400 access for java including all necessary classes like jdbc driver, security etc.).
    i want to display this object in the browser so i will be able to web-enable my BLOB objects stored on as400.thx...

    In your HTML:
    <img src="ImageServlet">
    In ImageServlet:
    Make calls to DB to get your image as byte array and store it in:
    byte[] buffer = new byte[imageSize];
    ServletOutputStream out = response.getOutputStream();
    for(int i = 0; i < imageSize; i++)
    out.write(buffer, i, 1);
    out.close();

  • How can I write new objects to the existing file with already written objec

    Hi,
    I've got a problem in my app.
    Namely, my app stores data as objects written to the files. Everything is OK, when I write some data (objects of a class defined by me) to the file (by using writeObject method from ObjectOutputStream) and then I'm reading it sequencially by the corresponding readObject method (from ObjectInputStream).
    Problems start when I add new objects to the already existing file (to the end of this file). Then, when I'm trying to read newly written data, I get an exception:
    java.io.StreamCorruptedException
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    Is there any method to avoid corrupting the stream? Maybe it is a silly problem, but I really can't cope with it! How can I write new objects to the existing file with already written objects?
    If anyone of you know something about this issue, please help!
    Jai

    Here is a piece of sample codes. You can save the bytes read from the object by invoking save(byte[] b), and load the last inserted object by invoking load.
    * Created on 2004-12-23
    package com.cpic.msgbus.monitor.util.cachequeue;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.RandomAccessFile;
    * @author elgs This is a very high performance implemention of Cache.
    public class StackCache implements Cache
        protected long             seed    = 0;
        protected RandomAccessFile raf;
        protected int              count;
        protected String           cacheDeviceName;
        protected Adapter          adapter;
        protected long             pointer = 0;
        protected File             f;
        public StackCache(String name) throws IOException
            cacheDeviceName = name;
            f = new File(Const.cacheHome + name);
            raf = new RandomAccessFile(f, "rw");
            if (raf.length() == 0)
                raf.writeLong(0L);
         * Whne the cache file is getting large in size and may there be fragments,
         * we should do a shrink.
        public synchronized void shrink() throws IOException
            int BUF = 8192;
            long pointer = getPointer();
            long size = pointer + 4;
            File temp = new File(Const.cacheHome + getCacheDeviceName() + ".shrink");
            FileInputStream in = new FileInputStream(f);
            FileOutputStream out = new FileOutputStream(temp);
            byte[] buf = new byte[BUF];
            long runs = size / BUF;
            int mode = (int) size % BUF;
            for (long l = 0; l < runs; ++l)
                in.read(buf);
                out.write(buf);
            in.read(buf, 0, mode);
            out.write(buf, 0, mode);
            out.flush();
            out.close();
            in.close();
            raf.close();
            f.delete();
            temp.renameTo(f);
            raf = new RandomAccessFile(f, "rw");
        private synchronized long getPointer() throws IOException
            long l = raf.getFilePointer();
            raf.seek(0);
            long pointer = raf.readLong();
            raf.seek(l);
            return pointer < 8 ? 4 : pointer;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#load()
        public synchronized byte[] load() throws IOException
            pointer = getPointer();
            if (pointer < 8)
                return null;
            raf.seek(pointer);
            int length = raf.readInt();
            pointer = pointer - length - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            byte[] b = new byte[length];
            raf.seek(pointer + 4);
            raf.read(b);
            --count;
            return b;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#save(byte[])
        public synchronized void save(byte[] b) throws IOException
            pointer = getPointer();
            int length = b.length;
            pointer += 4;
            raf.seek(pointer);
            raf.write(b);
            raf.writeInt(length);
            pointer = raf.getFilePointer() - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            ++count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCachedObjectsCount()
        public synchronized int getCachedObjectsCount()
            return count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCacheDeviceName()
        public String getCacheDeviceName()
            return cacheDeviceName;
    }

  • Can an abritary html object fill the brower window?

    Can an abritary html object fill the brower window?
    I have created a slideshow in Muse using the 'Full screen' slideshow widget. I like how the slideshow expands to fill the user's browser window when the browser is re-sized. However, I want to replace this widget with an html5 animation; and I want the animation to expand to fill the browser window just like the slideshow widget does.  I snapped the edges of the arbitrary html object to 100% browser width, but it still does not expand to fill the browser window. Anyone know of a way to achieve this?
    Thanks!

    Yes, that's still accurate. Select the MSO, open the Overlay Creator panel, and you'll see an "Auto Play" option.

  • Can't open PDF files in the browser. I've tried every fix mentioned and it still doesn't work!!!

    I have Windows XP. Using firefox as my browser. Suddenly, I can't open PDF files in the browser. I've tried all the fixes mentioned. Nothing works!!! Checked the plugin settings, checked Adobe Reader settings.

    I already fixed it. I never exited out of Firefox before deleting the mime file. it works now.

  • I removed chrome 10 and newly installed FF4 final, and I can't read PDF files within the browser. There was no problem in Chrome.

    I removed chrome 10 and newly installed FF4 final, and I can't read PDF files within the browser. There was no problem in Chrome. I can't even see the acrobat reader plugin in the plugins page. Acrobat 10 is already installed in my PC. Every time I try to read a PDF file on the web, FF tries to download it instead.

    As recommended above by Bernd Alheit, I posted this on the Adobe Reader forum. There, I received the advice to repair the installation under the help menu, which I did and it fixed the problem.
    Similar to your solution but found it's a fix found under "HELP" menu and not Add/Remove.
    Thank you.

  • Can not open database object from the form builder

    Hi
    i have this message
    PDE-PXC002 Program unit execution aborted due to unhandled exception(904).
    PLS I need some one to help me.
    when I try to connect as system or sys or scott user its oben properly, But when i try by another user its not work.

    YES THAT RIGHT AND I KNOW THAT BUT THE x USER CAN NOT OPEN THE DATABASE OBJECT TO GET OR VIEW OWN OBJECTS
    ONY OTHER USER CAN OPEN THE DATABASE OBJECT BUT x USER CAN NOT OPEN THE DATABASE OBJECT IN THE NAVIGATOR FORMS.

  • Why can't created an object in the "public static void main(String args[])"

    Example:
    public Class Exp {
    public static void main(String args[])
    new Exp2();-------------> To Occur Error
    Class Exp2 {
    public Exp2()

    You can't create an inner class within main, because
    it is a static method. Inner classes can only be
    created by true class methods.This is not correct. You can create an inner class object in a static method. You just have to specify an outer class object that the inner class object should be created within:
    Exp2 exp2 = new Exp().new Exp2();

  • Centering the flex object in the browser

    I want the flex application always stays at the center of the
    browser. Can this be done by modifying the flex builder generated
    html wrapper file? If so, how?

    Just wrap the swf object in an html <div> or
    <table> tag. Then center the div or the table. I use tables
    to lay out my swfs even though I'd rather use divs. If I remember
    correctly, divs didn't always align the thing properly. Here's a
    quick example that you can tinker with:
    <html><head><title>example</title></head>
    <body
    ><table height="100%" width="100%">
    <tr><td valign="middle" align="center">
    <!-- normal object code in here - make sure to set a width
    and height -->
    </td></tr>
    </table>
    </body></html>

  • How can I access files saved from the browser on my tablet? Doesn't open files?

    I tried to save a document on my tablet but in the downloads place in the browser it wouldn't open. I thought it was OK cause maybe the doc format, but I just tried to save a photo and when I tried to open it, it said "unable to find the default app."
    How can I get the photo on my tablet under pictures or something?  Do I need to download a special app?

    WMA files from libraries usually if not always contain DRM, which makes it impossible.
    (59943)

  • How can I draw an image in the browser using mouse

    I have to draw an image in the browser and have to store a file in the server and I don't know how can I do it. Is there anybody who konw it.

    Components other than applets cannot be downloaded into client machines
    unleess There is a Java Web Start kind of Mechanism present on client and the server also supports
    this .Hence your application is between Applet ---Xdownloadable ApplicationXX ---- traditinal Application

  • How can I put a Logo in the Browser-Register?

    Hey guys, does anybody knows, how I can put a Logo in the Browser Register? For example, watch this picture below; I want a Logo like the Facebook Logo, but I don't know how I can make this. The blue mark is my Website.
    Is this possible with Adobe Muse?
    Thank you.

    Hope this helps
    David

  • Hello, I have long been using Mozilla Firefoh, but I can't restore a theme (in the browser before I used the theme in anime), I do not remember how to install it and where to find, maybe it was not a topic, and skin. Please help me solve this problem.

    (in the browser before I used the theme in anime), I do not remember how to install it and where to find, maybe it was not a topic, and skin.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Why Can't I Add Buttons To The Browser?

    I deleted the "Medium Icon" button in the Browser and realised I needed it back.
    So I right-clicked to open the button menu and chose the medium icon from the "Display" section.
    There was no way I could get it (or any other button) into the browser. As I got the button over the browser it had a little x by the side of it. However, when I moved the button anywhere near the other windows they were only too willing to open up to accept it!
    The only way I could get the medium icon button into the browser was to restore the defaults.
    Why couldn't I get the browser to accept buttons?
    Ian.

    Thanks Tom but it wasn't the preferences this time.
    I've just been away from the computer for a couple of hours and after reading your reply, I suddenly had an idea!
    The Browser had been set to its narrowest width to accommodate a large Viewer and Canvas.
    All I had to do was stretch it out wider and it accepted the buttons willingly.
    What caught me out originally was that I was able to delete existing buttons but not replace them. You would think that if there was space for them to exist, there would be space to replace any that were subsequently deleted.
    Strangely enough the narrow Browser would still accept extra buttons when asked to restore the defaults.
    Ian.

  • Help me:I can't run my applet in the browser.

    I use JCreator developed an applet, I can run its "htm" file inside JCreator, everything is Ok,but when I try to run it directly (Double click "htm" file) on the browser, it always shows a blank area with a cross on top-left.
    Please help me,thanks!
    (OS: xp, my "htm" file is in the same folder with classes files )

    Could be due to classes not being found or wrong version of java...

Maybe you are looking for

  • Form where testing if radiobuttonlist is null and then display message

    I created a test form to try to get this work and can't seem to make it work. In my form I have a ddlist on page 1. on page 2 I have a subform that the selection in the ddl makes visible--that's working. There is a radiobuttonlist in the subform. I'd

  • Change BOM and Production Order

    Hello Expert, I have recuuring problem, hope you can lean help to me. Can you explain to me why this happen? we have change a component BOM in CS02, first we create change number in CC01. with effective date for 30.09.2008. In BOM 6083, there exist a

  • (iMac 5,1) 10.6.8 I cannot connect to Wi-Fi Networks. The Wi-fi preference isn't there what should I do

    For some reason the wifi prefrence that is usually in the tool bar is not there. so therefore i cannot connect to any wifi connections

  • Oracle Auditing Capability

    In one of our project we need to define audit trail for all transaction tables As per the requirements, we need to log in some audit trail table the following information - Old and New value of the column - userid who executed the SQL - Transaction t

  • Problem with next N items in folder

    Hi, When I set restriction on number of items in folder (set Number Of Rows field in folder style -> Edit Region) for example 5. I see 5 items in folder. But I cant see next set of item because there isnt link next 5. Is it bug? Im using portal versi