Image effect grow and resize

I know that the heading may not be most suitable but that'a the only thing that I could come up with recently I came across a site with a great image effect u can check it out here
http://www.whereweget.com/movies-and-videos/13714-billa-dvdrip-video-songs-2009-rsmf.html
can anyone tell me how to achieve this direct me to a tutorial or give me a code  or anything related thanks in advance.

Well the link is correct but there seems to be some thing blocking it cause if u visit the page after visiting the home page of the site it comes out fine so if u want u can check out the home page even the home page have few examples try to click few of the images in the posts
Here is the link to the website:
http://whereweget.com
no tried the spry apps but this one's better not only that we can fit the image to its actual size by clicking a link thats at the bottom of few of the images in the right bottom corner well thats for the help

Similar Messages

  • How do import an image into CS3 and resize it?

    Hi, let me say first I know very little of Illustrator C3.  I have a poster that was created by someone else.  I'm supposed to take that image and resize to fit on a pop up banner.  I created a new doc in Ill. with the correct dimensions and copied and pasted the image.  Now how to I get the original image with layers to conform to the new doc. sizing?  I need to take the image and enlarge it and make it fit within the confines of my new doc.  How do I do that without distorting the image.

    Shift, Ctrl and Alt modifier keys offer constraining options in all Adobe programs. Shift will retain proportions, Alt scale from the center etc. and when combined you can scale constrained from the center. anyway, the question is, what you are referring to by "image". Bitmaps as in photographs or other pixel images? Then AI is the wrong choice. You need to do such things in Photoshop. If its a PDF or another AI file, scaling should be no problem. you may just wish to group items before doing so to retain their relative placement within teh group and avoid unpleasant surprises when you only mass-select them.
    Mylenium

  • VBox grow and resize

    All I have an inner VBOX nested inside a VBOX. the inner box is shown and hidden using setVisible(). When I start up the parent vbox still shows a space where the inner box is, and does not shrink. How do I set it so that the inner box is hidden and the parent takes up that space.

    So a simple example would be this. Checkbox at the top that controls the button HBox.
    package test;
    import java.util.Comparator;
    public class TestApplication extends Application {
         private TableView<ExchangeDataEvent> exchangesTable = new TableView<ExchangeDataEvent>();
         private ExchangesTestEventList exchangesTestEventList = new ExchangesTestEventList();
         static ObservableList<ExchangeDataEvent> data  = FXCollections.observableArrayList();
         @Override
         public void start(final Stage stage) throws Exception {
              initData();
              final VBox rootPane = new VBox();
              rootPane.setSpacing(10);
              TableColumn<ExchangeDataEvent,String> exchangeFlagCol = new TableColumn<ExchangeDataEvent,String>("");
              exchangeFlagCol.setCellValueFactory(new PropertyValueFactory<ExchangeDataEvent,String>("id"));
              exchangeFlagCol.setPrefWidth(50);
              TableColumn<ExchangeDataEvent,String> exchangeCol = new TableColumn<ExchangeDataEvent,String>("Exchange");
              exchangeCol.setCellValueFactory(new PropertyValueFactory<ExchangeDataEvent,String>("name"));
              exchangeCol.setSortType(SortType.DESCENDING);
              exchangeCol.setPrefWidth(50);
              TableColumn<ExchangeDataEvent,String> descCol = new TableColumn<ExchangeDataEvent,String>("Description");
              descCol.setCellValueFactory(new PropertyValueFactory<ExchangeDataEvent,String>("description"));
              descCol.setPrefWidth(50);
              descCol.setSortType(SortType.DESCENDING);
              this.exchangesTable.setPrefWidth(200);
              this.exchangesTable.setItems(this.exchangesTestEventList);
              this.exchangesTable.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);
              this.exchangesTable.getColumns().addAll(exchangeFlagCol, exchangeCol, descCol);
              //Layout
              final HBox hbox = new HBox();
              hbox.setVisible(false);
              hbox.setManaged(false);
              Button buyButton = new Button("BUY");
              Button sellButton = new Button("SELL");
              hbox.getChildren().addAll(buyButton, sellButton);
              final CheckBox checkBox = new CheckBox("ShowDetails");
              checkBox.addEventHandler(MouseEvent.MOUSE_CLICKED, new EventHandler<Event>() {
                   @Override
                   public void handle(Event event) {
                        boolean selected = checkBox.isSelected();
                        if(selected) {
                             hbox.setVisible(true);
                             return;
                        hbox.setVisible(false);
              rootPane.getChildren().addAll(checkBox, exchangesTable, hbox);
             Scene scene = new Scene(rootPane, 400, 400, Color.WHITE); 
              stage.setResizable(true);
              stage.setScene(scene);
            stage.show();
         private void initData() {
              for (int i = 0; i < 50; i++) {
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "SFE", "SFE EXCHANGE", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "LSE", "SLE MARKETS EXCHNAGE", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "NYSE", "NEW YORK", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "KSE", "KKOREA", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "CME", "CME EXCHANGE", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "SFE", "SFE EXCHANGE", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "LSE", "SLE MARKETS EXCHNAGE", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "NYSE", "NEW YORK", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "KSE", "KKOREA", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "CME", "CME EXCHANGE", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "SFE", "SFE EXCHANGE", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "LSE", "SLE MARKETS EXCHNAGE", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "NYSE", "NEW YORK", true));
                   this.exchangesTestEventList.add(new ExchangeDataEvent(+i, "KSE", "KKOREA", true));
         public static void main(String[] args) {
              Application.launch(TestApplication.class, args);
         class ExchangesTestEventList extends ObservableListWrapper<ExchangeDataEvent> {
               * Creates a new instance of {@link ExchangesEventList}.
              public ExchangesTestEventList() {
                   super(data);
               * Adds a new data record to the market data list
               * @param event
              public final void addMarketDataEvent(ExchangeDataEvent event) {
                   data.add(event);
                   this.sort(new MovieComparator());
    //               this.sort();
              class MovieComparator implements Comparator<ExchangeDataEvent>{
                  @Override
                  public int compare(ExchangeDataEvent ex1, ExchangeDataEvent ex2) {
                       if(ex1.getName().equals(ex2.getName())) {
                           return 1;
                      if(!ex1.getName().equals(ex2.getName())) {
                           return 0;
                      return -1;
         public class ExchangeDataEvent extends TreeItem<ExchangeDataEvent> {
              private final String name;
              private final String description;
              private final boolean enabled;
              private final long id;
              public ExchangeDataEvent(long id, String name, String description, boolean enabled) {
                   this.id = id;
                   this.name = name;
                   this.description = description;
                   this.enabled = enabled;
                   setExpanded(true);
              public long getId() {
                   return this.id;
              public String getName() {
                   return this.name;
              public String getDescription() {
                   return this.description;
              public boolean isEnabled() {
                   return this.enabled;
    }

  • Photoshop CC: Have a template that I moved image into.  Image is too small.  How do I resize the image while in the template?  Or must I go to original image file and resize there again and again until I get the right fit?

    I have a template that I am able to plug different pictures into at different times.  The problem is that when I plug an image into that template, I find that the image is either too big or too small.  Is there a way to plug the image into the template and resize the image (and not the template itself) OR will I have to go to the file with the original image and resize it there and then try to plug it in to the template to see if it fits------and if it does not fit, go back to the original file with the image and resize it again and see if that fits---and so on and so on...........?  I have tried the" image size" option but it's hit or miss------mostly miss!
    Thanks!

    Read up on Smart Objects. It looks like you have no idea as to how to create and use them.
    Jut create a Smart Object from the layer containing whatever it image it is that you are "plugging into your template".  But you do need to learn the application at its most basic levels.
    Photoshop is a professional level application that makes no apologies for its very long and steep learning curve.  You cannot learn Photoshop in a forum, one question at a time.
    Or is it possible that you don't even have Photoshop proper but the stripped-down Photoshop Elements?"
    If the latter is the case, you're in the wrong forum.  This is not the Elements forum.
    Here's the link to the forum you would want if you're working in Elements.:
    https://forums.adobe.com/community/photoshop_elements/content
    If you do have Photoshop proper, please provide the exact version number of that application and of your OS.
    (edited for clarification)

  • Help needed in Drag and Drop and  resizing of image icons

    Hi all,
    I'm doing a project on Drag and Drop and resizing of image icons.
    There is one DragContainer in which i have loaded the image icons and i want to drop these image icons on to the DropContainer.
    After Dropping these icons on to the DropContainer i need to resize them.
    I have used the Rectangle object in resizing.
    The problem now i'm facing is when i drag, drop and resize an image icon and when i try to drag, drop a second image icon the first image icon gets erased.
    can any one help me in fixing this error.
    if u want i can provide the source code.
    thanks in advance
    murali

    the major restrictions in its implemented only in
    jdk1.1.Why!

  • Upload and Resize Image not inserting filename in database

    I have a form that I created using the insert record form wizard. One of the fields is a file field and my form enctype is set to multipart/form-data. I then used the upload and resize image behavior and set the parameters. When testing the form the file uploads to the correct directory but no entry is made into the database for that particular field. The other fields are entered into the database just fine. If it helps, here is the code generated before the  tag:
    <br />
    <br /><?php require_once('../../Connections/test.php'); ?>
    <br /><?php<br />// Load the common classes<br />require_once('../../includes/common/KT_common.php');<br /><br />// Load the tNG classes<br />require_once('../../includes/tng/tNG.inc.php');<br /><br />// Make a transaction dispatcher instance<br />$tNGs = new tNG_dispatcher("../../");<br /><br />// Make unified connection variable<br />$conn_test = new KT_connection($test, $database_test);<br /><br />// Start trigger<br />$formValidation = new tNG_FormValidation();<br />$tNGs->prepareValidation($formValidation);<br />// End trigger<br /><br />//start Trigger_ImageUpload trigger<br />//remove this line if you want to edit the code by hand <br />function Trigger_ImageUpload(&$tNG) {<br />  $uploadObj = new tNG_ImageUpload($tNG);<br />  $uploadObj->setFormFieldName("picture");<br />  $uploadObj->setDbFieldName("picture");<br />  $uploadObj->setFolder("../images/");<br />  $uploadObj->setResize("true", 120, 0);<br />  $uploadObj->setMaxSize(1500);<br />  $uploadObj->setAllowedExtensions("gif, jpg, jpe, jpeg, png, bmp");<br />  $uploadObj->setRename("auto");<br />  return $uploadObj->Execute();<br />}<br />//end Trigger_ImageUpload trigger<br /><br />// Make an insert transaction instance<br />$ins_team = new tNG_insert($conn_test);<br />$tNGs->addTransaction($ins_team);<br />// Register triggers<br />$ins_team->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");<br />$ins_team->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation);<br />$ins_team->registerTrigger("END", "Trigger_Default_Redirect", 99, "../team.php");<br />$ins_team->registerTrigger("AFTER", "Trigger_ImageUpload", 97);<br />// Add columns<br />$ins_team->setTable("team");<br />$ins_team->addColumn("id", "NUMERIC_TYPE", "POST", "id");<br />$ins_team->addColumn("sort", "NUMERIC_TYPE", "POST", "sort");<br />$ins_team->addColumn("name", "STRING_TYPE", "POST", "name");<br />$ins_team->addColumn("title", "STRING_TYPE", "POST", "title");<br />$ins_team->addColumn("description", "STRING_TYPE", "POST", "description");<br />$ins_team->addColumn("picture", "FILE_TYPE", "FILES", "picture");<br />$ins_team->setPrimaryKey("id", "NUMERIC_TYPE");<br /><br />// Execute all the registered transactions<br />$tNGs->executeTransactions();<br /><br />// Get the transaction recordset<br />$rsteam = $tNGs->getRecordset("team");<br />$row_rsteam = mysql_fetch_assoc($rsteam);<br />$totalRows_rsteam = mysql_num_rows($rsteam);<br />?>

    If the reason is about memory, warning message should be happened when upload the image, because "show thumbnail" means resize at second time, how come you failed to resize the picture that system let it upload succeed at the first time by the same resize process?
    upload procedure
    a.jpg: 2722x1814, 1.2mb
    upload condition: fixed width 330px, 1.5mb
    "upload and resize" a.jpg -> file upload -> "resize engine" -> passed (but not work and no warning message)
    "show thumbnail" a.jpg -> "resize engine" -> failed (not enough memory)
    it doesn't make sense.
    and you miss an important key point, I upload the same picture myself, and resize work, so I said it happened at random, and that's why I am so worried.

  • Images as Buttons and Image Resizing in mxml

    Sorry for all the questions but I've run into a problem when trying to create buttons that are just an image in mxml. When I first tried this I couldn't find a way to get the border around the button to dissapear so it ended up looking like my image had an extra black border around it. Then someone here suggested I just set the buttonMode property of an mx:Image to true which ended up working fine to a point. The problem I'm having is that even if I make the tabEnabled property of the image (that I'm using as a button) true, I can't tab over to it. Is there a way to either get rid of the black borders of a button or to make it so I can tab over to an image I'm using as a button?
    My second question has to do with image resizing. Lets say I have an image of a horizontal line that I want to put at the top of the mxml page, and I want it to extend the full length of the page, even after the user has resized the browser. Is there a way to do that? I've tried putting the width as 100% or giving the image a "left" and "right" value so that presumably it would be stretched to fit within those but nothing has worked so far. Is there no way to do this or am I doing something wrong?
    Thank you for any help you guys can give.

    Of course, sorry about that. So the following is a barebones example of how I currently implement buttons and images as buttons:
    <mx:Button id="facebookButton" icon="@Embed(source='image.png')" width="30"/>
    <mx:Image buttonMode="true" id="button" source="anotherimage.png" enabled="true" click="{foo()}"/>
    And within the image I've tried making the tabFocusEnabled property true but to no avail.
    The following is how I've tried stretching out an image across the whole page:
    <mx:Image source="yetanotherimage.png" width="100%" scaleContent="true"/>
    <mx:Image source="yetanotherimage.png" left="10" right="10" scaleContent="true"/>
    Is this more helpful?

  • Convert image file names to labels and resizing images according to frame. Possible??

    Hi all,
    I have posted this question hastily in the main mac forum but then i realized it is a scripting question so I repost here.
    Q1: I have a client with 700+ images who has named the images with numbers and the caption:
    eg: 1.II.34. Walking down the road towards the building.tiff
    This is the name of the image file itself
    Is there a way to import the name of the file (possibly without the extension) and place it as a caption under the image without copying and pasting? A script maybe?
    I tried the labelgraphics script. Unfortunately it returned the extension as well. I was given a solution but did not work for me since it deleted everything after the first dot on the name. This was:
    in labelgraphics on line 105, change
    myLabel = myLink.name
    to
    myLabel = myLink.name.split('.')[0]
    So how can we tackle this so it deletes everything after the LAST dot?
    Q2: The image files I am given are all huge tiff files. I use the full 100% of the images but in my document they have to be much smaller . They are usually scaled down to 25-35% of the original file. So I end up with huge, unneeded documents.
    Is there a script that would work together with photoshop maybe?
    It would need to read the frames dimensions the image is in, open the linked file inside photoshop, resize it with a specified interpolation to maybe 110% of the frame's dimensions, set the resolution (if not set) to 300 dpi save the image as a copy (or with a suffix or prefix), leave photoshop open (for the next image to be processed), relink to the new image and go to the next image
    I know it sounds a lot but I was amazed by the issues people handle in this forum and thought I would give it a try
    Thank you in advance
    Michael

    Peter thank you so much. It works like a charm.
    As for Q2, I spent some time doing research and came up with a couple of scripts that sound like they could do the trick.
    a) Image Transform or Rasterize
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1509 022#
    b) Resample Project Images to 100%
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1612 518#
    Still, since I am such an ignorant I do not know which one would be the proper one.
    Any suggestions would be highly appreciated.
    Thank you once more
    Michael

  • Image Upload and Resize Trigger Order Question

    Hello All,
    I do enjoy and like using the ADDT, however I do have a problem with the Image Upload and Resize trigger.
    I understand that this trigger is of the AFTER type, and as such, the insert record I have on the page is implemented first and the data is inserted into the table, then images uploaded provided they are smaller than 200 kB in size.
    However, as I have a field that is unique in the database, if the upload fails I am unable to upload any files which are under the size and put that information into the database, as there is already a record with the unique value.
    Is there an easy way to work around this by trying to capture the error before the data is inserted into the database?
    An idea I have is to: check the unique field with the value to be inserted, if fails, change unique value -> nothing inserted yet, no files uploaded.
    If the unique check passes, insert remaining data and trigger the upload and resize image trigger, once that is complete, have an update of the table to update with the unique value.
    I can see the above working, (I think), but I just have to write the code to implement the idea.
    I am not sure how to use the roll-back triggers either, if the Upload Image trigger fails, to remove the inserted record.  But if I can manage the roll-back trigger to remove the record, that is an option to consider for what I want to achieve.
    Thanks to any help people can provide.
    Cheers,
    Ian.

    Thank you for your reply.
    I have a work-around, I have split the forms over two pages, rather than put everything on one page - which introduced another issue, to which I have made a work-around of sorts too.
    The two forms, on different pages, is probably a better idea in terms of better management of data input. The work-around was a Header redirect based on a form variable, as, if I used a Custom Trigger to dynamically generate a new URL, it generated an escaped-encoded URL - to which I have not figured out how to fix.
    So, in the meantime, it works, so I will settle for that at the moment.
    Again, thanks for you reply.
    Ian.

  • Cropping and resizing Images using Adobe Photoshop Elements 12

    I am trying to edit pictures for my web site and previously used adobe photo shop 4 which I liked very well. When I try to crop and resize in photoshop 12 have been unable to adjust the images using pixels. As every photo on my website needs to be in pixels then this is a big problem for me! Is there anyway to change the preferences in the settings?  Thanks Tess

    You should head over to the Elements forums, this forum is for Photoshop. Go here : http://forums.adobe.com/community/photoshop_elements

  • Batch Image convert and resize

    Hello,
    quick question i have about 2000 images in the NEF Format!
    I need to convert them to PNGs or JPEGs and resize them.
    Is there a good tool for that? Anything Besides PS Droplets?
    Thank you

    Me too. GC has batch conversion features not found anywhere else, and supports every known image format.

  • Need help regarding image scanning from scanner and resizing it...

    Hi,
    I need help regarding scanning of image directly from scanner. Here is the scenario when the person clicks scan button on the webpage should scan the image and resize it and store it in some temp location. Is there any way i can do this. Any Help regarding this would be great!!!
    Thanks,
    Avinash.
    Edited by: Kalakonda on Jul 24, 2009 8:08 AM

    Kalakonda wrote:
    I need help regarding scanning of image directly from scanner. Here is the scenario when the person clicks scan button on the webpage should scan the image and resize it and store it in some temp location. Is there any way i can do this. Any Help regarding this would be great!!!So what you are doing is you have a Scanner (hardware: like an HP flatbed scanner) attached to a server that you want to use as a scanning station? Is this the senario that you are talking about?

  • Grow and Shrink the gallery's "mainImage"

    Grow and Shrink the gallery's "mainImage"
    I may pursue another option with the
    Class on trigger
    In this sample, a CSS class is set on the trigger to alert the user that something happens on the element. This is set as an option in the constructor.
    <script type="text/javascript">
    var highlight_tooltip = new Spry.Widget.Tooltip('highlighttrigger', '#classonme', {hideDelay:500, hoverClass:"enlarge"})
    </script>
    We have the main image in the photo gallery at full size.
    This is the image placeholder called "main image".
    Currently it is looks like this:
    <img id="mainImage" alt="main image" src=""/>
    I assume we add a mark-up similar to the icon grow effects code.
    So I will take a stab it now;
    <div id="Photograph" spry:region="dsPhotograph" onclick="HandlePhotograhClick('{ds_RowID}');" onmouseover="GrowPhotograph(this.getElementsByTagName('img')[0], '{@thumbwidth}', '{@Photographheight}');" onmouseout="ShrinkPhotograph(this.getElementsByTagName('img')[0]);"> <img src="galleries/{dsGalleries::@base}{dsGallery::Photograph/@base}{@Photographpath}" alt="Photograph for {@Photographpath}" width="Not Sure" height="Not Sure" id="tn{ds_RowID}" style="left: 0px; right: 0px;" onmouseover="this.style.cursor='pointer'" /> </div>
          <p class="ClearAll"></p>
    //need to look at ClearAll
        </div>
    //Now Add stuff the gallery.js
    // Show the image of the current selected row inside the dsPhotos data set.
    function ShowCurrentImage()
         var curRow = dsPhotos.getCurrentRow();
         SetMainImage("galleries/" + dsGalleries.getCurrentRow()["@base"] + "images/" + curRow["@path"], curRow["@width"], curRow["@height"], "tn" + curRow["ds_RowID"]);
    //I Need a variable like;
    ["@bigPhoto"]
    //Now I need add a function
    function HandlePhotographClick(id)
         //StopSlideShow();
         //dsPhotos.setCurrentRow(id);
         //ShowCurrentImage();
            //call Photograph grow ???
    // Trigger the animation of the Photograh growing to it's next largest size.
    function GrowPhotograph(img, width, height)
         Spry.Utils.addClassName(img, "inFocus");
         img.style.zIndex = 150;
         var id = img.getAttribute("id");
            //ADD This to the function GrowThumbnail in Gallery.js
    //after//
         //var twidth = Math.floor(width * .75);
         //var theight = Math.floor(height * .75);
         //var tx = (gThumbWidth - twidth) / 2;
         //var ty = (gThumbHeight - theight) / 2;
         var pwidth = Math.floor(width * 1.75);
         var pheight = Math.floor(height * 1.75);
         var px = (pThumbWidth - pwidth) / 2;//need to check this may not need
         var py = (pThumbHeight - pheight) / 2;//need to check this
         SizeAndPosition(id, tx, ty, twidth, theight, function(b){gBehaviorsArray[id] = null;});
    // Trigger the animation of the Photograph shrinking.
    function ShrinkPhotograph(img)
         Spry.Utils.addClassName(img, "inFocus");
         img.style.zIndex = 1;
         var id = img.getAttribute("id");
    //Need to look at this stuff below, any input from anybody would be good....
         SizeAndPosition(id, 0, 0, gThumbWidth, gThumbHeight, function(b){gBehaviorsArray[id] = null; Spry.Utils.removeClassName(img, "inFocus");});
    // Show the image of the current selected row inside the dsPhotos data set.
    function ShowCurrentImage()
         var curRow = dsPhotos.getCurrentRow();
         SetMainImage("galleries/" + dsGalleries.getCurrentRow()["@base"] + "images/" + curRow["@path"], curRow["@width"], curRow["@height"], "tn" + curRow["ds_RowID"]);
    Message was edited by: W_Bell

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class GrowRight
    public static void main (String args[]) throws InterruptedException
    JLabel label = new JLabel ("this is a test...");
    final JFrame frame = new JFrame ("GrowRight");
    frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().setLayout (new FlowLayout());
    frame.getContentPane().add (label);
    frame.setSize (label.getPreferredSize());
    frame.pack();
    final Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
    frame.setLocation (d.width - frame.getSize().width, 0);
    frame.setVisible (true);
    frame.addComponentListener(new ComponentAdapter(){//<---------------------
      public void componentResized(ComponentEvent ce){
        frame.setLocation (d.width - frame.getSize().width, 0);
    Thread.sleep (5000);
    label.setText ("for the next sixty seconds, this station...");
    frame.setSize (label.getPreferredSize());
    frame.pack();
    }

  • Image in playback window resizes

    Hi
    Ive loaded half a dozen good quality dslr images into a sequence (using the drag/drop to new sequence method to ensure appropriate sequence format) and they look fine until I add transitions then render and save when they resize pop in by about 15% (squeeze in at sides only). This resizing which leaves black borders on the sides can be adjusted back by grabbing the image edge handle and tweeking by a nats at which time it pops back to normal until i save etc etc
    whats going on??

    OK, I have good news and I have bad news.
    I have been able to recreate the problem on my system.
    The good news is that it is nothing to worry about for most people. If you add effects and you have to render to get real time playback, it does squish the images leaving a black border. However, it doesn't export that way as far as I can tell, even if you tell it to use the render files, which I never, ever do, for any of my videos. If you create titles or masks that require exact dimensions, it appears that you can use the squished image and it will expand as required upon export. That requires further testing by someone who needs to edit this way. I don't.
    If you delete the render files, the images go back to normal. So you could generate your masks and titles that way and then just render again.
    The bad news is that it does appear to be a bug that needs to be fixed because it will certainly confuse any clients looking over your shoulder. If you render the entire work area, thinking that since you didn't add any effects to most of it there should not be a problem, think again. You don't need to add effects for the problem to appear.
    So, it is off to put in a bug report.  https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    However, something tells me that if this is not an easy fix, it might end up on the bottom of the pile of reports. I doubt that there are many people editing video using the DSLR images at full size. Why? How would anyone play them back? The biggest screen I have is 1920X1080 and I am pretty much ahead of the curve. Most people who do not edit video have screens with smaller dimensions.
    Eventually that will change as people get 4K televisions, so it might be a really good idea to fix it now rather than wait until the last minute and fail to get it into the release that hits just before the Christmas sales of 4K televisions at Sears and Walmart.
    For those of you playing along at home it looks like the second image below. Look at the righthand edge:
    Edit: My report has been submitted. Your turn.

  • Ok with one image effect but not two ?? explorer problem, firefox is ok...

    Hi guys, I've just starting put a site together here:
    http://ashling.yorkwebsites.co.uk/jonah/
    I'm aiming for a the image effect at the top with imagerotator and a coverflow type effect at the bottom.
    I put the coverflow viewer in first and it worked fine on firefox and explorer.
    then i added in the image rotator. Both work good in firefox but in explorer I only get the top image rotator, no coverflow lower down. What could be causing this? can anyone please help. thanks.

    what about if you install the flash? do both work or can you only see the top one still??

Maybe you are looking for