Problem for viewing Image and "\n" on Alert

Good day.
I made a Midlet MIDP 1.0 CLDC 1.0 that have an Image on Alert class;
this is my code:
Alert al = new Alert("AppTitle");
try {
al.setImage(Image.createImage("/MyApp/myimg.jpg"));
} catch (java.io.IOException e) {
al.setTimeout(3000);
al.setType(AlertType.INFO);
display.setCurrent(al);
On Nokia Phones (I've tried Series 40 e 60) the result is that I view on text area Information and near of it (but cutted) the image.
Why?
I have another question:
If I use on Alert class
al.setString("MyApp\nMyName");
within or eithout image On Nokia phones the "\n" idn't considered.
Both problems in others phones (I've tried Motorola and Sony-Ericsson) aren't.
Why?
Best regards and good work.
Stefano Errani

Hi MTSTUNER & J Maloney
I really appreciate the interest you've both taken in the question.
Yes, J Maloney you would be correct. I was wanting to see the whole of the image, the masked bits and the not masked bits... as well as the mask too all simultaneously.
I'm currently kicking myself that I've not explored the Masks panel. Don't know when it was introduced, I have kind of skipped a version of PhotoShop or two on my own machine - lame excuse, I know gov. The density idea is far more elegant than my solution. However, I did find that by creating the duplicate I've been able to colourise it so as to make the results of what I was doing really obvious visually. I like the invert idea too, so simple - and it might prove the best of the options... but I'll try it on another image as I've pretty much done this one - lots of hats, not much hair.
No offence on the "last paragraph". My reaction was "it's not unasked" though I wasn't clear: "How do sensible people approach this exercise?"
Thank you too MSTUNER, I appreciate the time spent.
"Quick Mask?" occurred randomly to me. Something I've never bothered with, tending to go straight to Layer Mask work. I'll own up that Quick Mask has never managed to make itself part of my workflow, I've no idea why because I'm sure it should if I gave it time. However, a quick experiment hasn't produced a Eureka moment. I was hoping I could easily subtract or add a Quick Mask from/to an existing Layer Mask... nope, doesn't seem to want to - though it was a 'quick' experiment.
Thank you again for taking the time and enjoy the rest of your day. Regards.

Similar Messages

  • Looking for a Hi Res solution for viewing images and for capturing video

    We are looking to complete some training videos that utilize a microscope, a Sony Firewire camera (1/3-inch Progressive Scan Color CCD 1024x768 Pixel Array). I want to capture the video on a macbook (imovie or FCE) and be able to make some training DVDs.
    In addition, I need to purchase a monitor (cinema display??) that would allow people to view the manipulation from the microscope.
    Whay type of setup am I looking at ? Will the Apple Cinema display work for this and give a hi res image on it?
    I am not familar with the displays or the desired setup (the video out on the macbook be acceptable as the video comes in from the camera or does the camera go directly to the monitor?
    ny insight would be appreciative. Thank you

    Hi jforsberg,
    What we need to know is that microscope have a video out or practically you use the Sony to capture the video thru microscope using custom tripod or camera holder?
    If using you Sony is the case, then you can use iMovie for that, and you can view it "live" while you capture (import) it by selecting the input menu to your sony like shown here by EZJIM:
    http://discussions.apple.com/thread.jspa?threadID=1091996&tstart=25
    And you can mirror the screen from macbook to bigger external screen using mini DVI adapter. There are three option mini dvi to vga, mini dvi to dvi, and mini dvi to video, and if you want to use apple cinema display I believe you have to buy the mini dvi to dvi.
    And apple said that macbook can drive up to 23" cinema display with 1440 x 900 resolution, but other user on macbook forum reportedly can use with other bigger screen and bigger resolution as well.
    Best way is you visit apple store and buy that adapter and have it tested with both 23" and 30" (I believe apple guy won't mind considering you are a potential cinema display buyer).
    Good Luck.

  • Interesting problem for all students and programmers Have a look!

    Hello. This is a very interesting problem for all programmers and students. I have my spalsh screen class which displays a splash when run from the main method in the same class. However when run from another class( in my case from my login class, when user name and password is validated) I create an instance of the class and show it. But the image in the splash is not shown. Only a squared white background is visible!!!.
    I am sending the two classes
    Can u tell me why and propose a solution. Thanks.
    import java.awt.*;
    import javax.swing.*;
    public class SplashScreen extends JWindow {
    private int duration;
    public SplashScreen(int d) {
    duration = d;
    // A simple little method to show a title screen in the center
    // of the screen for the amount of time given in the constructor
    public void showSplash() {
    JPanel content = (JPanel)getContentPane();
    content.setBackground(Color.white);
    // Set the window's bounds, centering the window
    int width = 300;
    int height =400;
    Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (screen.width-width)/2;
    int y = (screen.height-height)/2;
    setBounds(x,y,width,height);
    // Build the splash screen
    JLabel label = new JLabel(new ImageIcon("logo2.gif"));
    JLabel copyrt = new JLabel
    ("Copyright 2004, Timetabler 2004", JLabel.CENTER);
    copyrt.setFont(new Font("Sans-Serif", Font.BOLD, 16));
    content.add(label, BorderLayout.CENTER);
    content.add(copyrt, BorderLayout.SOUTH);
    Color oraRed = new Color(100, 50, 80, 120);
    content.setBorder(BorderFactory.createLineBorder(oraRed, 10));
    // Display it
    setVisible(true);
    // Wait a little while, maybe while loading resources
    try { Thread.sleep(duration); } catch (Exception e) {}
    setVisible(false);
    public void showSplashAndExit() {
    showSplash();
    // System.exit(0);
    // CLASS CALLING THE SPLASH
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JMenu;
    import javax.swing.*;
    import java.applet.*;
    import java.applet.AudioClip;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.net.URL;
    public class login extends JDialog
    String username;
    String password;
    JTextField text1;
    JPasswordField text2;
    login()
    //super("Login To TIMETABLER");
    text1=new JTextField(10);
    text2 = new JPasswordField(10);
    text2.setEchoChar('*');
    JLabel label1=new JLabel("Username");
    JLabel label2=new JLabel("Password");
    label1.setFont(new Font("Garamond",Font.BOLD,16));
    label2.setFont(new Font("Garamond",Font.BOLD,16));
    JButton ok=new JButton(" O K ");
    ok.setActionCommand("ok");
    ok.setOpaque(false);
    ok.setFont(new Font("Garamond",Font.BOLD,14));
    ok.setBackground(SystemColor.controlHighlight);
    ok.setForeground(SystemColor.infoText);
    ok.addActionListener(new ActionListener (){
    public void actionPerformed(ActionEvent e)
    System.out.println("ddddd");
    //validatedata();
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    System.out.println("->here");
    // setVisible(false);
    // mainpage m=new mainpage();
    // m.setDefaultLookAndFeelDecorated(true);
    // m.callsplash();
    /// m.setSize(640,640);
    // m.show();
    //m.setVisible(true);
    SplashScreen splash = new SplashScreen(5000);
    // Normally, we'd call splash.showSplash() and get on with the program.
    // But, since this is only a test...
    splash.showSplashAndExit();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    JButton cancel=new JButton(" C A N C E L ");
    cancel.setActionCommand("cancel");
    cancel.setOpaque(false);
    cancel.setFont(new Font("Garamond",Font.BOLD,14));
    cancel.setBackground(SystemColor.controlHighlight);
    cancel.setForeground(SystemColor.infoText);
    cancel.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e)
    dispose();
    System.exit(0);
    JPanel pan1=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan2=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan3=new JPanel(new FlowLayout(FlowLayout.CENTER,20,20));
    pan1.setOpaque(false);
    pan2.setOpaque(false);
    pan3.setOpaque(false);
    pan1.add(label1);
    pan1.add(label2);
    pan2.add(text1);
    pan2.add(text2);
    pan3.add(ok);
    pan3.add(cancel);
    JPanel_Background main=new JPanel_Background();
    JPanel mainpanel=new JPanel(new BorderLayout(25,25));
    mainpanel.setOpaque(false);
    // mainpanel.setBorder(new BorderLayout(25,25));
    mainpanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder
    ("Login To Timetabler Vision"),BorderFactory.createEmptyBorder(10,20,10,20)));
    mainpanel.add("West",pan1);
    mainpanel.add("Center",pan2);
    mainpanel.add("South",pan3);
    main.add(mainpanel);
    getContentPane().add(main);
    void validatedata()
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    SplashScreen splash = new SplashScreen(5000);
    splash.showSplashAndExit();
    dispose();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    public void callsplash()
    {SplashScreen splash= new SplashScreen(1500);
    splash.showSplashAndExit();
    public static void main(String args[])
    { login m=new login();
    Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
    int screenPositionX=(int)(screenSize.width/2-390/2);
    int screenPositionY=(int)(screenSize.height/2-260/2);
    m.setLocation(screenPositionX, screenPositionY);
    //m.setResizable(false);
    m.setSize(600,500);
    m.setSize(390,260);
    m.setVisible(true);

    Hi Luis,
    Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
    Else you have to use BAPI for mass change.
    regards,
    maia

  • Default Program for Viewing Images?

    I want to download and try the Photoshop Album Starter Edition while updating my Adobe Reader. BUT, if I don't like it I want to be able to return to using my Windows Photo Gallery. Does the Photoshop Starter Edition automatically set itself as the DEFAULT program for viewing pictures, etc? If so, how do I reset it to my Windows Photo Gallery or other program? Thanks!

    Hi Alan,
    To set some program other than Photoshop Album Starter Edition as your default program for viewing images of a particular format, say .jpeg, right click on any .jpeg image and then select "Open with" and then "Choose Program. In the open with dialog box select the application that you want to use for viewing .jpeg images and check the check box at the bottom of the dialog box which says "Always use the selected program to open this kind of file.
    Cheers,
    Chhaya

  • I'm involved in fashion and would like to know which Adobe program would be suitable for importing images and my company logo to design fabric and send as image to fabric printers? Thanks

    I'm involved in fashion and would like to know which Adobe program would be suitable for importing images and my company logo to design fabric and send as image to fabric printers? Thanks

    Adobe Illustrator.  Your company logo should be a vector file.  Image files can be "Placed" in Illustrator.  Artwork created for printing can be drawn in Illustrator and saved as .ai, .eps, and .pdf files which can be imported into your printer's RIP.  But, check with your print vendors and see what they require.  This does not rule-out Photoshop, however Photoshop can be limited.  So, it would be a good idea to have Photoshop and Illustrator loaded in your workstation with Illustrator being the go-to application.

  • PROBLEM: Cant view images on a Report in HTML Preview

    <p>I created a report in crystal 11. I&#39;ve inserted a picture onto the report which works out fine when viewed in Preview mode when in Crystal. </p><p>The problem is when i go into the web application an run the report from there, I notice that the picture/image doesnt appear. It only shows the place holder for the image</p><p>&#160;</p>

    Right-click on the Red X, copy its URL, and paste it to the Address field of the browser and go.  What error do you get?
    The images are handled by a page in the crystalreportviewers11 web app for XI Release 1.
    Ted Ueda

  • Assembly of pdfs - "insufficent data for an image" and blank page

    Hello.
    We are using Adobe Livecycle Assembler 8.2 to assemble a set of pdfs uploaded by end-users together with a pdf that our application create. We have been using the assembler and pdf generator for å few years.
    Lately we have had a couple of situations that our custoumer is not very happy with.
    Situation 1:
    Assembly of 5 pdf is sucessful, but when we open the assembled pdf, one page (representing one attachemnt upload by an end-user) is displayed as an blank page. The attachment is correctly displayed in the table of content with a bookmark to the blank page. The first time scrolling over the blank page in Adobe Reader X, a popup with the message "Insufficent data for an image" is shown. Our applications has no knowledge that the assembly is not sucessful, so its difficult to identify the problem. It seems like the pdf is a scanned image (Producer: AXIS 70U Network Document Server). Have also viewed the assembled pdf in another pdf-reader, but still the same blank page and popup.
    Situation 2:
    Assembly of a few pdfs is sucessful, but when we open the assembled pdf, one page (representing one attachemnt upload by an end-user) is displayed as an blank page. So fare same as situation 1. However, the attachment is not displayed in the table of content and no popup is given when scrolling over the blank page representing the attachment, just a blank page.
    I am looking at a way of detecting pdf that would cause these problems (if I can't fix the pdfs). Maybe there is a way (programtically with iText?) to check if the pdf contains fonts and if not, regard it as a scanned image and mark it as problematic (most scanned pdfs are assembled just fine). Earlier on we had another problem when assembly pdfs, we then got an exception "PDFUnsupportedFeatureException: FlateDecode Filter". Our solution was then to use PDF Generator to convert all uploaded pdfs(attachments) to ps, then back to pdf and reassemble. This approch also works in situation 1 and 2. However we have no failing applications with exceptions now... Doing the pdf2ps2pdf for all attachments is very time consuming and not a good solution for our customer.
    Do anybody have a clue what is wrong with our pdfs? Is there a way of solving this when doing the assembly? Any DDX-tags that might do anything nice?
    The data in the pdfs are sensitive information, so I can't attach them to this post. Can send the metadata if requested.
    Any response would be appreciated.

    Haven't seen that error before.  How are you converting the data after the function call if at all, i.e., are you moving to an XSTRING before handing it off to the web app?
    The things I would suggest which may be stating the obvious are:
    - Download the PDF locally after conversion with GUI_DOWNLOAD and check for the error
    - Does the same issue occur with program RSTXPDFT4 or fm RSPO_RETURN_SPOOLJOB or a SAPOffice (direct) conversion?
    - Remove the logo and try and/or take the original logo, reconvert it to BMP and upload it again in SE78
    - What happens if you change the destination device in the call, if anything?
    - Does OSS note 1320163 apply?

  • Problem Getting Error Code and Description in Alerts

    We are having trouble getting the Error code and Error description in the Alerts and we're having trouble getting a alert for message mapping exceptions.  I have read through the BLOGs and the help on SAP.  I'm not sure it is something to do with the configuration or SP14.  We did not have these problems with SP12 at our other customer XI implementations.
    Background -
    We have setup an "XI Alert" classification with three Alert categories -"XI_Mapping_Error", "XI_Adapter_Error", "XI_Runtime_Error". 
    For the "XI_Mapping_Error" alert category, we have setup a rule so that any Integration Engine Application Mapping.* Error code will create an alert.  However, when we have a mapping error in XI which we can see in MONI, we do not get an alert.  The checkbox for "Suppress Multiple Alerts of this Rule" is not selected.  I am not sure why we're not getting the alert.
    For the "XI_Adapter_Error" alert category, we have setup a rule so that any Adapter Engine * adapter type will create an alert.  The alert gets created - however, some of the container variables do not get poulated in the email.  We have defined Container variables pointing to the corresponding ABAP data dictionary elements - i have double checked these definitions.
    Here is an alert email - the Error Code (SXMS_ERROR_CODE -  SXMSERRTX) and Error Category (SXMS_ERROR_CAT - SXMSERRCAT) are not being extracted:
    Alert ID: ##23896##
    Error Code =
    Error Category =
    Message ID = 1506eab0-6125-11da-9ba2-00505685 Time = 14:26:12 Date = 29.11.2005
    Sender Party =
    Sender Service = BS_CPI
    Sender Interface = MI_CPI_INV_RFC_REQ_ABS
    Receiver Party =
    Receiver Service = BS_CPI
    Receiver Interface =
    We are not able to figure out why the Alert framework is not working correctly.  We are running XI 3.0 SP 14 on Win2K, SQL 2000.
    Anyone encounter these problems?  Any help would be appreciated.
    Regards,
    Jay Malla

    >> There are some problems with SP 14 and the alert framework.
    Very true! Join the team!
    >> We applied Note 876546 which triggered certain alerts that were not getting triggered. However, we're not getting the Error code and Error Description in some of the alerts.
    Jay, This note is specifically for a situation where the 'where did the error occur' set to No Restriction. I don't think anything else is included in this fix .01 to patch 0.9 of SPS 12 of XI 3.0!!!
    My problem is that even the messageID variable is not getting replaced!!! In SP12 everything was perfect. After SP14, the errors are coming almost instantaneously to the inbox, but without any variable replacement.
    Best of luck,
    Kannan

  • Problems for retrieving image attributes

    Hi,
    I am a new user for Oracle interMedia and i have following problem.
    I have wroten ein java programm to retrieve the image properties. At First, the images (jpg, tif) are stored as BLOB in the table, then i use the function setProperties() to set the image attributes.
    PreparedStatement pstmt = con.prepareStatement("INSERT INTO btable VALUES(?, ORDSYS.ORDImage.init())");
    for (int ef=1; ef<=anzahl_summe; ef++){
    pstmt.setInt(1, ef);
    pstmt.execute();
    OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM btable WHERE bid = " + ef + " FOR UPDATE");
    while(rs.next()) {
    OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
    imgObj.loadDataFromFile(f_location[ef]);
    imgObj.setProperties();
    OraclePreparedStatement orpstmt = (OraclePreparedStatement)con.prepareStatement("UPDATE btable SET bild = ? WHERE bid =" + ef);
    orpstmt.setCustomDatum(1,imgObj);
    orpstmt.execute();
    orpstmt.close();
    Now if i use the functions getHeight(), getFormat(), ... for querying the properties, i will get just only the values for the image height, width and size. The other attribute values i get either null or ???. I don't understand why. The Bildforamte(jpg, tif)are supported by Oracle.
    Can you tell me what shall i do?
    thank you very much and greeting from germany
    rabbit

    Hi larry,
    thank you for your help. I have set autocommit off and commit in the end of the programm. I think, that is not a problem.
    I use the following table:
    CREATE TABLE bildtable_intern(bild_id int PRIMARY KEY not null, bild ORDSYS.ORDImage)
    My java programm:
    public class OracleBild_intern {
    public Connection connect() throws Exception{
    //thin driver is used
    conn.setAutoCommit(false);
    public void bildmessung(Connection con) throws Exception{
    PreparedStatement pstmt = con.prepareStatement("INSERT INTO bildtable_intern VALUES(?, ORDSYS.ORDImage.init())");
    for (int ef=1; ef<=10; ef++){
    pstmt.setInt(1, ef);
    pstmt.execute();
    OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM bildtable_intern WHERE bild_id = " + ef + " FOR UPDATE");
    while(rs.next()) {
    OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
    //I have also tried to use loadDataFromInputStream() and loadDataFromByteArray()
    imgObj.loadDataFromFile(f_location[ef]);
    imgObj.setProperties();
    OraclePreparedStatement orpstmt = (OraclePreparedStatement)con.prepareStatement("UPDATE bildtable_intern SET bild = ? WHERE bild_id =" + ef);
    orpstmt.setCustomDatum(1,imgObj);
    orpstmt.execute();
    orpstmt.close();
    pstmt.close();
    retrieveattr(con);
    public long retrieveattr(Connection con) throws Exception{
    OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM bildtable_intern");
    while (rs.next()){
    OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
    System.out.println("bild_id = " + rs.getInt(1));     
    System.out.println("bild_height = " + imgObj.getHeight());
    System.out.println("bild_width = " + imgObj.getWidth());
    System.out.println("bild_size = " + imgObj.getContentLength());
    System.out.println("bild_format = " + imgObj.getFormat());
    System.out.println("contentformat = " + imgObj.getContentFormat());
    System.out.println("compressionformat = " + imgObj.getCompressionFormat());
    System.out.println("mimetyp = " + imgObj.getMimeType());
    public static void main(String[] args) throws Exception{
    //call the methode connect()
    con.commit();
    con.close();
    I try again, but i get always only the values for image height, width and contentlength. Can you tell me, what ist wrong with this programm?
    Thank you very much and greeting aus germany!
    rabbit

  • Problems for view transactions va43 iw40 in Portal

    Hello,
    I need help solve problems in a portal;
    The portal is with problems of view and with the scroll bar in transactions va43 iw40, The scrollbar does not appear when using the transactions.
    What can this be?
    Someone help me?
    Thank you!

    Hi,
    Thanks Koti Reddy...
    There is a default setting for SICF Webgui ?
    Thanks
    Edited by: Antonio Carlos Santos Junior on Jul 25, 2008 3:48 PM

  • Viewing image and layer mask?

    Hi, thanks for stopping by and reading.
    I've a layer with a group of people on it over a layer with a background on it.
    The layer with the people has a layer mask which I've worked on to cut the people out...
    Now I want to work round the cut out edge (layer mask) subtly refining it.
    The image is going to be printed large so I need to pay attention to the detail... like strands of hair.
    Intuitively (to me) I cut more hair off as opposed to left more hair on - if you follow. Perhaps unconciously thinking it was the way to minimse work because if it looks ok then job done.
    Now of course I'm effectively working blind as I seek to refine the mask by adding-in soft blurred hair. (Hope you follow) So...
    Q: Is there a way to view the entire original image with the mask overlaid?
    I've come up with a working fix... I'm duplicating the layer with the mask, deleting the mask and adjusting the opacity so I can work through this new layer onto the layer mask below.... should I have approached this differently... more elegantly? Hind sight is a marvelous thing.
    How do sensible people approach this exercise..?
    Hope you'll share, thank you and keep well.

    Hi MTSTUNER & J Maloney
    I really appreciate the interest you've both taken in the question.
    Yes, J Maloney you would be correct. I was wanting to see the whole of the image, the masked bits and the not masked bits... as well as the mask too all simultaneously.
    I'm currently kicking myself that I've not explored the Masks panel. Don't know when it was introduced, I have kind of skipped a version of PhotoShop or two on my own machine - lame excuse, I know gov. The density idea is far more elegant than my solution. However, I did find that by creating the duplicate I've been able to colourise it so as to make the results of what I was doing really obvious visually. I like the invert idea too, so simple - and it might prove the best of the options... but I'll try it on another image as I've pretty much done this one - lots of hats, not much hair.
    No offence on the "last paragraph". My reaction was "it's not unasked" though I wasn't clear: "How do sensible people approach this exercise?"
    Thank you too MSTUNER, I appreciate the time spent.
    "Quick Mask?" occurred randomly to me. Something I've never bothered with, tending to go straight to Layer Mask work. I'll own up that Quick Mask has never managed to make itself part of my workflow, I've no idea why because I'm sure it should if I gave it time. However, a quick experiment hasn't produced a Eureka moment. I was hoping I could easily subtract or add a Quick Mask from/to an existing Layer Mask... nope, doesn't seem to want to - though it was a 'quick' experiment.
    Thank you again for taking the time and enjoy the rest of your day. Regards.

  • Is it possible to add a shortcut to one or two very select websites to the navigational toolbar for convenient, one-click entry (i.e., which toolbar currently has buttons for viewing bookmarks and browsing history)?

    I would just like to be able to click once to get to one or two very important websites, just as I can now click once to show my viewing history (or scrapbook) in the sidebar.

    That's what the bookmarks toolbar is for.
    But putting single bookmarks there can fill it up quickly. Rather than a keyboard shortcut you can create a '''keyword shortcut''' for the bookmark, and that bookmark can be anywhere and out of sight. I keep all (most) of my keyword bookmarks in one folder on my bookmarks toolbar with the name beginning with the keyword. Here is an example, next door neighbor liked it for their netbook used at TV
    '''Name:''' tv: TV Listings - Find Local TV Shows and Movie Schedules - Listings Grid | TVGuide.com
    '''Location:''' http://www.tvguide.com/Listings/
    '''Keyword:''' tv:
    '''Description:''' PPP (User must be custom TV choices at Yahoo/TVGuide), start with zipcode (uncheck timezone), uses cookies, do for not logged in and for logged in. Must be logged in to pick your favorite channels to reduce list size.
    '''Firefox Keyword Shortcuts'''
    *http://dmcritchie.mvps.org/firefox/kws.htm
    Bookmarks toolbar styling'''
    * Stylish :: Add-ons for Firefox<br>https://addons.mozilla.org/en-US/firefox/addon/stylish/
    * '''Bookmarks Toolbar Fx4 Blue/Folders, Red/Bookmarks''' - Themes and Skins for Browser - userstyles.org<br>http://userstyles.org/styles/46947/bookmarks-toolbar-fx4-blue-folders-red-bookmarks

  • Simple app to view images and do minor editing?

    If I download a photo or two I need an app to view them and do minor editing.  Preview doesn't allow me to save and is cumbersome to use.  i need a simple default image browser...not iPhoto.  Thanks.

    Picasa
    http://picasa.google.com/

  • How can i use adobe drive/cs4 for storing images and interact this with adobe cq5.4 DAM...

    Hi,
    Can anybody suggest me i want use adobe drive to store images and i want to access the images for my cq5.4 instance..
    I want to integrate drive to the cq5.4 dam for ignoring the dam burden on cq5 instane repository..
    Is it possible to use this drive? or is there any other way i can achieve my task?
    Thanks,
    Sony C.

    Adobe Drive software doesn't store images; it enables integration of a DAM system with Creative Suite and now Creative Cloud desktop apps.
    Adobe Drive 3 is the first version of the software to support integration with Adobe's DAM. This version was designed to work with CS5 and CS5.5 apps.
    We do not have a version of Drive that supports integration with CQ 5.4 DAM and CS4 apps.

  • Unable to view images and videos on file explorer ...

    hi. Im using a nokia E6. Im unable to view my images and videos taken using the phone camera if i go through the file explorer. But im a ble to view them through the gallery. Can anyone help me out here?. I've tried resetting the system. No change.

    hi, have you tried reinstalling the current firmware thru Nokia Suite on PC?

Maybe you are looking for