How do I achieve browser width images with scroll motion set to 0?

How do I achieve browser width images with scroll motion set to 0?
An example can be seen here with the green image: http://www.qooqee.com/templates/aroma
I can get the rectangle to stretch the width of the browser but not the image fill. (see - http://www.tomwellsassociates.com)
My Muse fill settings:
Fill type: Solid
Colour: None
Fitting: Tile vertically
Position: Bottom Centre
Scroll motion: On (Up - 0)
Image Size:
3311 x 3311 px
Display: Apple imac 27"
Any suggestions/help would be much appreicated...

Please check out: http://forums.adobe.com/message/5701908
Cheers,
Vikas

Similar Messages

  • Full browser width image with tiled pattern not previewing or publishing.

    Using the rectangle tool to create a full browser width image, I filled it with a tiled pattern and added a drop shadow. This 80px tall rectangle serves as the background bar of my top menu navigation. Everything looks great when building in Muse CC, but when I go to preview or publish, it's missing altogether.
    Any ideas?
    http://moonstonebistro.businesscatalyst.com/index.html
    ~ Kacee

    Looks like you have deleted the site now. If you were experiencing any errors during publish, most likely it happened due to the recent outage with BC with loading of assets to sites hosted on US DC - http://status.businesscatalyst.com/.
    Thanks,
    Vinayak

  • How to stop browser background image from scrolling?

    So is there a way (an easy way) to stop browser background image from scrolling with the page?
    Thanks
    m

    If it's a single image, add this code to center the page horizontally:
    parent.document.body.style.backgroundPosition='50% 0%';
    http://www.wyodor.net/_Demo/tmf/Duckmenu.html
    http://www.wyodor.net/_Demo/duckmenu/duckassets/Spoorbackground.gif

  • How do i use my own image with keying (or green screen)

    how do i use my own image witrh keying (or green screen)

    Put your sky clip on a layer below the clip you want to key. One or the other will be a connected clip. Apply  the Keying filter to foreground clip (the one with the green screen). The green will be seen as transparent and the sky will show through as the BG. Adjust as necessary in the Inspector.
    Good luck.
    Russ

  • How do you select a single image with the keyboard?

    I can use the "/" key to deselecting the current photo but how do I select the current photo with the keyboard? Usually the space bar is used for this but that displays the image. Is the only way to select the current photo by using the mouse?

    OK, now that the question has been clarified....
    Pressing and holding the Shift key as you move through the grid with the arrow keys will individually multi-select them, but that breaks down if you want non-contiguous selections, i.e. lifting off the shift key to skip a photo will cause all previous selections to be lost when you use the arrow key to advance. I think the only way for non-contiguous selection is ctrl-click.

  • IPhone: How to get the original photo image with  Picker

    Hi!
    I'm trying to pick and send (via HTTP) the original image taken by the camera, the 1,600 x 1,2000 image that's available in iPhoto after syncing.
    As far as I gathered, the UIImage doesn't help me here, since it's scaled down to 640x480, probably to safe memory. But one should supposedly be able to access the underlying CIImage.
    Here's what I'm doing right now:
    I'm setting up an ImagePickerController in my
    - (void)viewDidLoad
    imagePickerController = [[UIImagePickerController alloc] init];
    imagePickerController.delegate = self;
    imagePickerController.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
    [self refreshView:self];
    and process the picked image with
    - (void)imagePickerController:(UIImagePickerController )picker didFinishPickingImage:(UIImage )image editingInfo:(NSDictionary )editingInfo
    CGImageRef imgRef = image.CGImage;
    CGFloat owidth = CGImageGetWidth(imgRef);
    CGFloat oheight = CGImageGetHeight(imgRef);
    NSLog(@"Original size = %f %f",owidth,oheight);
    NSData imageData = [NSData dataWithData: UIImagePNGRepresentation(image)];//(image, 1.0)
    However, I still get the following output:
    2008-07-25 11:44:58.543 myApplication[1564:20b] Original size = 640.000000 480.000000
    Obviously still scaled down - but there must be a way to access the original.
    What am I doing wrong?

    Yes, I'm trying on the iPhone, as the camera is unavailable on the simulator.
    Here is the code I'm using:
    // In my main code, to initialise the picker
    UIImagePickerController *picker;
    // Check if camera is available
    if ( ![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera] )
    UIAlertView *alertView = [[UIAlertView alloc]
    initWithTitle:@"Can't access camera" message:@"The camera is unavailable!" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil ];
    [alertView show];
    [alertView release];
    return;
    picker = [[UIImagePickerController alloc] init];
    picker.sourceType = UIImagePickerControllerSourceTypeCamera;
    picker.delegate = self;
    [_myView addSubview:picker.view];
    [_myView performSelectorOnMainThread:@selector(setNeedsDisplay) withObject:nil waitUntilDone:NO];
    // The delegate methods
    - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo
    NSLog( @"Image dimensions: %fx%f", image.size.width, image.size.height );
    // Remove the picker interface and release the picker object.
    [picker.view removeFromSuperview];
    [picker release];
    - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
    // Remove the picker interface and release the picker object.
    [picker.view removeFromSuperview];
    [picker release];
    }

  • How to send byte array of image with 300dpi.

    Hello fiends
                       i am making an application in which i have to send the byte array of an image with 300dpi.
    so i am using image snapshot class for that and use that code.
                        var snapshot:ImageSnapshot = ImageSnapshot.captureImage(cnvParent,300);
                        var bdata:String = ImageSnapshot.encodeImageAsBase64(snapshot);
    but when i send that bdata to php end using httpService.The size at other end of image increases surprisingly.i means it will increase its actual height and actual width.so is there any way to overcome this increase in size when i bitmapped image at 300 dpi?
    if there any way then please tell me.waiting for your reply.
    Thanks and Regards
        Vineet Osho

    Thanks david for such a quick reply.the link is really helpful.So we have to calculate the screendpi thruogh our code and then set the height and width of image.is there any simple way to sort out my problem.i just want to print my image at 300dpi but i am using image snapshot class so its taking the snap of my container(image) and save the image at 96 dpi which is dpi of my screen(monitor).so is there any way or any class in flex through which i got the image at its original dpi.i am not stick on 300 dpi but i m getting image from backend through xml at 300dpi.thats why i want the byte array i am sending should be at 300dpi.i am totally confused now.so please help me.
    Thanks and regards
      Vineet osho

  • How to compare any type of image with any Palette ?

    How can I compare any image with any Palette file (ex. sample.pal file) ?
    If that image don't satisified selected Palette file then show me exception or any kind of message.
    Plz reply me with proper guidence or any hints.
    Thanks
    Harshal

    How can I compare any image with any Palette file (ex. sample.pal file) ?
    If that image don't satisified selected Palette file then show me exception or any kind of message.
    Plz reply me with proper guidence or any hints.
    Thanks
    Harshal

  • How to I create a screenshot image with a Mac?

    Hi,
    I'm relatively new to Macs. I have yet to learn now to make a screenshot image with a Mac. There doesn't seem to be a Print screen button. How do I do this? Can it be done in the Mac OS? Or, is there a need to install some software to do this?
    Thanks much!

    It's all built in!
    Go to the Help menu in Finder and enter 'Screenshot' and press enter.
    Lots of articles there, including this one:
    To take a picture of the whole screen, press Command-Shift-3.
    To take a picture of part of the screen, press Command-Shift-4, then drag to select the area you want in the picture.
    To take a picture of a window, the menu bar, the Dock, or other area, press Command-Shift-4, then press the Space bar. Move the pointer over the area you want so that it's highlighted, then click. If you decide you want to drag to select the area, press the Space bar again.
    If you press Command-Shift-4 and decide you don't want to take the screen shot, press the Escape key.
    Screen shots are saved as files on the desktop. If you want to put the screen shot in the Clipboard, rather than create a file, hold down the Control key when you press the other keys. You can then paste the picture into a document.
    You can also take pictures of the screen using the Grab application (in the Utilities folder).
    Some applications, such as DVD Player, may not let you take pictures of the screen

  • Anchor is taking assets off center with Scroll Motion effect.

    I have built a Onepage Website with Scroll Effect. When I reach the Share Anchor, i've got a bug with the element appearing with a Scroll Effect. You can create the bug by reaching Share Section, and by clicking on the Share menu another time. You'll see the Asset going off center with different browser Size.
    My anchor si set to -480px on a 960 artboard with a 1920 centered assets.
    http://litecoaching.businesscatalyst.com/
    Thanks for the help

    Specialcase has a very interesting site over Motion.Among other things you'll find Illustrator paths.Look if they can help you.The link is: http://www.motionsmarts.com/downloads.html
    P.S. While you'll at it, visit the tutorials as well.Very good work.

  • Rollover for element with Scroll Motion?

    Hey There, I'm having a problem where I can't apply a rollover function to a jpeg that already has parallax scrolling applied to it. The scroll motion is working just fine. But when add an effect, like a shadow, to the jpeg under the rollover state, the next time I preview or upload the html to my server the jpeg is gone altogether. I've tried a number of options but am racking my brain for a way to have both a rollover function and parallax scrolling on the same element.
    Thanks for any advice.

    Hi Justin, I realized that I could use the tooltip widget to utilize the rollover function with that and then put scroll motion on the widget itself and it seems to work just fine.

  • Optimum size for a full browser width image?

    Hi all,
    I'm pretty new to Muse and these forums (hello everyone!) and have been tinkering around with some features.
    I'm currently creating a website for my band that integrate a full width browser image at the top of each page. I was wondering what the optimal settings are for the image size to make this work? It all currently works fine, but on larger screens the image is so zoomed in it's impossible to make out what it's of! The site is designed for smaller screens so this works fine, I was mainly wondering if there's a recommended size to optimised the images too for the width.
    Any help would be greatly appreciated!
    Kind regards, Ekke

    This must be a hard question to answer...for anyone...because I have tried many times before to get this question answered. I have looked at other examples of Muse sites and I have decided to go with a 2000 width for my images when I want to go full screen. I have no idea if this is correct but I get good results pertaining to how it looks. Now, I don't know if it is the optimum size in terms of download speed. No one will touch this question thus far. My research came from looking at what others did that built Muse sites as a profession.
    The Muse team should address this topic of optimal images for all platforms and how images can be used throughout the build not only for the above stated but for efficiency of site building.

  • How can I send a ThinkLink image with all the embedded links in Thunderword Email?

    As you are aware, ThinkLink images have embedded links (word files, images, videos etc.). I am, however, not able to send these images through Thunderword emails. I have tried both Inset Image and Insert HTML but nothing works. Of course, I can understand that ThinkLink is a new concept and most of the email clients don't support it.
    Thanks,

    No I am not aware. I have now googled thinklink, joined their site and found that they do not create images. Only Javascript.
    So no email client such as Thunderbird, which does not allow javascript, or any person disabling it in their browser for security reasons, will see your interactive images because they are not images they are interactive programs written in Javascript.
    Now how to get unsubscribed from these folk, they already tried spamming my whole Google Plusfriends list.

  • How would I achieve a "magnify" image effect on an image that is only visible on "hover"

    I have come to understand that Adobe Edge Animate can now load external javascript script into projects. So I would like to use this feature to load a "maginfy/zoom" effect onto an image that will be revealed once a button is clicked on. To clarify the process  I had in mind would go something like this:
    1. There is a map the user can view
    2. When a user hovers thier mouse over sections of the map a "callout box" would appear
    3. Inside that "callout box" would be further information about that particular section as well as an image
    4. When the user hovers over that image, it would magnify similar to this: http://www.elevateweb.co.uk/image-zoom/examples (see the "inner zoom" example)
    I've tried loading the elevatezoom.js script into a project, but I don't quite understand how I would apply this effect to a "hidden" image. Most effects like this rely on external css styles, as well as specific "ID" names in order to call the function. Once the project is saved and published, when I try to view the HTML to add those "ID" names my images are not viewable.
    Would someone mind helping me with this? I'd be most grateful.

    I actually found a solution just as I was checking your replies. Thank you so much for the help though. I ended up getting zoom.js to work within the project.
    This is what I used:
    //compositionReady
    yepnope(
              nope:[
              'js/jquery.zoom-min.js',
              complete: init
    $(document).ready(function(){
        $('img')
            .wrap('<span style="display:inline-block"></span>')
            .css('display', 'block')
            .parent()
            .zoom();
    function init() {
      var image2 = sym.$("image");
      image.zoom({url: 'images/image.png'});
    After added the external scipts (jquery-1.7.1.min.js, jquery.zoom-min.js) I was able to get the magnify effect to work on a image that is revealed upon hover. I've uploaded an example for anyone who would want to do this as well.
    Dropbox link: Dropbox - edge-zoom.zip

  • How can I upload a PDF image with out it going grainy

    i am trying to write an adobe form and I need to have the names of the authors at the bottom of the page in columns, It seems impossible to do this by entering the text into the box on the form as the spacing doesn't work. I  have made a PDF image of what I want to write but each time I upload it it becomes grainy. If I save it as a PNG or TIFF it is still grainy - even if I reduce the file size to the required number of pixels - please help me!

    Please share your form with me ([email protected]) as a co-author. Also send me the image you are trying to add to you form.
    Instructions on how to share : http://forums.adobe.com/docs/DOC-2462
    I'll see if I can help you
    Gen

Maybe you are looking for

  • How do I put voice memos from iphone to ipad.  They are already in Mac as a playlist, how do I put voice memos from iphone to ipad.  They are already in Mac as a playlist

    I can get my voice memos from my iphone onto itunes on my Mac but when I sync my ipad, it doesn't sync.  So I can only listen on my iphone using the voice memos app, which is very frustrating, since you cannot pause it and restart or gets interrupted

  • Battery empty after long inactivity

    Dear fellow users, I have observed strange battery behavior with my Twist. I do not mean anything related to the battery life when computer is on, but when I shut the computer down. When I leave it off couple of days and then restart it, the battery

  • Submitting form to portlet

    I'm having trouble getting form fields to be visible to a portlet when I submit the form to the page containing the portlet. I've tried setting the page parameters to be the same names as the form fields and then having those page parameters passed i

  • KM Resource for Super User to add attributes

    System: BI Portal, 7.0 I want to create a resource for my super users to add description data to a report, but I don't want the other users to be able to see that control on their screens. In other words I don't want them to attempt to add descriptio

  • New Update Did Not Help

    I took my phone to Verizon the day of the update so of course I could not get a new phone. They said they would do a data reset that should put my phone in complete working order. After the reset the phone seemed fine until the next day. My battery d