How to select area of an image in a ScrollingImagePanel ?

Hello! In my aplication i need to crop an image. My crop method works well, but i don't know how to select the area using mouse. The image is in a ScrollingImagePanel. If you can help me ...
Thanks for your atention !

The art is so simple to recreate in Ai if it took you more than fifteen minutes I would be surprised. Easy enough to make the house and then and the path to be filled as the shaped color field it sits on, us the pen tool or use the shape tools and the pathfinder.
The typ is easy enough with the text tool.

Similar Messages

  • Zoom the selected area in an image!!

    hi all,
    i heve created a an application in which user can select an area and on an image and then zoom that particular portion but when i zoom it the image keeps on going to the right bottom corner of the screen.I want my zoom to keep the selected area in the center of the screen.can anybody help me in thet.
    thanks
    sangeeta

    hi,
    can u solve ome more problem for me as u seem to be very comfortable in 2d.my problem is that once i'm able to zoom my image ,if i want to zoom it further either on mouse click or selecting a rectangle again on mousedrag,it throws an exception coz i'm not able to get either size or bofferedimage from the once zoomed image.
    do u have any suggestions:
    i'm sending my latest code
    private Graphics2D createGraphics2D(int w, int h) {
    Graphics2D g2 = null;
    if (bimg == null || bimg.getWidth() != w || bimg.getHeight() != h) {
    bimg = (java.awt.image.BufferedImage) createImage(w, h);
    g2 = bimg.createGraphics();
    g2.setBackground(getBackground());
    g2.clearRect(0, 0, w, h);
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);
    return g2;
    public void update(Graphics g) {
    paint(g);
    public void paint(Graphics g) {
    super.paint(g);
    try{
    t=new AffineTransform();
    //////added 09aug
    Dimension d = getSize();
    System.out.println(d);
    if(!first_paint){
    setScale(d.width,d.height - DRG_YPOS);
    first_paint = true;
    if(!image1)
    Graphics2D g2 = createGraphics2D(d.width, d.height -DRG_YPOS);
    g2.translate(((d.width/2) - ((zoomx*maxx + zoomx*minx)/2))
    + zoomx*scrollx,
    (((d.height-DRG_YPOS)/2))+scrolly);
    g2.scale(zoomx,zoomy);
    draw(d.width, (int)(maxy - (maxy- miny)/2) , g2);
    g.drawImage(bimg, 0, DRG_YPOS, this);
    System.out.println("image drawn for the "+counter+"time");
    counter++;
    System.out.println("counter is"+counter);
    System.out.println("image1 is"+image1);
    file://t= g2.getTransform();
    if(fzoom1)
    g.setColor(Color.red);
    g.drawRect(beginX,beginY,end1X-beginX,end1Y-beginY);
    System.out.println("drawing rect");
    if(fzoom){
    wx=beginX;
    wy=beginY;
    ww=end1X-beginX;
    wh=end1Y-beginY;
    bi = bimg.getSubimage(wx,wy,ww,wh);
    System.out.println("hello 2d");
    System.out.println(wx+","+wy+","+ww+","+wh);
    Dimension d1=getSize();
    Graphics2D g2d = bi.createGraphics();
    // g2d.setBackground(getBackground());
    int w=500;
    int h=500;
    System.out.println(w+","+h);
    System.out.println("g2d"+g2d);
    System.out.println("settransform callrd");
    // zoomFactor *=1;
    g2d.translate(100.0f, 100.0f);
    g2d.scale(zoomFactor, zoomFactor);
    System.out.println("scale called"+zoomFactor);
    file://zoomFactor++;
    g.drawImage(bi,50,50,w,h,this);
    System.out.println("w,h,bi"+w+","+h+","+bi);
    file://repaint();
    image1=true;
    file://zoomFactor++;
    file://fzoom=false;
    g2.dispose();
    }catch(Exception e)
    System.out.println("exception"+e);
    class IMS2DFrameMouseAdapter extends MouseAdapter implements MouseMotionListener{
    int mx;
    int my;
    int endx,endy;
    int X;
    int Y;
    Point point;
    public void mouseClicked( MouseEvent event ) {
    if(select)
    Dimension d = getSize();
    AffineTransform at = new AffineTransform();
    at.setToIdentity();
    at.translate(((d.width/2) - ((zoomx*maxx + zoomx*minx)/2))
    + zoomx*scrollx,
    (((d.height-DRG_YPOS)/2))+scrolly);
    at.scale(zoomx,zoomy);
    Point src = new Point(event.getX(),event.getY() - DRG_YPOS);
    Point pt = new Point();
    try{
    at.inverseTransform( src, pt);
    catch( NoninvertibleTransformException e)
    e.printStackTrace();
    pt.setLocation(pt.getX(), (maxy - (maxy- miny)/2 - pt.getY()));
    hitObject(pt);
    /*if(fence_zoom){
    fzoom2=true;
    }else
    fzoom2=false;
    public void mousePressed( MouseEvent event ) {
    if(fence_zoom)
    System.out.println("mouse Pressed");
    beginX = event.getX();
    beginY = event.getY();
    repaint();
    public void mouseReleased( MouseEvent event ) {
    end1X = event.getX();
    end1Y = event.getY();
    System.out.println("ENDX---"+endx);
    System.out.println("endy-----"+endy);
    if(translation)
    translatedrawing(endx - startx,endy - starty);
    if(fence_zoom){
    System.out.println("mouse released");
    file://end1X = event.getX();
    // end1Y = event.getY();
    fzoom=true;
    repaint(); file://updateSize(event);
    else{
    fzoom=false;
    public void mouseDragged(MouseEvent event) {
    if(fence_zoom){
    end1X = event.getX();
    end1Y = event.getY();
    fzoom1=true;
    System.out.println("mouse dragged");
    repaint();
    else {
    fzoom1=false;
    public void mouseMoved(MouseEvent event)
    thanks
    sangeeta
    "Gustavo Henrique Soares de Oliveira Lyrio" wrote:
    I think you are using the wrong drawimage method. If you have the selection retangle coordinates, you will need a method that draw this selection in a new retangle selection (your canvas or panel)
    Where goes my paintMethod:
    protected void paintComponent(Graphics g)
    g.drawImage(image, START_WINDOW_X, START_WINDOW_Y, WINDOW_X, WINDOW_Y, px1, py1, px2, py2, this);
    Take a look in the drawimage methods in the java web page. I think it will help.
    []`s
    Gustavo
    ----- Original Message -----
    From: sangeetagarg
    To: Gustavo Henrique Soares de Oliveira Lyrio
    Sent: Thursday, August 16, 2001 9:14 AM
    Subject: Re: Re: re:zoom in 2d
    i'm sending u the paint method.but still i'm not able to select the desired area .it zooms the while image.tell me if there is any error in the code.
    file://if(fence_zoom)
    if(fzoom1 )
    if (currentRect != null) {
    System.out.println("hello");
    g.setColor(Color.white);
    g.drawRect(rectToDraw.x, rectToDraw.y,
    rectToDraw.width - 1, rectToDraw.height - 1);
    System.out.println("drawing rectangle");
    fzoom1=false;
    if(fzoom)
    bi = bimg.getSubimage(rectToDraw.x, rectToDraw.y, rectToDraw.width, rectToDraw.height);
    System.out.println(rectToDraw.x+","+ rectToDraw.y+","+rectToDraw.width+","+ rectToDraw.height);
    Graphics2D g2d = bi.createGraphics();
    g2d.setBackground(getBackground());
    g2d.clearRect(0, 0,0,0 );
    file://ZoomIn();
    file://t= g2d.getTransform();
    file://g2d.setTransform(t);
    System.out.println("settransform callrd");
    // zoomFactor *=1;
    g2d.translate(100.0f, 0.0f);
    g2d.scale(zoomx, zoomy);
    System.out.println("scale called"+zoomFactor);
    zoomx += ZOOMSTEP;
    zoomy += ZOOMSTEP;
    file://zoomFactor+=zoomFactorupdate;
    g.drawImage(bi, 0, 0, this);
    // g.drawImage(bi,10,10,this);
    repaint();
    fzoom=false;
    thanks
    sangeeta

  • How to select and edit background images in templates?

    I open a template in pages ('elegant brochure' for example) and there is a background image that takes up the entire background of the page. When I click on the image, instead of being surrounded by the 6 little circles (that allow resizing) there are little x's. I can't move or change the image. I thought this was a master object, but it does not have blue circles, and I have 'master objects selectable'. I find it a little annoying that I want to use a prepared template but edit it beyond what apple gives me. Why can't I have more control (short of making a template from scratch)? How do i edit the images that have x's surrounding them?

    easiz,
    The x's indicate that it's a locked object. Click on Arrange > Unlock to edit it.
    -Dennis

  • How to select multiple in-line images

    Is there any way to select more than one in-line image at the same time so that transformations and object styles can be applied in bulk rather than individually?

    A Find/Change might speed it up using the Object interface.
    Mike Witherell in Maryland

  • How to selectively lighten/darken an image

    Good afternoon, I e-mailed this yesterday, however I didn't get a responce.   When I am in the develop mode, and I want to darken, or lighten the background, or the fore ground, or anything in the picture. Do I use the Radial Filter, or the adjustment Brush? Can you please tell me how to use both of these tools?
    Kenny           
    Message title was edited by: Brett N

    A sub-folder is just a folder within another folder. So you are just creating a new folder inside of an already existing folder. If you want to do this in Lightroom, go to the Folders panel in the Library module. Highlight the folder you want to be the parent (the folder you want the sub-folder to be within), click the Plus button in the upper right of the Folders panel (to the right of the Folders title) and choose "Add Subfolder".

  • I have 4 equal oblong shape created with borders How do I go about knowing what size the selection area is so that I can crop an image to fit. I don't want to use paste in then adjust the bounding box to suit

    I have 4 equal oblong shape created with borders How do I go about knowing what size the selection area is so that I can crop an image to fit. I don't want to use paste in then adjust the bounding box to suit

    What do you mean a moderator

  • Select a small area and then use the selected area to paint other areas of the image

    Hello
    My problem is a little hard to explain but I try.
    What I want is to select a small area and then use the selected area to paint other areas of the image. Do not know how to do it and if it's stamp tools or pen tools to be used?

    Howdy.
    Sounds like you're looking for the Clone Stamp Tool. Set to Aligned, the sampling point resets when you release the mouse after painting. Untic Aligned and the sampling point stays in the original spot for the next stroke. It's a good idea to clone onto a separate layer with Sample All Layers selected. Then you don't lose original pixels. Allows you a do over later.
    FWIW.
    Peace,
    Lee

  • How to separate content area from the image area in cs6

    how to separate content area from the image area in cs6? looks just fine in design view but when opened up in explorer my text /content area is over the image area. the content is suppose to be below the image not over it. How do I move it down? Everything I have tried has not worked ;(

    Is your image in the CSS (background) or the HTML (foreground)? 
    Try copying and pasting this code into a new, blank document.  Change placehold.it images to your own.  Save and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with CSS 2-Col Layout</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if IE]>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <![endif]-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <style>
    /**CSS Reset**/
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    img {
        width: 100%;
        vertical-align: baseline;
    /**Layout**/
    body {
        padding: 0;
        width: 90%; /**adjust width in px or % as desired**/
        margin: 0 auto; /**this is centered**/
        background: #CFF;
        color: #505050;
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 100%;
        box-shadow: 2px 2px 4px #333;
    header {
        margin: 0;
        padding: 0 1%;
        width: 100%;
        background: #B00202;
        color: #FFF;
    /**top menu**/
    nav {
        background: #EAEAEA;
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold
    nav ul {
        margin: 0;
        padding: 0;
    nav li {
        list-style: none;
        display: inline-block;
        margin: 0 3% 0 5%;
    /**menu link styles**/
    nav li a {
        color: #666;
        text-decoration: none;
        line-height: 2.5em;
        padding: 6px;
        border: 1px solid #CCC;
    /**on select or mouseover**/
    nav li a:hover, nav li a:active, nav li a:focus {
        background: #CCC;
        color: #505050;
    #wrapper {
        background: #EAEAEA;
        overflow: hidden; /**float contaiment**/
    /**main content**/
    article {
        padding: 0 2%;
        background: #FFF;
        float: left;
        width: 70%;
    figure {
        width: 80%;
        margin: 4% auto 4% auto;
        text-align: center;
    /**right sidebar**/
    aside {
        padding: 0 2%;
        float: left;
        width: 30%;
    footer {
        clear: both;
        background: #B00202;
        color: #FFF;
        text-align: center;
        margin: 0;
    /**typography**/
    header h1, header h2 {
        display: inline;
        color: #F5DD83;
        padding: 0 1%;
    h3 {
        color: #2294AE;
        margin-bottom: 0
    p { margin: 0 0 1em 0 }
    figcaption {
        text-align: center;
        font-style: oblique;
        font-size: small;
        color: #2294AE;
    </style>
    </head>
    <body>
    <!--begin header-->
    <header> <h1>Sitename</h1>
    <h2>|  Responsive CSS Layout</h2>
    </header>
    <!--begin navigation-->
    <nav>
    <ul>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    </ul>
    </nav>
    <div id="wrapper">
    <!--begin main content-->
    <img class="banner" src="http://placehold.it/1056x100/198EBA/FFFFFF&text=Banner.jpg" alt="banner" />
    <article> <h3>Article</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <figure> <img src="http://placehold.it/500x325" alt="placeholder">
    <figcaption>Figure 2 Caption</figcaption>
    </figure>
    </article>
    <!--begin right sidebar-->
    <aside> <h3>Aside</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <hr>
    <p>Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <hr>
    <p>Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </aside>
    <!--end wrapper--></div>
    <!--begin footer-->
    <footer> <small>© 2014 Your Site Name. All rights reserved</small> </footer>
    </body>
    </html>
    Nancy O.

  • How do I identify and fix images Elements 10 believes are corrupt?

    During the past three days I have had problems with the functionality of my Photoshop Elements 10 and  received several messages indicating that the catalog is corrupt.  How do I identify and fix images Elements 10 believes are corrupt?

    Thank you for the prompt reply unfortunately the fix did not work.
    Let me provide some more information that may help you diagnose this problem.
    I run Elements on a PC. The operating system is Microsoft Windows 7 Home Premium. The System Type is x64-based. The processor is AMD A8-3850 APU with Radeon(tm) HD Graphics, 2900 Mhz, 4 Core(s), 4 Logical Processor(s).  The Hard Drive is 1.81 TB, and 1.5 TB of this is free.  The Ram is 16 GB.  Everything else works great.
    I have used Photoshop Elements for about 10 years, during which time I have upgraded to newer versions 5 or 6 times. I have used Elements 10 during the past 2 years.  I already bought Elements 12 but I am trying to repair this issue before I upgrade to it. I have approximately 65,000 photos in my catalog. All but the last 2,000 are backed up.
    During the past few days I encountered several problems with the functionality of my Elements 10; all errors provide messages indicating that the catalog is corrupt. Forexample, when I edit a photo in my catalog, the thumbnail image of the newly edited versionwill not display.  When I imported new photos, the thumbnail image would not display.  In all cases the photo image was replaced by a ?.
    I tried to correct the thumbnail problem by repairing and optimizing the catalog. In either case I received the same message that the catalog had not been repaired/optimized because some images were corrupt. However, despite this message, the thumbnails for the newly imported photos appeared but the thumbnails for the recently edited photos still have not.
    Currently, I cannot import new images, edit, delete or even stack photos.  I can still view, search for, copy and delete photos.  When I try to import a photo a new photo I get the following messages - ”the requested change could not be completed because the current catalog is corrupt.  You can attempt a repair in the file catalog dialog."  - "Nothing was imported.  The file(s) or folder(s) selected to import did not contain any supported file types or the files are already in this Catalog." and "The catalog could not be repaired, if you have a recent catalog backup, you should restore it."
    I have visually inspected the catalog and found about 25 recently imported photos that have a thumbnail image but lack the photo's id (i.e. img_3075.jpg would be replaced with ?). They are my photos from my camera and no different that the other 300 images I imported at the same time. However, these images in the catalog are blurry.  When I check the image in the My Pictures folder the image is fine and properly located between img_3074.jpg and img_3076.jpg.  I attempted to reconnect but received a message that there are no files to reconnect. I cannot delete the images from the catalog and If I delete them at the source (in the file folder) they still remain in the catalog view.
    Howdo I identify and fix images that Elements believes are corrupt? 
    Thanks in advance for any thoughts.

  • How to blur/darken a selected area?

    Using PS Elements 11 I can easily selecte (quick selection tool or smart brush tool) an area of a photo that I want to adjust, but I'm adbsolutely stymied as to how to apply the adjustment I want to that selected area???  How do I do it???  I have the area selected (e.g. I've slected a very bright sunlit area of a photo) that I want to make darker ... how do it do that?
    Or I've selected an area of a photo that, after using the composition tool, has a lot of serious jagged lines, and I want to blur/smooth that area ... I've tried every conceivalbe combination (max radius etc.) of the blur filter, but nothing seems to significantly blur the selected part of the image. I would have thought that, given a "maximum" blur "setting", it would be possible to blur a selected piece of image into a uniform monotone blend ... is that not possible?

    For your first problem, I would suggest you to do the following:
    Make a selection around the area you want to modify using selection tool ( quick selection/marquee selection tool), which I guess you have already done.
    with the selection tool selected, right click the inside the selection and choose "layer via copy"
    On the new created layer, you can apply adjustments. The adjusments are all clubbed under Enhance menu. For your particular need, I would suggest you to use Level correction from Enhance > Lightening> Levels
    For your second problem, I would suggest you to use the blur tool around the jagged lines with appropriate settings. You can use the blur tool again and again over an area to increase the amount of blur applied

  • How to select frame content (image) VBS

    ThisPage = DOC.ActivePage
    CurrentElement = ThisPage.place ("C:\Ancient\The Lab.EPS")
    mySelection = myInDesign.Select(CurrentElement, 1919250519)
    I'm trying to select the frames content (which is an image) to determine if the image's geometric bounds exceed the size of it parent frame geometric bounds.
    That's the snippet I have so far. I just need help with the sub-selection and obtaining it's bounds. I know how to calculate the rest.

    are you sure that your code works ? ;)
    should be:
    Set myInDi = CreateObject("InDesign.Application.CS2")
    Set myDoc = myInDi.ActiveDocument
    set ThisPage = myInDi.ActiveWindow.ActivePage
    set PlacedImage = ThisPage.Place("C:\Ancient\The Lab.EPS")
    mySelection = myInDi.Select(PlacedImage, 1919250519)
    and your current selection will be placed image
    robin
    www.adobescripts.com

  • There no lenses listed in the profile selection area. How do I fix this I use canon gear that should

    There no lenses listed in the profile selection area. How do I fix this I use canon gear that should be there. Help!

    There are different profiles for camera Raw, and for camera JPG - and LR filters the lenses list, to show only the profiles available for the particular image you have highlighted.
    If you have selected a JPG image, you will usually see a much shorter or even an empty list of lenses - as compared with what you see if you select a Raw image. Most lens profiles with interchangeable-lens systems, are designed to correct Raw images. On the other hand, if you select an image taken with (say) a compact digital camera or supported cameraphone, any support for that will usually be in JPG.
    You can get a free Lens downloader utility from the Adobe Labs website, which gives access to the full library of lens profiles that the general Adobe user community has uploaded. Each one listed, says whether it is for Raw or not. Some of these will have been generated by end users (using another free utility) and are of variable quality. But you may get lucky, and find just what you need. Or, if it is a rarer lens or if you have particular requirements, it is not so hard to make your own profile using the Adobe utility.
    You do not need to use a profile made specifically for your camera model. The only limitation is: a crop-sensor-generated profile, will not include the right optical coverage for a fullframe camera model.
    Another option is to "kludge" a copy of an existing Raw-only profile, so that it supports JPG instead. This just requires a text editor - you change a line within a structured-text file, from Camera Raw="True", to "False". Then you save that into the Lens Profile folder in the Adobe / CameraRaw area inside your user login's "application data" area.

  • Updated iPad 2 last night.  All movies (9) on my iPad can no longer be viewed.  The movie plays but the photos and scene selection are blank. How do I fix this

    Updated iPad 2 last night.  All movies (9) on my iPad can no longer be viewed.  The movie plays but the photos and scene selection are blank. How do I fix this

    Quit the app and restart the iPad.
    In order to quit or close apps - Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Try the videos app again.

  • My IT department transferred images from my Blackberry to my Iphone, they are in "Photo library". there is 1500  images, many are duplicates and when I hit edit, delete is not an option. how do i delete the duplicate images?

    my IT department set up my Iphone and transferred the images from my Blackberry. I have over 1500 images showing in "Photo Library" and lots of them are duplicates (same image). When I hit edit it will not allow me to delete them, delete is not an option shown. How do I get rid of the duplicates?
    In Photo library, when I hit edit the only avail options are share or add to. Please help, i dont want 1500 images on the phone.

    Are they really duplicates or are you simply referring to the Photo Library?
    Just as a song is in your itunes library and the exact same song can be accessed via a playlist, all synced photos are in the Photo Library and those exact same photos ( not duplicates) can be accessed from the chose folder/album.
    You delete these pica the same way you put them there.  The sync process.  Deselect them in itunes and sync.

  • How to select entire PDF document (scanned image content) and then edit?

    I have a PDF file of a booklet that was created by scanning the pages as images. Whoever did the job aligned everything nicely, but for some reason ended up with an output where the pages are all too dark. The white parts of the pages are gray. I can go into the Advanced Editing toolbar and use the tool on the far right, right click the page and choose Select All, then Edit Image and it opens in Photoshop. There, I just change the brightness/contrast and save it. Then when I go back to the PDF the page looks great. Problem is, it only does one page at a time under the "Select All" option, and the booklet has more than 40 pages. Is there a way to select all the pages then edit them in Photosop all at once somehow?

    I tried the other things suggested, but they didn't work, either. I ended up creating a new document and copying all of the text into the new document where it can be selected like normal. Go figure...

Maybe you are looking for

  • IPhone 3G - Can I open a shared calendar on my exchange server?

    Active sync on the iPhone works great for contacts, email, my calendar, accepting/declining invitations, etc. I am not sure if it is possible or if I just don't know how to navigate the device to do this; can I open a shared calendar in my organizati

  • Variable Exit for fiscal week and weekday previous year

    Hi experts. in a reports I'm entering a date manually through a variable ZDATE1 for current year. I need to find out the corresponding date last year based on the week number and week day for the entered date. So, If i enter date 08/21/2009 , and tha

  • PHP Namespaces in Dreamweaver?

    HI I was wondering if Dreamweaver supports PHP namespaces?  I've tested the following code in Dreamweaver CS4 it tells me I have an error in my code (even though it executes flawlessly on the server). person.php <?php namespace pandemicode; class Per

  • CUF in display only mode ?

    Hi, Is it possible to have a CUF in display only mode ? In BBP_CUF_BADI_2  method modify screen ? If yes : how ? Kind regards, Yann

  • Help updating ipod IOS software

    I reset my 4th gen ipod touch 32GB so I could change the apple id associated with it and now my software wont update past 6.1 IOS regardless of whether I'm plugged into my computer or not. HElp???