Make a button with an icon

Hi all.
I have a new problem. I want to make a button as an icon e.g. when I push a button to open a file I want to display the button with the icon.
I'm on devsuite 10g.
Can someone tell me which are the steps to follow to do this???
Thank,
Fabrizio

I have restarted the form builder and the http
listener but I don't see the icon on my button.
Here is the value of my
UI_ICON_EXTENSION
.gif;.jpg;.ico;.GIF;.JPG;.ICO
And this is the value of my
UI_ICON
c:\oracle\devsuite10g\reports\plugins\resource;
C:\ORACLE\devsuite10g\cgenf61\ADMIN\ICONS\PC;
c:\oracle\devsuite10g\forms\java\icone.jar
Fabrizioyou cause a Vertigo for your Forms Builder :-)
Try to specify only one extension, .ico in Forms Builder are more accurate in size. Try it.
Tony

Similar Messages

  • Is it possible to make a button with multiple paths?

    Hello and good day Everyone
    I want to make a flash game with a map leading to various places for example school or beach like this http://www.yotreat.com/sites/default/files/190-160_1286.jpg
    if the player goes to the school she will find the teacher, and if the player goes to the beach se will find the coach.
    How can I make the player (for example) talks to the teacher at school, returns to the main map, and goes to the beach to talk with the coach, yet if she goes to the school again, the dialogue with the teacher won't be the same with first dialogue?
    =>>> Is it possible to make a button with different paths to go? As if you've watched frame A, then you push the same button again it will take you to frame B??? <<<=
    Sorry for my confusing description... I hope you get the idea >,<
    Im so desperate... I've been searching for articles about this since yesterday and I still can't find one to solve this problem of mine.
    Making games is my dream... I've made some very simple games, but I want to try a new level of difficulty
    Please help me? (>o<

    Thank you for the advice, sir Ned Murphy!
    Yes, I try to use variables now, but face another problem with it... would you please tell me what's wrong with my script?
    Here, in label: "School" I type:
    on (release) {
    if (point = 0){
    gotoAndStop("dialogue1");
    else if (point = 10){
    gotoAndStop("dialogue2");
    else {
    gotoAndStop("dialogue3");
    (it's only a testing, so I only use these 4 labels)
    and in label: "dialogue1", "dialogue2",and "dialogue3" I type:
    on (release) {point += 10;}
    on (release) {
    _root.gotoAndStop("school");
    The result when I test movie:
    1. At "School" (shows point=0), I click the button,
    2. then occurs "dialogue2" (shows point=10), I click the button,
    3. then back at "school" (shows point=20), I click the button,
    4. then occurs "dialogue2" again (shows point=10)
    even the first shot is wrong
    point=0 should be the entrance to "dialogue1", but all I can get is "dialogue2"...
    Please tell me what's wrong with my script, sir Ned Murphy,
    Thank you very  much
    Regards,
    Tami

  • How make menu button with unrolling thumbnails in as 3.0??

    Hello
    I need help with doing a menu with unrolling and rolling up buttons with thumbnails;  now I have someting like that (attachments) this was made by as 2.0 but I need help with changing this on as 3.0.
    if samobody have some ideas how can I do this or somting similar using as 3.0 I will be grateful

    The only way to convert it to AS3 is to go thru it and replace the code as needed.  While some code may not have to change, quite a bit of it will.  Your best bet for getting thru it is to build it up from scratch one object at a time and get each coded as you go.  Otherwise you will be overwhelmed with error messages.  Here's a few pointers.
    All code is AS3 has to be placed on the timeline.  You cannot place code "on()" objects.  So each object needs an instance name.
    Any interaction or event handling such as mouse controls and file loading involve event listener/event handler pairs.  So you will want to start with looking into the addEventListener() method, which is pretty much used globally for any/all event processing.
    When it comes to loading external swf files, you want to use the Loader class.
    To determinine how to make the code work, I recommend using a practice file.  A file that you can implement one codig sequence in at a time just to determine what works.
    Converting this to AS3 will be a good exercise for you on the road to learning it.  When I wanted to start learning AS3 that's pretty much what I did, though with the sole purpose of the learning as my goal.  I took a fairly complicated menu design that I had created first in AS2, and then rebuilt it from the ground up using AS3.

  • How to display a button with an icon?

    Hi,
    I'd like to display an SAP-icon on a button.
    In this thread How can I show an Icon in the tapStripItem-title?
    Thomas Jung gave the following example:
    > I don't know if this definetely works with tabstrips
    > items but it does work with buttons and toolbar
    > buttons.  What I do is create a BEE and render that
    > to a string. I then use that string as the text of
    > the element I want to place my image into:
    >
    >   <%
    >   data image type ref to cl_htmlb_image.
    >   data: image_string type string.
    >   create object image.
    >   image->id = `UserSelectionCancel2`.
    >   image->src = cl_bsp_mimes=>sap_icon( `ICON_CHECKED` D`).
    >   image->tooltip = ``.
    >   clear image_string.
    >   image_string = image->IF_BSP_BEE~RENDER_TO_STRING( G( page_context ).
    >   %>
    > <xhtmlb:toolbarButton id            = "UserSelectionCancel"
    > onClientClick = "closeiframe();"
    > enabled       = "<%= enabled %>"
    > text          = "<%= image_string %>" />
    I didn't find anything else about this topic and
    tried to adopt this for a button, but that doesn't work for me either.
    <htmlb:button id            = "byButt"
       text    = "<%= image_string %> ENTER"
       onClick = "myClickHandler"  />
    Is there a way/documentation to get this done?
    Thanks in advance.
    Cheers.
    -Alf

    > This technique is really just using a BEE, there is
    > documentation on the BEE concept in the online help
    > and Brian McKellar has a weblog on the subject as
    > well.
    OK, I think I get the idea. Will check the stuff. Thanks.
    > Notice the strange D at the end of the line. This
    > isn't in the original posting. Perhaps this is just
    > bad cut and paste.
    Just bad copy paste. Yes.
    > You say that this isn't working for you - but you
    > don't describe the results. Is there an error?  Does
    > it render anything in the button at all?  Does the
    > raw HTML get rendered?
    I just saw coding in the button.
    > You want to make sure that the
    > text doesn't get encoded - which would cause the HTML
    > source to display instead. On the htmlb:button you
    > will want to set the attribute encode = FALSE.
    OK, that was right on spot. This shows me the Icon! Strike!
    > Also I am not sure that you can also pass in text
    > with the image like that.  You might have to create a
    > full BEE and add the image and a textView separately
    > into the BEE.  Then render the entire BEE to a string.
    I'll check the documentation on BEE and give it a try.
    Thanks for your answer.
    Thats a starting point for me.
    Alf

  • How make menu button with unrolling and rolling up thumbnails

    Hello
    I need help with doing a menu with unrolling and rolling up buttons woth thumbnails;  now I have this made by as 2.0 but I need help with changing this on as 3.0. or if samobody have some ideas how can I do this using as 3.0 I will be grateful

    The only way to convert it to AS3 is to go thru it and replace the code as needed.  While some code may not have to change, quite a bit of it will.  Your best bet for getting thru it is to build it up from scratch one object at a time and get each coded as you go.  Otherwise you will be overwhelmed with error messages.  Here's a few pointers.
    All code is AS3 has to be placed on the timeline.  You cannot place code "on()" objects.  So each object needs an instance name.
    Any interaction or event handling such as mouse controls and file loading involve event listener/event handler pairs.  So you will want to start with looking into the addEventListener() method, which is pretty much used globally for any/all event processing.
    When it comes to loading external swf files, you want to use the Loader class.
    To determinine how to make the code work, I recommend using a practice file.  A file that you can implement one codig sequence in at a time just to determine what works.
    Converting this to AS3 will be a good exercise for you on the road to learning it.  When I wanted to start learning AS3 that's pretty much what I did, though with the sole purpose of the learning as my goal.  I took a fairly complicated menu design that I had created first in AS2, and then rebuilt it from the ground up using AS3.

  • Trying to make a button with a drop zone

    Since I can't find any of the template buttons that look the way I want, I want to make a simple button that includes a drop zone for an asset, a label, and a highlight. I am trying to make a chapter index menu. I can do it using the automated method and using a customized template - but I cannot find buttons that look the way I want. All I want is a simple rectangle, with the label underneath, and a highlight line under the label. There is one like that in which the asset is black and white (RectRoundEdgesBlue.pox), but I want one that is in color. Is there any way to do this?? I have studied some of the Photoshop tutorials, but I am missing how you put a drop zone in.

    Hi,
    Below is the AS3 code to navigate to adobe.com upon button(whose instance name is 'myButton') click
    myButton.addEventListener(MouseEvent.CLICK, gotoPageFunction);
    function gotoPageFunction(event: MouseEvent) {
    var request:URLRequest = new URLRequest("http://www.adobe.com");
    navigateToURL(request, '_blank');
    Thanks!
    ps: please mark this post as Answered if this is of help to you

  • Button with an icon

    Hello All,
    I am new in Swing and would appreciate if someonw would help me in creating
    a JButton containing a text and a REAL icon image (having extension .ico).
    I tried making one using the constructor: JButton(String text, Icon icon) ,
    so I create my button as JButton b = new JButton("Ok", new ImageIcon("ok.ico"));
    But this does not seem to work.
    I had a look at some java tutorials and information on buttons, and all
    the examples include an image of type .gif (thus JButton b = new JButton("Ok", new ImageIcon("ok.gif"));
    Could anyone please let me know if it is possible to create a button that has a real icon (i.e. with extension .ico)?
    Hope someone knows answer to this.
    Regards,
    Kanita K.

    Kanita,
    Being a REAL icon does not require that the image is a ico file. An icon can be any representative image, regardless of the format. I don't know of any way to load an ico in Java, but converting ico's to gif is an extremely simple task, you don't even need a conversion program, you can even use PaintBrush (sic) and the PrintScreen button. If you need transparency in your ico, there are plenty of converters out there.
    Graeme

  • Indesign - button with multiple icons.

    Hi all,
    I'm pretty new to Indesign, playing around with what I can do.
    I'm trying to create a button that will change it's icon when clicked.
    e.g. first click - tick, second click - circle
    Is this at all possible? if you could point me in the right direction that would be great.

    Hi Dave,
    Yes it is possible. Steps to perform:
    1. Create a rectangle.
    2. Select it, right click and select Interactive-> Convert to Button.
    3. In Buttons panel, select 'Click' state under 'Appearance' and change appearance of your button like add drop shadow to it and your click state is ready.
    Similarly you can change Rollover state as well.
    For achieving your behavior, what you can do is create three buttons, one normal, second with tick and third with circle. Initially hide second and third button and on trigger of first button show second button and hide itself and then click of second button show third button and hide itself. There is an action Show/Hide buttons in Buttons panel which you can use to achieve this.
    Thanks
    -Anshul

  • Making a button with a picture

    I'm trying to make a button with a picture I made in photoshop.. but the problem is that the background is transparent, I just want the main part to be clickable.
    Here is an example.. I just want the purple part to be clickable. The box around that is the actually whole image. So how can I fix this?

    if you are using a simple button with up / over / down / hit frames do the following.
    add a new layer to your button's timeline above the bitmap
    in the up keyframe of this new layer draw a circle the same size and position of the purple starburst.
    select the circle and cut the the circle (cmd-x or cntrl-x)
    delete the layer you just made
    make sure there is a keyframe in the hit frame of the remaining layer (f6)
    if the bitmap is in the hit frame, delete it.
    with the hit frame selected do a paste in place: cmd-shift-v or cntrl-shift-v
    now you should have only the vector circle shape in the hit frame of the button.
    now your button will only respond to mouse events when you rollover where the circle is.
    the reason i had you add a new layer is because when you draw vectors in the same layer / frame as a bitmap, the vectors go behind the bitmaps and are hard to select, see, or modify.

  • HT201401 When I press the + and - buttons, the volume icon appears, but the slider is empty. When I receive a call, I hear it ring, and I can hear the ringtones in the sound menu. However, the message/mail notifications don't make any noise, and I can't h

    When I press the + and - buttons, the volume icon appears, but the slider is empty. When I receive a call, I hear it ring, and I can hear the ringtones in the sound menu. However, the message/mail notifications don't make any noise, and I can't hear the sound menu.
    - During a phone call, if I put the conversation on speakers ==> it works and the volume bar reappears. I can control the volume with + and - buttons. But when the conversation is over, the bar disappears again.
    - With the headphones, everything is ok!
    - I also noticed (only a few times) that when I do a silent to ringer mode, the volume slider reappears and works correctly during 2 or 3 seconds, before disappearing again.
    I don't know what is problem,because the speakers work.

    Hello jam5064,
    We've an article which provides tips that can help get your iPhone working correctly.
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/TS5180
    Cheers,
    Allen

  • How to make email link with a button with AC2 in flash cs3?

    How to make email link with a button with AC2 in flash cs3?
    I wrote this, but it does not work:
    btn_emailinfo.on (release) {
    getURL("mailto:"[email protected]");
    }

    I am guessing you put that on a frame?
    If so, the syntax is as follows:
    btn_emailinfo.onRelease = function(){
    getURL("mailto:[email protected]");
    Though, if you are placing it directly on the button itself,
    the syntax is:
    on(release){
    getURL("mailto:[email protected]");
    }

  • I have one problem with my iphone 4s i c"ant  make facetime calls with other iphons. olso when i make calls on the facetime icon is question sign! can any oane hellp me! wath my be the problem because it is all new iphone!

    i have one problem with my iphone 4s i c"ant  make facetime calls with other iphons. olso when i make calls on the facetime icon is question sign! can any oane hellp me! wath my be the problem because it is all new iphone!

    First question where ae you located?  If you're in the Middle East or UAE, factime has been restricted by the government.
    If your not from there look here:
    http://support.apple.com/kb/TS3367

  • Supposedly you can play or download songs using the icloud download button, a cloud icon with a downward arrow inside. But nothing happens when I click or double click on it.

    supposedly you can download or play songs using the icloud download button, a cloud icon with a downward arrow inside. But nothing happens when I click or double click on it.

    You have to have music in your iCloud account to do that...when you open the Music app on your iPad, for example, you can access all music from iCloud that you have already placed in the iCloud or associated with iCloud.  That is not for downloading music you have not already purchased or downloaded.

  • Hi all. I want to make audio chat with my brother. I use iChat on my MBP. He uses Gtalk on his windows PC. The problem is that the audio icon is gray. Is there anyway? Can iChat make voice chat with Gtalk on windows?

    Hi all. I want to make audio chat with my brother. I use iChat on my MBP. He uses Gtalk on his windows PC. The problem is that the audio icon is gray so I cannot start audio chat. Is there anyway? Can iChat make voice chat with Gtalk on windows or not? I am confused.

    HI,
    You need to satisfy several things along the way
    Account type
    You need to have a Jabber or Google mail Account your self.
    If you have a Google Mail Account then it needs the "Talk" option Enabled in your Google account Settings ( A Facebook with "Chat" enabled is also a  valid Jabber ID to use in iChat).
    Connection Method
    This is about which apps can connect to which apps for Video ro Audio to work.
    iChat Video when using a Jabber account is iChat to iChat Only.
    iChat connects using a process called SIP (Session Initiation Protocol)
    Jabber based Apps if they have  an A/V module connect using protocol called Jingle.
    Needless to say Google do their own version of this that is written in to the web Browser Plugin that allows Video Chats (there are PC and Mac versions), and in the PC app called GoogleTalk.
    However it is also not that compatible with other Jabber apps.
    See Jingle here
    This claims, now, that Google had a hand in writing the Protocol.
    Also in the "Clients Supporting Jingle" list many more version of Google products are mentioned with extended info. (it suggests that someone at Google has been editing the page).
    Can iChat make voice chat with Gtalk on windows or not?
    The specific answer to this to be clear is NO.
    We are talking about different Apps (or web Browser Plugins) using different Internet Protocols that are not compatible.
    The simplest thing is to get the Web Browser Plugin (However there can be issues with the  Flash Plugin)
    At one time Google used Flash to do Video Chats and it would seem their Plugin is very close to this part of Flash.
    See the Known Issues and the "Google Talk Plugin Disables iSight On Mac" item.
    Options
    Use a Web Browser yourself with the Plugin.
    Use a Flash Base Site such as MeBeam  (Flash has to be enabled in your Browser and the instructions are simple on the page)
    Try to find a Jingle capable Mac Jabber Client (app) ( I have not found one).
    9:42 PM      Monday; July 23, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Beginner (I want to make a simple button with code)(very basic)

    I've had some success with AS3, but so far all the code I've
    written just runs once the program starts, and thats it. The code
    is attached to the first frame of the flash file.
    I want to be able to take the code I've already made, and
    stick it into a button, so the code will run every time the button
    is pressed, without having to reload the whole program.
    Basically all I want to do is make a button that runs the
    code:
    trace('hi');
    every time it is pressed.
    Once I have that, I can figure out the rest by my self.
    Please help.

    Is this button on the stage and in the timeline? If it is,
    then select the button on the stage and then, in the Properties
    window, give the button an instance name if it doesn't have one
    yet.
    In a new layer, in the first frame, add this code:
    buttonInstanceName.addEventListener(MouseEvent.MOUSE_UP,
    buttonUp);
    function buttonUp(event:MouseEvent):void {
    trace("hi");
    substitute the button instance name that you used for
    "buttonInstanceName" in the first line.

Maybe you are looking for

  • Web service not working when called remotely

    Hi there! I built a simple web service to generate a sequence number to be cosumed by PDF forms. It works perfecly when I run PDFs on my machine, using localhost, etc. Whem deployed on the client's servers it does not work. The only difference is the

  • Cubase (both SE and LE) hangs _every_time_ I try to do this!

    I just bought Audigy 4 today, and it seems to me that it has a bug that renders it completely useless to me... I hope that someone will help me, otherwise I will be really dissapointed. Here's the problem: 1. I set Cubase to use ASIO drivers (does no

  • Is this a bug in Java!

    int i=0; i=i++; System.out.println(i); What should this code print. I guess 1. But it prints 0. Can anyone explain the logic behind this, or is this a bug in Java. Thanks for your time in advance.

  • How to Hide rows in Reports

    Hi All, I'm working on OBIEE 10.1.3.4 version on windows envorinment. For one of my report am using Greand Total option. for example for grand total its shoeing 20 rows in these i need to hide some of the rows. How can achieve this, could you pls hel

  • Safari 7.0 in Mavricks not working correctly

    Yesterday, I bit the bullet and loaded Mavericks (OS X 10.9). The upgrade went well, or so it seemed. Now I am having issues with Safari 7.0. Sometimes it WORKS, other times it CRASHES. When It CRASHES i have to resort to Activity Monitor and FORCE Q