Apply Image -  I need help!

I'm trying to use the apply image tool for bringing back some texture, but all I can get in Subtract mode is a gray screen......I chose the active layer I'm working on (which is a duplicate of the background), RGB channel, subtract, 100% opacity, scale 2, offset 128...that's it....and still a gray screen.  There should be an outline of my image, much like I would get under high pass, but it's just a gray layer.

The Photoshop/ PSE forum is your freind, if that's what you are referring to...
Mylenium

Similar Messages

  • Page flipping with Volatile Image.  Need help :)

    Hello all,
    Could someone point me to a nice tutorial which specifically addresses setting up page flipping with Volatile Images as the buffer? I haven't had any trouble with the generic BufferStrategy way of doing things, but it looks like the absolute fastest way to go is page flipping. Any info on this subject would be appreciated. I am a student who is making his first attempt at setting up a fullscreen video game...well if you want to call it that! :) I am shooting for Pong as a first project!
    Please feel free to send me the info at [email protected], and thanks much.
    Kmyers

    If you're using Windows, then your picture is already most likely
    being stored as volatile. You should look for an article on the
    web discussing Java rendering internals as of 1.4 do a search for
    "java automatic images" you'll probably find some useful info.
    But if you insist you can just fire up a debugger and
    play with it until you finally figure out what it's doing..
    You just need to do a createVolatileImage as opposed to createImage
    when creating your buffers.. make sure to use
    createBufferStrategy(2) (or if you want to be totally sure print out
    the capabilities of the buffers available and select one that you
    know for sure supports back and front buffers that are "truly"
    volatile..
    it turns out in my experience on win2k that using normal "automatic"
    images via Component.createImage() are faster than volatiles perhaps
    because I tend to do alot of scaling ops which are not as of yet
    accelerated..
    here's some stuff that might help you:
    good luck!
    static public void printBufferCapabilities(BufferCapabilities bc) {
    System.out.println("Printing Buffer Capabilities: ");
    if (bc.isFullScreenRequired())
    System.out.println("Full screen is required");
    else
    System.out.println("Full screen is required");
    if (bc.isMultiBufferAvailable())
    System.out.println("MultiBuffering is available");
    else
    System.out.println("MultiBuffering is not available");
    if (bc.isPageFlipping())
    System.out.println("PageFlipping is available");
    else
    System.out.println("PageFlipping is not available");
    ImageCapabilities ic = bc.getBackBufferCapabilities();
    if (ic.isAccelerated())
    System.out.println("BackBuffer is accelerated");
    else
    System.out.println("BackBuffer is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("BackBuffer is truly volatile");
    else
    System.out.println("BackBuffer is not truly volatile");
    ic = bc.getFrontBufferCapabilities();
    if (ic.isAccelerated())
    System.out.println("FrontBuffer is accelerated");
    else
    System.out.println("FrontBuffer is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("FrontBuffer is truly volatile");
    else
    System.out.println("FrontBuffer is not truly volatile");
    static public void printImageCapabilities(ImageCapabilities ic) {
    System.out.println("Printing Image Capabilities: ");
    if (ic.isAccelerated())
    System.out.println("Image is accelerated");
    else
    System.out.println("Image is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("Image is truly volatile");
    else
    System.out.println("Image is not truly volatile");
    static public void printFlipContents(BufferCapabilities.FlipContents flip) {
    if (flip == null) { System.out.println("Dude your flip is flipping NULL!"); return; }
    if (flip.equals(BufferCapabilities.FlipContents.BACKGROUND))
    System.out.println("Flip Contents are BACKGROUND");
    else if (flip.equals(BufferCapabilities.FlipContents.COPIED))
    System.out.println("Flip Contents are COPIED");
    else if (flip.equals(BufferCapabilities.FlipContents.PRIOR))
    System.out.println("Flip Contents are PRIOR");
    else if (flip.equals(BufferCapabilities.FlipContents.UNDEFINED))
    System.out.println("Flip Contents are UNDEFINED");
    else System.out.println("Where the hell did you find this flipping Flip Contents, now flip off!");
    static public void printElapsedTime(String desc, long start, long stop ) {
    long s = stop - start;
    double elapsed = (double) s/1000;
    System.out.println("The elapsed time for "+desc+" :"+elapsed);
    public static void chooseBestDisplayMode(GraphicsDevice device) {
    DisplayMode best = getBestDisplayMode(device);
    if (best != null) {
    device.setDisplayMode(best);

  • Problem with images. Need help.

    I have been trying unsuccesfully fot the past few days on the following applet.
    What I would like to do is to use a gif image instead of g.fillOval. So that thers is an image I can drag instead of a circle.
    I am very new to this. Any help would be much appreciated.
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Counters extends Applet implements MouseListener,
                   MouseMotionListener{
         private Point counter1, counter2, counter3, mouse, temp;
         private int select;
         public void init(){
              this.addMouseMotionListener(this);
              this.addMouseListener(this);
              select = 0;
              counter1=new Point(25,125);
              counter2=new Point(45,125);
              counter3=new Point(65,125);
              mouse= new Point();
    public void paint (Graphics g){
         drawBox(g);
         g.fillOval((counter1.x/20)*20+5, (counter1.y/20)*20+5, 15,15);
         g.fillOval((counter2.x/20)*20+5, (counter2.y/20)*20+5, 15,15);
         g.fillOval((counter3.x/20)*20+5, (counter3.y/20)*20+5, 15,15);
    public void mouseDragged(MouseEvent e){
         mouse = e.getPoint();
         if(mouse.getX() >= 20
         && mouse.getX() <= 130
         && mouse.getY() >= 20
         && mouse.getY() <= 130)
         //continuously change the coordinates of the selected counter
         if(select == 1) counter1 = mouse;{
         if(select == 2) counter2 = mouse;
         if(select == 3) counter3 = mouse;
         repaint();
    public void mouseMoved(MouseEvent e){}
    //require for the interface
    public void mousePressed(MouseEvent e){ //select a counter using the mouse
    mouse= e.getPoint();
    if(mouse.x > counter1.x - 10 && mouse.x < counter1.x + 10 &&
              mouse.y > counter1.y - 10 && mouse.y < counter1.y + 10) select = 1;
    if(mouse.x > counter2.x - 10 && mouse.x < counter2.x + 10 &&
              mouse.y > counter2.y - 10 && mouse.y < counter2.y + 10) select = 2;
    if(mouse.x > counter3.x - 10 && mouse.x < counter3.x + 10 &&
              mouse.y > counter3.y - 10 && mouse.y < counter3.y + 10) select = 3;
              temp = mouse;
    //required for the interface
    public void mouseClicked(MouseEvent event){}
    public void mouseReleased(MouseEvent e){
         mouse = e.getPoint();
         if (mouse.x > counter1.x - 10 && mouse.x < counter1.x + 10 &&
         mouse.y > counter1.y - 10 && mouse.y < counter1.y + 10 && select != 1)
         counter1 = temp;
         if (mouse.x > counter2.x - 10 && mouse.x < counter2.x + 10 &&
         mouse.y > counter2.y - 10 && mouse.y < counter2.y + 10 && select != 2)
         counter2 = temp;
         if (mouse.x > counter3.x - 10 && mouse.x < counter3.x + 10 &&
         mouse.y > counter3.y - 10 && mouse.y < counter3.y + 10 && select != 3)
         counter3 = temp;
         repaint();
    public void mouseEntered(MouseEvent event){}
    public void mouseExited(MouseEvent event){}
    public void drawBox(Graphics g){
         for(int i= 20; i <= 140; i+=20)
    g.drawLine(i,20,i,140);
    g.drawLine(20,i,140,i);
    }

    I have been trying unsuccesfully fot the past few days on the following applet.
    What I would like to do is to use a gif image instead of g.fillOval. So that thers is an image I can drag instead of a circle.
    I am very new to this. Any help would be much appreciated.
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Counters extends Applet implements MouseListener,
                   MouseMotionListener{
         private Point counter1, counter2, counter3, mouse, temp;
         private int select;
         public void init(){
              this.addMouseMotionListener(this);
              this.addMouseListener(this);
              select = 0;
              counter1=new Point(25,125);
              counter2=new Point(45,125);
              counter3=new Point(65,125);
              mouse= new Point();
    public void paint (Graphics g){
         drawBox(g);
         g.fillOval((counter1.x/20)*20+5, (counter1.y/20)*20+5, 15,15);
         g.fillOval((counter2.x/20)*20+5, (counter2.y/20)*20+5, 15,15);
         g.fillOval((counter3.x/20)*20+5, (counter3.y/20)*20+5, 15,15);
    public void mouseDragged(MouseEvent e){
         mouse = e.getPoint();
         if(mouse.getX() >= 20
         && mouse.getX() <= 130
         && mouse.getY() >= 20
         && mouse.getY() <= 130)
         //continuously change the coordinates of the selected counter
         if(select == 1) counter1 = mouse;{
         if(select == 2) counter2 = mouse;
         if(select == 3) counter3 = mouse;
         repaint();
    public void mouseMoved(MouseEvent e){}
    //require for the interface
    public void mousePressed(MouseEvent e){ //select a counter using the mouse
    mouse= e.getPoint();
    if(mouse.x > counter1.x - 10 && mouse.x < counter1.x + 10 &&
              mouse.y > counter1.y - 10 && mouse.y < counter1.y + 10) select = 1;
    if(mouse.x > counter2.x - 10 && mouse.x < counter2.x + 10 &&
              mouse.y > counter2.y - 10 && mouse.y < counter2.y + 10) select = 2;
    if(mouse.x > counter3.x - 10 && mouse.x < counter3.x + 10 &&
              mouse.y > counter3.y - 10 && mouse.y < counter3.y + 10) select = 3;
              temp = mouse;
    //required for the interface
    public void mouseClicked(MouseEvent event){}
    public void mouseReleased(MouseEvent e){
         mouse = e.getPoint();
         if (mouse.x > counter1.x - 10 && mouse.x < counter1.x + 10 &&
         mouse.y > counter1.y - 10 && mouse.y < counter1.y + 10 && select != 1)
         counter1 = temp;
         if (mouse.x > counter2.x - 10 && mouse.x < counter2.x + 10 &&
         mouse.y > counter2.y - 10 && mouse.y < counter2.y + 10 && select != 2)
         counter2 = temp;
         if (mouse.x > counter3.x - 10 && mouse.x < counter3.x + 10 &&
         mouse.y > counter3.y - 10 && mouse.y < counter3.y + 10 && select != 3)
         counter3 = temp;
         repaint();
    public void mouseEntered(MouseEvent event){}
    public void mouseExited(MouseEvent event){}
    public void drawBox(Graphics g){
         for(int i= 20; i <= 140; i+=20)
    g.drawLine(i,20,i,140);
    g.drawLine(20,i,140,i);
    }

  • CSS Background Image - Newbie needs help

    Good Afternoon,
    I'm trying to place a background image in the body of my
    page. Pasted below is the code:
    Questions:
    1. When viewed in the browser, only part of the image can be
    viewed, and no vertical scroll bar is available to view the bottom
    portion of it. Is there a setting to toggle such that the entire
    image can be viewed?
    2. As part of the background image, I have text that I want
    to use as hotspots for links to other pages in the site. Do I need
    to place a table or use some other technique to enable use of
    hotspots?
    Thanks from a very Green Newbie.
    Sid

    > 1. When viewed in the browser, only part of the image
    can be viewed, and
    > no
    > vertical scroll bar is available to view the bottom
    portion of it. Is
    > there a
    > setting to toggle such that the entire image can be
    viewed?
    Background images will never force scrollbars.
    > 2. As part of the background image, I have text that I
    want to use as
    > hotspots for links to other pages in the site. Do I need
    to place a table
    > or
    > use some other technique to enable use of hotspots?
    Yes. You cannot put hotspots on background images. Be aware
    that this is
    the worst (well, publishing a page made in Microsoft
    Word/Publisher is the
    worst) way to make a web page.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Sid Childers" <[email protected]> wrote in
    message
    news:eksuka$56i$[email protected]..
    > Good Afternoon,
    >
    > I'm trying to place a background image in the body of my
    page. Pasted
    > below
    > is the code:
    >
    > Questions:
    > 1. When viewed in the browser, only part of the image
    can be viewed, and
    > no
    > vertical scroll bar is available to view the bottom
    portion of it. Is
    > there a
    > setting to toggle such that the entire image can be
    viewed?
    > 2. As part of the background image, I have text that I
    want to use as
    > hotspots for links to other pages in the site. Do I need
    to place a table
    > or
    > use some other technique to enable use of hotspots?
    >
    > Thanks from a very Green Newbie.
    > Sid
    >
    > <style type="text/css">
    > <!--
    > body {
    > background: url(Homepage.jpg) no-repeat;
    > }
    > -->
    > </style>
    >

  • Big Problem With Corrupted Image Library - Need Help Please

    I recently updated my Aperture 2 (2.1) with the latest update. Upon doing so, most images in my library now show up in the 'ole maroon box with the message "Unsupported Image Format." This only began after the update. I've spent hours reading threads on here, but no real solution can be found. I've spent a few hours on the phone with Apple Support and in my local store at the Genius Bar. What they're telling me is that my library file has become corrupted. That my preview/thumbnails have become "diconnected" from the actual full size image file. I've tried holding down option + command while starting Aperture in order to "rebuild" it. That's made matters worse in that most, but not all, of my previews/thumbnails now are not showing up. When I go into my home folder and right click on the aperture library icon and keep burrowing in until I get to each image folder, everything seems to be there: the original RAW file, the preview file, the thumbnail file, the edits/changes files. I can even drag the original RAW file out and re-import it and then its fine. But I can't seem to also drag out the edits/retouching/changes. So even if I take each of my 1,300 images out one by one and reimport them, I still lose some 300+ hours of retouching. I can't even bare the thought of this. Does anyone know what the heck is really going on and whether there is some kind of fix for this? I'm just trying to get my library back to where it was before all the trouble started. Unfortunately, I do not have a back up from before I updated the software. Oh, we also tried removing Aperture and reinstalling to go back to 2.0, but the same problem is still there. Lastly, I cannot export any "versions" or "masters" in order to print, upload or email the images. So I'm really stuck here.

    Welcome to club. This just happened to me also in a very similar fashion: Upgrade - upgrade works for awhile - and then the maroon screen and unsupported file message.
    At least you are still somewhat functional. Very quickly the problem spread to my non Aperture JPEGS (I use Canon software to download from two Canon Cameras and then import into Aperture). At first all was ok with these files despite the issue with Aperture. Then they are started having the same problem once I shutdown the computer and restarted. This quickly spread to killing Aperture where it would not start at all. Then I lost Microsoft Entourage due to a corrupted data base. Rebuilding this data base via Disk Utility Verify and Repair Permissions made Entourage workable (but I lost my data and setup - it created a new instance.
    Two calls to Apple made everything worse as every time we went back into Disk Utility, we would only fix problems to have them re-appear when the laptop was restarted.
    Went to Genius Bar (twice). They archived and did a reinstall. They had to do this twice. Everything now works except for Aperture which will not launch at all.
    Genius Bar told me to use Time Machine to reload Aperture. Three tries using three different backups have now resulted in nothing. I am about to try a clean install using my Aperture Disk. I will report back on this.
    One thing I noticed before all this started - I had done a bunch of usual weekly software updates about two weeks ago. I was going on a trip so I let everything run (no issues). Time Machine did all the usual things including giving me the really useful message that my BackUp Disk was now full (meaning it is wiping old versions out). However, I then went to shutdown the machine and FileVault whirled for over 30 minutes before it allowed the machine to shutdown. Usually this is under 3-5 minutes if that long. FileVault has yet to make a re-appearance on any shutdown I have had in past two weeks regardless of changes on HD. Therefore I am wondering if there is a connection here.
    I use a MacBook Pro with upgraded memory and HD.

  • Need help in formatting the report created using SSRS

    I have created an image and used it as the body background. But I want that image to come at right
    Set bodyRepeat as RepeatY. 
    Currently its showing as below              I need this blue image at the right most side of the report as below
    Also I need to display text on the image.
    Need Help!!!
    Abhinav

    Hi AbhinavSultania,
    According to your description, you created a report and added background image to it, you want to display the image at right side of the report and display text on the image.
    According to my knowledge, we could not control position of background image, as a workaround, we can refer to the following steps:
    Create an image with the blue line at right side of it using Paint.
    Right-click body of the report to open Body Properties dialog box, then import the image as background image.
    Drag text box from Toolbox to the blue line of the image. Right-click inside of the text box and click Expression, we can use expression to show dynamic contents at runtime.
    The following screenshot is for your reference:
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • Need Help With An Application That Produces Live Images Within Tilelists

    At the moment I have an application which is meant to produce live thumbnail images of websites. Currently how it does this is a html component (myhtml) loads websites via it's location property changing from website to website and upon fully loading of each site a "snapshot" is taken of the html component and saved as a bitmap and applied as the source of an image corresponding to that particular site (abcnewsimage and bbcnewsimage). However I now need to insert these snapshots within the 'icon' properties of 2 array collections (myTilelistAArrayCollection and myTilelistBArrayCollection) which act as dataproviders to populate 2 tilelists (mtTilelistA and myTilelistB).
    Basically I need the same images to appear automatically within the tilelists the way they do in the 2 images as the snapshots are taken by applying the same bitmaps into the currently empty 'icon' properties of the 2 tilelists i.e. the icon of the ABC News Item of both array collections must be the same as the abcnewsimage and appear as it appears and the same for the BBC News Item icon being the same as the bbcnewsimage picture as that appears.
    It should look like the images are appearing in the tilelist at the same time as they are appearing in the regular images. What will I need to put into the icon properties to do this?
    I hope this makes sense and if anyone can help me out it would be much appreciated. :-)
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" verticalAlign="middle" backgroundColor="white" width="1024" height="768">
    <mx:Script>
    <![CDATA[
    import mx.graphics.ImageSnapshot;
    import mx.collections.*;
    private function takeSnapshot(event:Event) :void{
    var imageBitmapData:BitmapData = ImageSnapshot.captureBitmapData(myhtml) ;
    switch(myhtml.location){
    case "http://abcnews.go.com/":abcnewsimage.source =
    new Bitmap(imageBitmapData);myhtml.location =
    "http://news.bbc.co.uk/";
    break;
    case "http://news.bbc.co.uk/":bbcnewsimage.source =
    new Bitmap(imageBitmapData);
    break;}
    private var myTilelistAArrayCollection:ArrayCollection = new ArrayCollection([{id:
    "ABC New Item", label:"ABCNews", icon:""},{id:
    "BBC News Item", label:"BBC News", icon:""}]);
    private var myTilelistBArrayCollection:ArrayCollection = new ArrayCollection([{id:
    "ABC News Item", label:"ABCNews", icon:""},{id:
    "BBC News Item", label:"BBC News", icon:""}]);
    ]]>
    </mx:Script>
    <mx:HBox x="10" y="10">
    <mx:Image id="abcnewsimage" width="100" height="100" scaleContent="true"/>
    <mx:Image id="bbcnewsimage" width="100" height="100" scaleContent="true"/>
    </mx:HBox>
    <mx:HTML id="myhtml" location="http://abcnews.com/" complete="takeSnapshot(event)" width="250" height="250" horizontalScrollPolicy="off" verticalScrollPolicy="off" x="10" y="118"/>
    <mx:TileList x="268" y="118" width="294" height="250" id="myTilelistA" dataProvider="{myTilelistAArrayCollection}" rowHeight="100" columnWidth="100"/>
    <mx:TileList x="570" y="118" width="294" height="250" id="myTilelistB" dataProvider="{myTilelistBArrayCollection}" rowHeight="100" columnWidth="100"/>
    </mx:WindowedApplication>

    Cheers Flex harUI. From what I can see superimage is mainly used to keep images at better quality. What I'm concerned with is having the images set within the 'icon' properties of the 2 tilelists AS they are set within their specific images. I've tried databinding by doing this for example:-
    {id:
    "ABC New Item", label:"ABCNews", icon:"{abcnewsimage.source}"},
    I hoped that would cause the icon field of the array collection to be populated by the source of the abcnewsimage so that as the abcnewsimage is populated by the snapshot that is taken of the abcnews website the icon field of the abc news item in the array collection would be too so that furthermore the tilelists would then be populated by these images. Basically as each snapshot appears in it's specfic image it needs to be loaded into the icon property of the array collection too. In the end the icons should look as if they are appearing within both the tilelists the same way as they are appearing within the images if that makes sense. The images should be loading within the tilelist one at a time as they are in the regular image components.

  • Need Help With An Application Which Produces Live Images Within Tilelists

    At the moment I have an application which is meant to produce live thumbnail images of websites. Currently how it does this is a html component (myhtml) loads websites via it's location property changing from website to website and upon fully loading of each site a "snapshot" is taken of the html component and saved as a bitmap and applied as the source of an image corresponding to that particular site (abcnewsimage and bbcnewsimage). However I now need to insert these snapshots within the 'icon' properties of 2 array collections (myTilelistAArrayCollection and myTilelistBArrayCollection) which act as dataproviders to populate 2 tilelists (mtTilelistA and myTilelistB).
    Basically I need the same images to appear automatically within the tilelists the way they do in the 2 images as the snapshots are taken by applying the same bitmaps into the currently empty 'icon' properties of the 2 tilelists i.e. the icon of the ABC News Item of both array collections must be the same as the abcnewsimage and appear as it appears and the same for the BBC News Item icon being the same as the bbcnewsimage picture as that appears.
    It should look like the images are appearing in the tilelist at the same time as they are appearing in the regular images. What will I need to put into the icon properties to do this?
    I hope this makes sense and if anyone can help me out it would be much appreciated.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" verticalAlign="middle" backgroundColor="white" width="1024" height="768">
    <mx:Script>
    <![CDATA[
    import mx.graphics.ImageSnapshot;
    import mx.collections.*;
    private function takeSnapshot(event:Event) :void{
    var imageBitmapData:BitmapData = ImageSnapshot.captureBitmapData(myhtml) ;
    switch(myhtml.location){
    case "http://abcnews.go.com/":abcnewsimage.source =
    new Bitmap(imageBitmapData);myhtml.location =
    "http://news.bbc.co.uk/";
    break;
    case "http://news.bbc.co.uk/":bbcnewsimage.source =
    new Bitmap(imageBitmapData);
    break;}
    private var myTilelistAArrayCollection:ArrayCollection = new ArrayCollection([{id:
    "ABC New Item", label:"ABCNews", icon:""},{id:
    "BBC News Item", label:"BBC News", icon:""}]);
    private var myTilelistBArrayCollection:ArrayCollection = new ArrayCollection([{id:
    "ABC News Item", label:"ABCNews", icon:""},{id:
    "BBC News Item", label:"BBC News", icon:""}]);
    ]]>
    </mx:Script>
    <mx:HBox x="10" y="10">
    <mx:Image id="abcnewsimage" width="100" height="100" scaleContent="true"/>
    <mx:Image id="bbcnewsimage" width="100" height="100" scaleContent="true"/>
    </mx:HBox>
    <mx:HTML id="myhtml" location="http://abcnews.com/" complete="takeSnapshot(event)" width="250" height="250" horizontalScrollPolicy="off" verticalScrollPolicy="off" x="10" y="118"/>
    <mx:TileList x="268" y="118" width="294" height="250" id="myTilelistA" dataProvider="{myTilelistAArrayCollection}" rowHeight="100" columnWidth="100"/>
    <mx:TileList x="570" y="118" width="294" height="250" id="myTilelistB" dataProvider="{myTilelistBArrayCollection}" rowHeight="100" columnWidth="100"/>
    </mx:WindowedApplication>

    Cheers Flex harUI. From what I can see superimage is mainly used to keep images at better quality. What I'm concerned with is having the images set within the 'icon' properties of the 2 tilelists AS they are set within their specific images. I've tried databinding by doing this for example:-
    {id:
    "ABC New Item", label:"ABCNews", icon:"{abcnewsimage.source}"},
    I hoped that would cause the icon field of the array collection to be populated by the source of the abcnewsimage so that as the abcnewsimage is populated by the snapshot that is taken of the abcnews website the icon field of the abc news item in the array collection would be too so that furthermore the tilelists would then be populated by these images. Basically as each snapshot appears in it's specfic image it needs to be loaded into the icon property of the array collection too. In the end the icons should look as if they are appearing within both the tilelists the same way as they are appearing within the images if that makes sense. The images should be loading within the tilelist one at a time as they are in the regular image components.

  • Need help to create report with jpeg/gif image

    Hello,
    I need help with creating a form with a special jpeg/gif seal. I never done this Java. Until now, I created all forms with ansi C++ with HP escape characters to draw lines, boxs, and text. This form will contain boxes which is populated with database information read from a text file.
    Since this form contains a special seal on the upper right, I don't think it can be done with old fashion ansi C++. How can I create a form with Java and create it as a simple exe to just print the form to a specified printer.
    Thanks,
    John

    Hi,
    I am creating a form with boxes (lines and text). What is special about this form is that it has an image jpeg or gif at the top right corner. Is is a state department seal. Up to this form, I had used ansi C++ and print out escape HP character to print out the lines, boxes, and text. I have no idea how to print out the image. I am new to JAVA and only 1 class in it. Is there sample code out there to create this type of form with the image? I need a starting point.
    Thanks,
    John

  • Hi! I need help, today I connected my mac Book Air to a tv for a presentation and as soon as I conected it the image on my screen went bigger. And I cant find the way to put it back as it was before. The Images are too big! heelp

    Hi! I need help, today I connected my mac Book Air to a tv for a presentation and as soon as I conected it the image on my screen went bigger. And I cant find the way to put it back as it was before. The Images are too big! heelp

    Morning DeeHutton,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Best of luck,
    Mario

  • I need help dividing an image into two equal parts in Adobe Illustrator CC--ASAP!!!

    I need help dividing a single, already created image into 2 equal parts...Am getting nowhere so far

    Hi Willi, thanks so much for responding! Below is the image I need to divide in half. The left half where it says "Click here for the definition" links to a landing page where people can read the definition of the Hebrew Word. The right half links to an audio recording of the Hebrew word being spoken aloud. I am trying to figure out how to use the scissors or knife tool in Adobe Illustrator and am having no luck. Plus I believe there's a way to include URLs on each separated part, but I can't get past figuring out how to cut it. My background is not graphic design

  • Bought a new macbook and want to manually manage music onto my iphone 4s but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Bought a new macbook and want to manually manage music onto my iphone 4s (as it is already full of music from old windows laptop) but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Before you sync your iPhone make sure that all the music that was synced to your phonereviously has been copied to your iTunes on the new MacBook Pro. Then when you connect your phone you will be able to either sync all music or select only those playlists that you want on the phone.

  • Image size and mime type.. non-java guy needs help

    Image size, mime type.. non-java guy needs help
    Im not at all familiar with java so this is really weird for me to work out. I?ve been doing it all day (and half of yesterday).
    Im trying to write a custom clodFusion tag in java that gets the width, height, size and MIME types of a given file. I?ve been trying to get it to work on the command line first. I can get the width and height but cant get the size and the MIME type.
    Here is what I got
    /*import com.allaire.cfx.*;*/
    import java.awt.image.renderable.*;
    import javax.media.jai.*;
    import com.sun.media.jai.codec.*;
    import java.io.*;
    import java.util.*;
    public class ImageInfo {
    private RenderedOp image = null;
    private RenderedOp result = null;
    private int height = 0;
    private int width = 0;
    private String type = "";
    private String size = "";
    public void loadf(String file) throws IOException
    file = "80by80.jpg";
    FileSeekableStream fss = new FileSeekableStream(file);
    image = JAI.create("stream", fss);
    height = image.getHeight();
    width = image.getWidth();
    System.out.println(height + "\n");
    System.out.println(width);
    System.out.println(type);
    public static void main(String[] args) throws IOException {
    ImageInfo test = new ImageInfo();
    test.loadf(args[0]);
    can anyone please help me out to modify the above so I can also print the mime type and the file size to screen.
    thanks for any help

    any suggestions?

  • I have updated my iphone this evening and is has asked me to connect my phone to itunes, I connected it to a computer with itunes and it says it needs restoring? and all my images etcwill be earsed I need help as I have not backed my iphone up previously

    I have updated my iphone this evening and is has asked me to connect my phone to itunes, I connected it to a computer with itunes and it says it needs restoring? and all my images etcwill be earsed I need help as I have not backed my iphone up previously please help?

    YOur phone is in recovery mode, any data that was on there is already gone, you will have to restore your phone and use whatever backup you to restore to.

  • I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    You mean an image such as a scanned document?
    If that is the case, the file doesn't contain any text for Reader Out Loud to read. In order to fix that, you would need an application such as Adobe Acrobat that does Optical Character Recognition to convert the images to actual text.
    You can also try to export the file as a Word document or something else using ExportPDF which I believe offers OCR and is cheaper than Acrobat.

Maybe you are looking for

  • Integrating External File Server In SAP EP - Help Needed.

    Hello All, We have a EP 7.0 Running on HP-UX, can some one please tell me how I can integrate an External File Server or a Web DAV Folder into the SAP EP. Any suggestion would be a great help. Best Wishes, John. Message was edited by:         John Br

  • Hyperlink outside of website

    I'm pretty limited in my coldfusion knowledge. I am trying to create a link that will reference a website outside of my own and can't seem to make it work. I'm putting in <a href="Outside Website address>Title</a> but it keeps trying to go to my webs

  • Get rid of malware on OS 10.6.8

    My Mac seems to have become infected with malware that came in when I attempted to download Google Earth. The pop-up ads are driving me nuts, and the "close" buttons on the ads don't work. It is contaminating only my Safari browser but hasn't gotten

  • Big problem with battery.Please fix it soon

    fix it soon

  • Outlook Categories not supported on iPhone?

    Company uses Microsoft Exchange to sync Mail, Calendar & Contacts. All of my contacts (1000+) in Outlook are segregated by using Categories which greatly expidited searching contacts on the Blackberry used prior to getting new iPhones this week. Now