How to add gifs/jpgs to project

Hi,
I was wondering how can I add some pictures to a project, so that they will automatically be included in a jar file, when I try to deploy the project. So far I've been doing it manually, but I'm sure there must be an automatic way.
Thanks,
Sérgio S Bastos

Lon,
What version of Jdev are you using? You must have some special issue
because the +/X buttons at the top of the navigator work for most folks when
the jpr is checked out or writable.
I do find myself editing the jpr directly (with jdev down) because of
a few causes.
From my experience web tier files get put into the war by simply being in the file system (scm) in the public_html tree.
They don't have to be in the jpr. So css/main.css is not in our jpr but gets deployed into the war.
I'm going to guess that you're use of "in the jar" means something different than my context of
deploying a web app into a war that's wrapped in an ear??
Good luck, curt

Similar Messages

  • How to add a new column (Project Number) in the action items table under NPD Module?

    There are two projects with same name and created by same person in NPD.
    So when it is displayed in "Action Items" table, It looks similar.
    To avoid this, I need one more column (Project Number) to be added in the "Action Items" table and " Strategic briefs and projects" table.
    So, How to add a new column (Project Number) in the "Action Items" table and " Strategic briefs and projects" table under NPD Module?
    Please do the needful.

    There is no out of the box configuration available to add columns to NPD action items.   As always we welcome enhancement requests. 
    Thanks
    Kelly

  • How to add a jpg. watermark to images in bridge?

    I'm trying to work out how to add a jpg. watermark to my images in bridge and also how to batch add the watermark.

    add a jpg. watermark to my images in bridge and also how to batch add the watermark.
    You can't do so in Bridge, only option for a watermark inhere is via the Output Module on a PDF contact sheet.
    Best try this question in the Photoshop forum, they might have better answers because you need to create an action in PS to get what you want.

  • How to add jar files in project?

    Hi everyone,
    Im stuck at one problem. I have third party API which are in jar files. I want to add reference those jar files in my projects. How to add all jar files at once in my project? Also, jar files are in different folders, like
    rootFolder
    {noformat} |- jar1.jar{noformat}
    |- jar2.jar
    |- Folder1
    | |-subjar.jar
    | |-subjar2.jar
    |- Folder2
    |- moreJars
    How to add all these jar files at once in my project? If u need more information, I will provide...
    Thanks in advance

    You can put the external references the in manifest of your own jar or you can do that at the bootstrap shell script.

  • How to add a custom web project to creator?

    I am using Creator EA2. I want to add a custom web project, which is created based on standard web project, to Creator. I wonder if it is possible by creating a jar and put it into a directory or I should develop a plugin with layout description files, templates?
    Thanks
    jnewbie

    If your struts-enabled project is already compatible with Creator (i.e. you can open it in the IDE) you can get close to what you way using the project template facility available in EA2.
    Select Tools->Project Template Manager. From the template manager dialog, click the Add... button and browse to your struts project. The project should appear under the My Templates node in the dialog. Close the dialog and bring up the New Project Wizard. You should see a new project category called My Templates which should contain an entry to your custom project. You can now select this project and proceed through the wizard which will actually clone the project for you as if it were a custom project type.

  • How to add a Captivate 5 Project into RH for Word?

    I have to add a captivate simulation project into my Help project, and was wondering if anyone knows if it is possible. I searched Captivate's help, and they say you can with RH HTML, but I am currently using:
    1. RH for Word Build 8.0.0.203
    2. Captivate 5.0.0.596
    The Help project is a Single Source Layout with WinHelp 2000 primary layout. Any ideas?
    eangel

    Hi Rick,
    I did test the url from my browser's address bar, and it worked fine. I cannot get this to work from the help project.
    Hope someone can help.
    Thanks,
    eangel

  • How to Add a Captivate 6 project to a Word Press page?

    I am using Word Press as my website. I have some projects that need to be place in the website but I don't know how to do this. The main problem is that the project a big, around 4 GB in size and they been place in my FTP.
    I just finish converting the project into HTML5 and now I want to place it in the web with the capability of playing in flash and also HTML5.
    Is anyone know how to do this, or maybe had the code for it?
    Thanks for the help.
    Cristian

    Hello Christian,
    I have not tried this but i found some threads which might be helpful for you : http://forums.adobe.com/thread/967803
    http://forums.adobe.com/message/5632353
    Thanks and Regards
    Himanshu Satija

  • How to add files to xcode project with the help of applescript

    i am tried but got some of the error which is enable to solve by myself becuase i am new in applescripting
    tell application "Xcode"
    open "Macintosh HD:Users:Nitesh:Desktop:sumeet:RND:iPhone:iPhone_V2_Ref_2.5.01:iPhone_V2.xcodep roj"
              tell project "iPhone_V2"
                        set resourcepath to "/Users/Nitesh/Desktop/sumeet/RND/images" (*full path of my folder that i want to add*)
    set filelist to {}
                        tell application "Finder"
                                  set filelist to (name of items of (POSIX file resourcepath as alias))
                        end tell
                        tell group "images" of root group
                                  repeat with i in filelist
                                            set filepath to resourcepath & (contents of i)
                                            set myfile to make new file reference with properties {namecontents of i), full path:filepath}
                                            add myfile to first target of front project
                                  end repeat
                        end tell
              end tell
    end tell
    the issues is:
    error "Xcode got an error: Can’t get group \"images\" of root group of project \"iPhone_V2\"." number -1728 from group "images" of root group of project "iPhone_V2"

    Applescript for this issue is more simple . Try to use my script that is here

  • How to add lib. in my project - I'd like to use libcurl.

    I was told that libcurl was good for getting http data.
    So I spend 2 days finding out how to build with libcurl source in Mac OSX.
    Oh my gosh!
    I found out that libcurl was included already.
    Therefore, The only thing I have to do at this time is to include this library into my project and use it.
    But I am not good at codewarrior and Mac OS while I am good at MSVC.
    Could you tell me some advice if you may not feel hard to describe it?

    ykish,
    The dylib is a dynamic library. If there is a libcurl.lib file, that's the one you are looking for.
    I wanted to use a static library (so the plug-in would not be dependent on any external files), so I created a CodeWarrior project and complied libcurl into a static library. I don't have a lot of experience with libraries, but what I created seemed to work for me.
    If you want, I can send you the CodeWarrior project and source that I used. It is an older version of libCURL (a year or two), but you can probably just substitute the newer source files for the existing ones if you want the latest version. If you are interested, please send me an email and I'll package it up and send it to you. You can find my email address by clicking my name at the top of this message.
    Cheers!
    -- Jim

  • How to add task & subtask in project module?

    Hi experts,
    I am using R12.
    The project is already created without any task and subtask. Now i need to create task & subtask alone .
    Is there any API is available to complete?
    Please suggest me in this area.
    Thanks in advance
    kanish

    Which structure do you use,Finicial or Workplan?
    Oracle has API to import the project and tasks.The API is pa_project_pub.create_project.You can find more information in the UserGuide 120pjapi.
    If any problems when you use API,you can ask me.

  • How to add IKM to project

    While saving the project i am getting error "Critical Target DataStore No IKM is selected for this interface."
    how to add IKM to the project.
    any help is appreciated.
    Edited by: nitya on Sep 10, 2010 7:25 AM

    If scroll down in the project , you will find Knowledge Modules - > Expand that and you will find Integration ( KM) right click on that and Import Knowledge Module and you find a new Popup Box to import KM . S
    elect the Knowledge Modules you required and import .
    Once done use that in the Interface.

  • How to add a library (libSomeRandomlib.so) to a project....??

    Ok, so I've been trying to get CERN's ROOT program/libraries to work in an xcode project for a while, but I'm running into one really weird error, and I think I may just not know how to add a library to a project correctly.
    Suppose I create a new Xcode C++ command line tool project. I hit Build and go, and it gives me a nice little Hello World! in the console, just as it should. If I then click on the project in Groups & Files, go to Project>Add to Project..., and choose, say, libCint.so, from my root/lib directory, and click ok, then click Build & Go, I get an error in the console:
    dyld: Library not loaded: @rpath/libCint.so
    Referenced from: /Users/paulthompson/Documents/Programming/Build Products/Debug/LibraryIncludeTest
    Reason: image not found
    sharedlibrary apply-load-rules all
    Data Formatters temporarily unavailable, will re-try after a 'continue'. (Cannot call into the loader at present, it is locked.)
    My assumption is that either I'm missing a step in the process of adding a library, or else there is something jacked up with the libraries themselves. Anyone have any advice?
    Thanks,
    Paul
    EDIT* Oh, I should mention that the actuall binary that gets built after adding the library WILL execute properly in the Finder, or from terminal, just not with the Build & Go, or Go commands from within xcode.
    Message was edited by: TraxusIV

    TraxusIV wrote:
    Results of otool:
    LibraryIncludeTest:
    @rpath/libCint.so (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 123.0.0)
    Macintosh-9:Debug paulthompson$ otool -L /Applications/CERNRoot/root/lib/libCint.so
    /Applications/CERNRoot/root/lib/libCint.so:
    @rpath/libCint.so (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    I honestly don't know much about @rpath. I found this page that explains it a bit more: http://blogs.sun.com/dipol/entry/dynamiclibraries_rpath_andmac
    So, since I don't want to deploy with the environment variable set, I should ask, what IS the correct, MacOS X way to do it?
    The best way to find that is to look at how Apple does it. They put frameworks in /System/Library/Frameworks and regular shared libraries in the standard places. You can do the same. Put your frameworks into /Library/Frameworks and your shared libraries into /usr/local-based paths.
    If you want to create stand-alone executables that can be installed via drag-n-drop, you can put shared libraries inside the application bundle. If your shared libraries/frameworks are elsewhere, you will need some sort of installer to get them installed.
    I've been sifting through Apple's developer documentation but I have yet to find a concise, straightforward explanation of how to add shared libraries. I'm horribly confused at this point. Is there a good tutorial available anywhere for both the general unix case of linking to dylibs and .so's, and the Mac specific case?
    Hopefully someone else knows an answer for this one.
    *EDIT* I do already have the variable defined both in ~/.MacOS/environment.plist and also in Xcode as an additional user variable.
    I'm not sure about the whole RPATH thing. Setting environment.plist will define environment variables for use in the Finder, but that is really a hack. There are better ways to do it, but if you are porting some open-source programs, that may be the only way. You should be able to define those variables in Xcode. You have to selected the debug executable under "Exectuables"

  • How to add newly imported audio - as a new storyline/angle to existing multi cam Project??

    I have a 6 camera multi cam Music Video Project I have been working on in depth for 5 days. The "band" has sent me a new & improved .wav file to replace the audio I have been working with on one "song". I have imported it into the event, cannot figure out how to add it as a new angle (that I will manually sync on the timeline) and then make it the active audio monitor angle. I see ways to "connect it" but not how to have it appear in the 6up display & on its own story/time line in the precision editor. This is like reinventing the wheel. I am losing mu mind. Please help?
    Thanks

    Man oh man. I need to take a break & eat somthing, how embarassing. I swear I knew that but had an attack of hysterical blindness or... the disclose arrow>add new...  Thank You Tom for your quick & thouriough reply. Have a swell holiday.

  • How do I move a music file in iTunes on my PC onto my iPad to add to an iMovie project?

    How do I move a music file in iTunes on my PC onto my iPad to add to an iMovie project?

    CBellC-
    I do not have iMovie, so I can't try this!
    Run iTunes with your iPad connected to the computer, either by the USB cable or by WiFi.  Select the iPad under DEVICES in iTunes.  Click on Apps at the top of the window and scroll down to File Sharing.  If iMovie appears there, select it.  The Documents window to the right is where you transfer files to (Add) and from (Save To) the iPad.
    Fred

  • How to add class file to the project in netbean

    Hi,
    I am not sure if it is the right place to put the question. I just cannot find the way to add my existing java class file into the project in net bean.
    Anyone can help?
    Thanks a lot

    Look at the "classpath" entry on the Index tab in NB's Help. There are entries there that explain how to add existing classes and libraries to a project.

Maybe you are looking for

  • [Request] Amazon MP3 Downloader

    Amazon has released a Linux version of the Amazon MP3 Downloader program.  It allows you to purchase and download entire albums of DRM-free MP3s at a discount over buying the MP3s one at a time. They've only packaged it for Ubuntu, Debian, Fedora, an

  • Problem in displaying title in smartform

    hi all, I m developing a smartform in dev server. While i m directly checking the output by executing smarform i  able to see the main title ( hard coded in title window, with no condition, font size 16, bold, arial) . While i test the same in testin

  • Mapping dilemma

    I'm stuck with this mapping issue and cannot find a way out on my own. It seems rather simple to look at. In my source file I have a REF tag with several qualifiers(field-type) such as AB, BC, CD, etc. I want to map the value stored in AB to my targe

  • Linking purchase receipt id with GL report

    Hello, i'm a beginner in Oracle development (please bear with me), i have a task to modify a GL report (which has the journal id, batch num info) to include the receipt num from Purchasing. I was plodding on the oracle panels when i stumble upon this

  • HT3529 how do I sent a group message to non-smartphones?

    how do I send a group message from my iPhone 4S to non-smartphone users?