Design Tool for WebPages

I would like to know which tools are there for creation of .gif or .png images used for building
a page layout i.e. professional looking bars, backgrounds, tabs, ... These tools do not need
to provide a coffee brewing services in addition. I want to simply:
1. create a tab gifs (left, middle, right) and give it a nice color, adjust the size and save it,
2. create some othere background images, size them, color them and save them,
3. create some round shape corners form my reports,
4. eventually choose between couple of file formats to see how fast they load and
5. that's actually it!
Any recomendations (doesn't have to be freeware).
Denes Kubicek

Denes,
You didn't mention what operating system you were using. If Linux they are dozens of free graphics creation packages. See www.SourceForge.net If you are using Windoz then Adobe Fireworks is an excellent choice. You can download a 30day free trial from Adobe. Version 9 is due out soon, so you may be able to get version 8 at a discount price soon from vendors other than Adobe.
Hope this helps.
Keep Smiling,
Bob Rudolf

Similar Messages

  • WYSIWYG GUI design tool for the JavaFX platform

    hi can anyone help me where to download this tool (WYSIWYG GUI design tool for the JavaFX platform) ?

    gimbal2 wrote:
    rukbat wrote:
    gimbal2 wrote:
    That's a different question entirely dude. Open a new thread with a proper title and be sure to give more information than you're giving here; the exception you get and the code that "does not work" is especially important.They already had a new thread, four minutes before trying to hijack their own issue here.
    Ensemble  Example :  Minimize, Maximize  (pbm)  after drag and move
    Hopefully they'll reply to themselves over there with sufficient information for someone to give a proper reply.I object to this behavior. Someone should nuke something.Consider it done.
    This thread is locked because the O.P. has mucked it up.

  • Design Tool for 3-axis graph

    Hi everyone. I'm looking for an online tool or software which will help me plot a 3D graph with 3 axis, and three reference ranges. It would be helpful if it's possible to edit the design afterwards (like for example in Illustrator). Thanks!

    Honestly wasn't trying to be funny.  Did you look at the Illustrator tutorial on that results page?
    http://ndesign-studio.com/tutorials/3d-graphs
    Nancy O.

  • Is there any designing tool for jasper reports

    Hi Friends,
    i want some information, some one is told in jasper reoperts one dising tool is there this is just drag and drop feciity .
    can u give me that information
    Regards
    Raghava

    Yep. iReports

  • Can Flex make a Design Tool with a quality output file?

    Hi there,
    I have a team of developers working on a web-based design tool for a large-format print shop. They built the prototype on a Flex platform and used ImageMagick to handle text and image effects.
    Unfortunately, ImageMagick cannot produce the quality of output file we need for our products (prints up to 3 ft by 6 ft / 1m x 2m). It rasterizes all of the design objects, including text and vector clipart.
    Is it possible for Flex to handle all of these elements (object rotation, scale changes, etc.) and output a final design to high quality PDF or AI files without ImageMagick?
    I'm just not sure if my developers are missing something or if they're just not communicating the technical challenges involved in creating such large, high quality output files for a custom, web-based application.
    Many thanks in advance for any insight!

    I'm still not sure I understand what you need.  Sounds like the image map is the same for all the pages, but the image itself is different, although the images are the same size on each page.  Is that it?
    In that case, you could do this in a number of ways, but the best might be -
    Make the page have a transparent PNG/GIF image the same size as the map that has the 5 mapped areas defined on it.  Make the container for that image have a CSS BACKGROUND image that is the actual map.  Specify this CSS background image's path in an embedded stylesheet in the editable region of the head of the page.
    With this as the template, all you need to do on each page is to respecify the background image - since the embedded stylesheet is in an editable region that's do-able.  In other words the TEMPLATE would be -
    <html>
    <head>
    <!-- TemplateBeginEditable name="head">
    <style type="text/css">
    #foo {
         background-image:url(path_to_map.jpg);
         background-repeat:no-repeat;
    </style>
    <!-- TemplateEndEditable -->
    </head>
    <body>
    <div id="foo">
         <img width="map_width" height="map_height" src="transparent.png" usemap="#foomap">
    <map name="foomap">
    </map>
    </body>
    </html>
    The map image can, itself, be in an uneditable region of the page....

  • Errors when compiling the web service (SAP Web Service Design Tool)

    After downloading and installing the SAP de Web Service Design Tool (for Crystal Reports Server) I created a connection, a simple query and was able to deploy a web services. I tested the web service with an Xcelsius dashboard within InfoView. Thereafter I created a second connection (other name but same ODBC connection / server) and created another simple query with two date(range) parameters and a group by year and month function in order to do a select count(). It executes fine, but when I try to publish the web service I get an error.
    There are errors when compiling the web service.
    Is does not say whatu2019s wrong or how I can solve this problem.
    Who can help me?
    Some notes:
    1) Within expert mode I used a MONTH() SQL function which does not show in the normal mode.
    2) It seams that the u2018administrationu2019 of Web Service Design Tool got u2018corruptedu2019 after only creating the two connections, queries and services mentioned above. I believe so because I could select one of two queries when I created the second service, but within the current connection I had only one query.
    Thanks for any help,
    Ron
    ADDITIONAL INFO: The parameters seam to be the problem. After removing the parameters I can publish the service. But without parameters it is NO SOLOTION.
    Edited by: RonKoudijs on Aug 26, 2010 6:28 PM

    Hello Taylan,
    I think the error that you received was due to packaging issues.I placed the
    UtilClass.java file under a directory called data which was present under
    the project directory.
    When you want to access a java class, you can either place the compiled
    class file in the WEB-INF/classes folder or you can place the java file
    under the project directory.
    I have attached the sample project that I created with your files.
    Let me know if you have any other questions.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "taylan" <[email protected]> wrote in message
    news:3d6351b0$[email protected]..
    >
    I am trying to write a simpe web service in WebLogic Workshop, but havingan error
    which I could not understand. Could you please help me? Thanks in advance.
    Regards,
    Taylan
    My web service code is like belows:
    import weblogic.jws.control.JwsContext;
    import data.*;
    public class WebService1
    /** @jws:context */
    JwsContext context;
    * @jws:operation
    public UtilClass testType(UtilClass tTest){
    UtilClass returnObj=new UtilClass();
    if(tTest.getName()!= null){
    returnObj.setName(tTest.getName());
    return returnObj;
    and my UtilClass is placed in the data directory under the same directorywith
    my web service code. It is a simpe class as belows:
    package data;
    public class UtilClass
    private String name;
    public void setName(String name){
    this.name=name;
    public String getName(){
    return name;
    However I got an error when I try to compile the webservice class. Theerror is
    like belows:
    File Line Message
    WebService1.jws 0 Resource found on system classpath: data.UtilClass
    Build complete - 1 error(s), 0 warning(s)
    [ngroup.zip]

  • JDeveloper902 as a DB-design tool ?

    Hello JDeveloper forum,
    At KMS we are evaluating JDeveloper902 to see, whether it can be used as a DB-design tool for reverse and forward engineering of our DataBases. I have been warned, that the UML-parts in JDev. are kind of fringe benefit.
    However at KMS we have (amongst others) Oracle9i Spatial databases, wherein some tables have attributes of
    - SDO_geometry (Spatial)
    - Abstract Data Types (user defined at KMS)
    and my trial runs show that JDev does reverse and forward engineer such attribute types correctly. No other DB-design tool seems able to do it as well, and hence I am keen on using JDev for DB-design.
    But I have found some problems with JDev and was advised to seek assistance in this forum.
    My questions are as follows
    ===========================
    1) Forward engineering by right click on a package -> create database objects seems to overwrite (drop) my existing table of the same name. This is disastrous as we risk loosing tables containing millions of rows. I really just want to alter the table by fx. adding a new column. Is it possible for JDev. to just create a DDL-script instead?
    2) Can the associations be shown as zig-zag lines instead of stright lines in the class diagram?
    3) Is it possible to move text labels an an association? This is very desirable to avoid overlap, when 2 associations link the same 2 classes.
    Background information.
    =======================
    We are seeking a DB-design tool to
    - reverse eng. each of our production DataBases being Oracle9i Spatial, Oracle8, Informix or Ingres into a design spec.
    - maintain the DB-design spec. for each DB
    - forward eng. changes in the DB-design spec. to take effect in the production DB
    - design new DataBases to future applications
    - forward engineer a new DB-design into a Oracle9 DataBase
    We prefer using UML a class diagram when doing DB-design as that is the output of DataModelling at KMS.
    - Thanks in advance,
    Jens Ole Jensen
    Kort & MatrikelStyrelsen (WWW: http://www.kms.dk)
    Danmark

    Jens,
    Sorry to disappoint you but Synchronize functionality is meant to be used when you've made changes to the database and you want them reflected in the business components. There is currently no functionality in JDeveloper which will generate the 'alter table' statements that you require. JDeveloper is currently in the process of implementing a Database Modeler which will hopefully allow you to do what you want but currently there is no idea what future version of JDeveloper this will be available in.
    In the mean time to work around the issue (although time-consuming) would be to export your data, do the generation and then import your data again.
    The other alternative is as previously suggested would be to use Oracle Designer, which would easily be able to keep your diagram and database properly in sync. You would need to validate that it can handle your attribute types. Designer also gives you the option of generating DDL or generating straight to the database. Even though Designer is not UML compliant, it does have very good modeling capabilities especially in the area you are interested in.
    Hope that helps,
    Lisa

  • Tool for canvas

    Is there any designing tool for canvas application development(like NetBeans.).
    Thanks in advance.

    This feature was released in July 2014 itself. Please upgrade to the latest version 2014.1.1.
    See: https://creative.adobe.com/products/animate
    (Search for "Hand" in the browser page)

  • Software design tool

    Hi All,
    having a powerfull fast software design tool for java programming is my
    first aim. is there any available free!! downloads software for java on the net that i could rely on for fast powerful design purposes?
    Thanks indeed.

    You trying to put us out of business.
    Hey doc, give me the name of of some tools that can diagnose my problem, do the operation, and dispense me some medication!

  • Which tool is used to design mockup for SAP R/3 screen

    Hi Experts,
    Currently I'm working on the design of R/3 screens. Before I used the tool 'BALSAMIQ MOCKUPS' to draw the  mockup of screens, but I don't think this tool is suitable to show how the R/3 screen should be, because the R/3 screen contains so many specific features which only exist in SAP.
    So could any one tell me is there a mockup tool special for SAP R/3 screen design.
    Any suggestion will be highly appreciated!
    Kind Regards,
    Chuan

    Hi,
    Did you already found any nice tool? You can check this: Great tool for creating UI mockups
    Thanks

  • Any suggession on Tools for Performance testing of application designed for Blackberry phones.. which can get some details on CPU usage, memory, response time?? any help on the same is much appriciated.

    Hi Team,
    Any suggession on Tools for Performance testing of application designed for Blackberry phones.. which can get some details on CPU usage, memory, response time?? any help on the same is much appriciated.
    Thank You,
    Best Regards,
    neeraj

    Hi Team,
    Any suggession on Tools for Performance testing of application designed for Blackberry phones.. which can get some details on CPU usage, memory, response time?? any help on the same is much appriciated.
    Thank You,
    Best Regards,
    neeraj

  • WEBI error with multi-line descriptions for a Business Layer in information Design Tool

    help from Anyone on my problem described below would be greatly appreciated! 
    I'm working with Information design tool and am building a Business layer on top of my universe to prevent a clash of context in my query.
    I want a description on my business layer that explains the need for two business layers in this universe.
    The problem is entering data into the description of a business view
    I need to be able to put in line breaks or the user can't even read the description of the business view.
    If anyone could help I'll be very grateful.
    However this is how it looks in WEBI when I start to create reports. (the original snapshot is two monitors wide by the way)
    the text entered into the field is as exactly as follows:
    I have Descriptions that Explain the Business Layer so they need to be typed out with paragraphs and word wrap.
    Like this. Notice the line break?
    Oh wait What happened? let me try another line break.
    Did that work? ...
    No maybe <\br>
    or \n
    or \n\r ?
    or char(13)char(10)
    or 0x0a
    or 0x0D
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi convallis arcu quis libero sagittis, vel pulvinar velit pretium. Praesent vehicula luctus justo in laoreet. Aenean blandit eros eget nisi aliquet, et placerat elit convallis. Nam non adipiscing velit. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum a porttitor quam. Suspendisse vulputate eros nunc, ut vestibulum nunc feugiat eget. Phasellus interdum quam vitae quam posuere mattis quis ac elit. Curabitur fringilla justo vel elit lacinia, ac sollicitudin velit sodales. Nunc eget nulla id augue suscipit molestie ut nec nulla. In libero neque, commodo sit amet eros a, viverra aliquam nulla. Sed blandit magna eu orci pellentesque dictum.
    Vivamus urna est, tincidunt sit amet nisi vitae, placerat sodales dui. Donec a sapien tincidunt, auctor mi ut, ullamcorper sem. Sed viverra lobortis nisl at tincidunt. Integer at odio mollis, scelerisque leo vel, fermentum felis. Morbi ultrices magna neque, vel adipiscing urna dictum sit amet. Nullam quam felis, imperdiet quis nunc ut, pretium feugiat tellus. Etiam id auctor augue. Proin id feugiat ligula. Vestibulum congue ligula quis dui porta vehicula. Morbi at sem velit. Morbi vehicula dui nibh.
    Quisque eu imperdiet odio, quis scelerisque lacus. Aenean tortor odio, sagittis in urna id, porttitor convallis neque. Suspendisse eget suscipit nibh. Nullam tincidunt ornare eleifend. Phasellus laoreet molestie luctus. Nulla sit amet semper arcu, quis iaculis velit. Mauris a molestie magna. Ut id eros in diam viverra suscipit. Sed gravida elit vel est imperdiet interdum. Maecenas tempus dolor lectus, id aliquet ligula scelerisque vitae. Praesent pulvinar, velit id fringilla porttitor, massa neque aliquam sem, in tincidunt erat tortor et arcu. Nullam hendrerit condimentum faucibus. Fusce arcu odio, lacinia vel malesuada eget, malesuada eget felis. Praesent venenatis vestibulum ante ut pharetra.

    Bump.
    I still need a Solution to this problem.

  • The first Ask a Pro for New Responsive Web Design tool, Reflow 2/22

    The new Responsive Web Design tool – Reflow – is out.
    When: Friday, February 22, 2013 – Noon Pacific Time. Session start time for other time zones are here:  http://bit.ly/12D9ILL
    Description: Edge Reflow preview has just been released and now is your chance to see all the ins and outs of this new tool, as well as how it integrates with other Edge tools and services. Join evangelist Paul Trani as he takes you through Reflow and workflows with other Edge tools and services when designing for the modern and mobile web.
    Register here: http://www.adobe.com/cfusion/event/index.cfm?event=detail&id=2008488&loc=en_us

    The replay of this webinar is available OnDemand: http://seminars.adobeconnect.com/p2l90bhma2n/

  • How I can set ORG_ID context (for Oracle Apps Views) in ODI designer tool?

    Hi All,
    I want to get data from apps views (like OE_ORDER_HEADER_V) into our data warehouse detination table using ‘Oracle Data Integrator’ tool.
    The issue is that when I reverse Oracle Table or Synonym directly, everything works fine i.e. after 'Interface' execution, I can see how many rows imported into destination table from this source Oracle table/synonym.
    But when I use Apps view as a source then 'Interface' executes fine with ‘no error’ but NO rows imports to the destination table.
    I believe, the only difference is that I am not able to set Org_Id before executing ODI interface so it is not picking the data.
    Please let me know the steps/instructions to set org_id context on apps view then reverse in ODI Designer tool.
    Please note that I can set org_id using SQLPlus successfully as given below (and see data using the same Apps view). What to do in ODI designer tool to achieve similar data:
    begin
    fnd_global.apps_initialize(0, 21623, 660);
    mo_global.init('ONT');
    end;
    -- connect using apps/apps at Vision SQLPlus
    -- User_Id -> 0 (<-- SYSADMIN )
    -- Responsibility_Id-> 21623 (<-- Order Management Super User )
    -- Application_id -> 660 (<-- ONT )
    -- select count(*) from oe_order_headers_v where rownum < = 100
    I would appreciate your quick help in this.
    Thanks in advance.

    Set org context in 11i:
    ===============
    The SQL command to set the ORG_ID prior to running a script is:
    SQL> execute dbms_application_info.set_client_info(&org_id);
    Enter the org_id when prompted.
    If using Toad
    Begin
    fnd_client_info.set_org_context(&org_id);
    End;
    Set org context in R12
    ================
    The SQL command to set the ORG_ID prior to running a script is:
    SQL> exec mo_global.init('AR');
    exec mo_global.set_policy_context('S','&org_id');
    Enter the org_id when prompted.
    The procedure - mo_global.set_policy_context has two parameters
    p_access_mode & p_org_id
    p_access_mode Description
    S In case you want your current session to work against Single ORG_ID
    M In case you want your current session to work against multiple ORG_IDs
    p_org_id: Only applicable if p_access_mode is passed value of "S"
    If using Toad
    Begin
    mo_global.set_policy_context(‘S’, &org_id);
    End;

  • IS designer a good tool for development applications

    Rightnow we are on oracle 7.2 so i wanted to know whether i can use this case tool for all my application development in the future.
    waiting for your valuable suggestions

    No. In my testing of it I found that it failed to do most of what it claimed it would do. I say avoid it.
    It is only good for paving the vendors pocket's with gold.
    Allan

Maybe you are looking for

  • HT201317 In iCloud, Photo Stream will not turn on.   I Have latest iPhoto ?

    In iCloud, Photo Stream will not turn on.   I Have latest iPhoto ?  Yet it tells me I need to update iPhoto or Aperture.  How do I turn photo Stream on,? The FAQ were no help

  • How to open in new tab in safari?

    Hi I'm trying to open link in a new tab by clicking Command + trackpad_click, but nothing happenes. While opening via "Open in new tab" from context menu - nothing happenes also. LInk is highlighted, but not opened. Any ideas? Thank you

  • PDK & OC4J Standalone Development Environment

    Hello Portal Gurus, I now seek the knowledge of setting up a development environment where I can register and test portlets. As of now I understand that you need to download and install the OC4J Standalone version. Once OC4J is installed follow the d

  • Authorization required error

    Hi friends, When partner is sending message from there business connector system to my xi system,they are gettin error, Authorization requiredu2019.  So what id and password i need to gve them,i had not created in xi,do i need to create it???

  • How do I bring form fields to the front or back?

    I have a document with many form fields/push-buttons in order to create pup-up effects in an info graphic. So I use fields to create a mouse-over hot spot, and others that pop up. Now, of course, the hot spot must be in front (or on top), otherwise i