Overlapping Images Via A Link

It's safe to say that I'm pretty new to Dreamweaver... I know
a little bit, just a heads-up.
I know more Flash than Dreamweaver.
I've got two frames, frame one, frame two. In frame one are
the text links... RedDots, BlueDots, GreenStars, YellowStars. Each
of these text links links to an image coresponding to its name. In
frame two is the image (a white circle for arguments sake) that
will change. I've easily gotten the text links changing the image
in frame two, you click on RedDots and the image in frame two
changes to the RedDots image, you click on BlueDots and the image
in frame two changes to the BlueDots image, etc, etc.
What I want to do is overlap those images as they are clicked
on. So you have the white circle in frame two and when you click on
GreenStars that image is placed over top the white circle in frame
two. Then if you click on YellowStars that image is placed over the
GreenStars which is over top the white circle, etc, for up to 6
overlapping images.
Also, I would need a separate link that will allow the user
to go back one step. If they placed the RedDots over the BlueDots
by mistake and really wanted the GreenStars, they could click this
'go back one' link.
Any help is appreciated!
Thank you!

Hi,
Please look under Sample Application page 13.
In general it is passed with IR_ to the field name...
select 'f?p='||:APP_ID||':2:'||:app_session||':::2,RIR:IR_CUST_STATE:'||...
I hope this is helpful
LK

Similar Messages

  • Cisco Prime Infrastructure 2.0 import image via WAN link failed.

    Cisco Prime Infrastructure 2.0 behind NAT that can copy image on device to Cisco Prime infra but can not deploy from Cisco Prime Infra import image from device. How to solve problem,please ?

    Have you downloaded and applied the latest Device Pack updates?
    PI enhanced ASA support after the initial 2.0 release and the Device Packs incorporate that change.
    The README file for Device Packs explains how to install them. (A bug currently does not allow the direct download in PI so you need to follow the method for installation from local storage after you manually download. Here is a link to the download location.

  • Overlapping images link issue

    I seem to to be having an issue right now with a page that i'm developing. I have multiple images and elements overlapping, but the order in which they are loaded is not right.
    http://www.rwsd.net/other_sites/ourvinyl/index.html
    When I try to hover over the logo it only works around the audio image, but I want that to be behind the logo, as well as the search box.
    Hope that made some sense, any help is appreciated, thank you.

    Ok, first things first.  Two errors need correcting.  Your <title> tag is missing the ">" at the end of it.  Next, your "header" div never appears to close anywhere on your document.  Everything else is commented nicely and it appears that is a mismatch which could be causing some errors.
    With regards to the link, it appears to work for me on the OV logo and for some reason just above and below the OurVinyl.com text.  I looked at the "audio_banner.png" file and it appears to be utilizing its full width, so I'm not sure how you want that OV logo to end up behind the banner.  If you have that image in Photoshop/Fireworks etc and could show us what your goal is that might help a little.
    If the files are PNG, are you saving them with transparency?  It might be better just to utilize the image as an image with a link and alternate text as opposed to the H1 with text and multiple background images.  Or if you truly need to stack images you should be using absolute positioning with the z-index ( http://www.w3schools.com/Css/pr_pos_z-index.asp ) as opposed to layered background images because they you will be able to control the z-axis to properly layer images.

  • Can't view shared images via browser

    I use an old version of Skype, and I do not want to update. Whenever somebody sends an image via Skype, I see this message:
      <user> sent a photo.
      This device doesn't support Skype's new photo sharing features yet, but you can still view it in your browser here:
      https://api.asm.skype.com/s/i?[...]
    When I go to the link, it asks me to log into Skype, when I login, I see a page saying "Sorry, we were unable to open this photo. Try signing into Skype again.". No matter how many times I log in again, it still shows this message.
    Please help.
    Thank you.

    Mateon1 wrote:
    ruwim wrote:
    Images sent from the latest Skype versions on Windows, Mac or smartphones, are transferred now using the new Cloud-based mode. This means that they are not send directly to the recipient, but saved on a Cloud server.
    If the recipient is also using one of the latest Skype versions (on Windows it must be 6.21 or later), a preview of this image will be displayed in the chat window.
    On older Skype versions, only a link (similar to the one as you are seeing) to this image saved on the Cloud server is displayed.
    Theoretically, clicking on this link and signing in with your Skype account should display this image in your browser.
    If this was not the case, then the image might have been corrupted or there is an issue with your browser. What browser have you used to open this link?
    I use Google Chrome, the latest beta version (40.0.2214.85 beta-m). I find this unlikely that this particular image is corrupted, because I can view it with Skype on my phone, and this issue happens with all images shared via Skype, as far as I can tell.
    I have not tried to open the image links in Chrome, but it works with both Firefox and Internet Explorer.
    Make sure that you have the latest IE version installed on your computer and try to open this link in IE.

  • How to load external png image via xml?

    Can anyone help me with adding a png image to a mc with an instance name.
    I only want to display a single image (no gallery)
    I would like to get the url for the image via an xml.
    Here is a copy of my current action script which has already pulled in the xml data which includes the node with the url for the photo.
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    var myXML:XML;
    var myLoader:URLLoader = new URLLoader();
    myLoader.load(new URLRequest("links.xml"));
    myLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void
        myXML = new XML(e.target.data);
        trace(myXML);
        menumv.carbtn.addEventListener(MouseEvent.CLICK, openCURL);
        menumv.edubtn.addEventListener(MouseEvent.CLICK, openEURL);
        menumv.psybtn.addEventListener(MouseEvent.CLICK, openPURL);
        menumv.stubtn.addEventListener(MouseEvent.CLICK, openSTURL);
        menumv.busbtn.addEventListener(MouseEvent.CLICK, openBURL);
        menumv.shabtn.addEventListener(MouseEvent.CLICK, openSURL);
        studentmv.stuname.text = myXML.student.name;
    function openCURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.car.url));
    function openEURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.edu.url));
    function openPURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.psy.url));
    function openSTURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.stu.url));
    function openBURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.bus.url));
    function openSURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.sha.url));
    And here is a copy of the node containing the url
    <menu>
        <student>
        <name>testnamehere</name>
        <photo>http://10.0.0.2/test/photos/testnamephoto.jpg</photo>
        </student>
    </menu>
    I did see this tutorial but it was for a gallery and I couldnt seem to hack and slash it to do what I want.
    http://tuts.flashmint.com/creating-a-simple-xml-gallery-in-actionscript3/
    Thanks again in advance for all the help.

    I have added that code but I think i have buggered up something else in the process.
    I get the following error
    ReferenceError: Error #1069: Property data not found on flash.display.LoaderInfo and there is no default value.
        at sdp_fla::MainTimeline/load_complete()
    Current AS
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    var myXML:XML;
    var myLoader:URLLoader = new URLLoader();
    myLoader.load(new URLRequest("links.xml"));
    myLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void
        myXML = new XML(e.target.data);
        trace(myXML);
        menumv.carbtn.addEventListener(MouseEvent.CLICK, openCURL);
        menumv.edubtn.addEventListener(MouseEvent.CLICK, openEURL);
        menumv.psybtn.addEventListener(MouseEvent.CLICK, openPURL);
        menumv.stubtn.addEventListener(MouseEvent.CLICK, openSTURL);
        menumv.busbtn.addEventListener(MouseEvent.CLICK, openBURL);
        menumv.shabtn.addEventListener(MouseEvent.CLICK, openSURL);
        studentmv.stuname.text = myXML.student.name;
    var _request:URLRequest = new URLRequest(myXML.student.photo);
    var _ldr = new Loader();
    studentmv.photo.addChild(_ldr);
    _ldr.load(_request);
    _ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, load_complete, false, 0, true);
    function openCURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.car.url));
    function openEURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.edu.url));
    function openPURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.psy.url));
    function openSTURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.stu.url));
    function openBURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.bus.url));
    function openSURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.sha.url));
    function load_complete(event):void
    var bitmap:Bitmap = Bitmap(event.currentTarget.data);
    bitmap.smoothing = true;
    bitmap.width = studentmv.photo.width
    bitmap.width = studentmv.photo.height
    studentmv.photo.addChild(bitmap)

  • Color Management via Dynamic link

    Hey guys.
    I know I don't know too much about color management right now, but a read a handy article linked from this forum that suggested that all comps should be set to a 32 bit (or 16) linearized workflow with the sRGB 2.1 working space.
    So far I have found the colors to be more accurate than AE's default setting and I like it. My problem now lies via Dynamic Link with Premiere Pro.
    I am working on a sequence handed over to me for VFX'ing. Using Dynamic link makes it easier to work between the 2 programs, but when I work with the above color management settings, the resulting image in AE looks fine, but the image updating in Premiere is several notches darker.
    Is there a way to effective work via dynamic link and color management between the 2 projects?
    Many thanks.

    Actually, I notified you DO NOT linearise your working space until you fully understand linear workflow. That, among other things, means you shouldn't linearise working space in all AE projects. Quite contrary, you should understand, when to linearise them and when not. That Stu Maschwitz blogpost, the link to which I submitted, contains a lot of other links, including this one to the discussion on when to go linear.
    Your current issue relates to the question that neither PrPro nor AME is colour manageable (color aware) application. It can be corrected in several ways:
    1. As Rick said, just turn Linearize Working Space off (it can ruin your current colour correction as well).
    2. Apply Gamma Correction effect onto your dynamically linked comp in PrPro timeline (which is not quite correct workaround, actually).
    3. So as not to rebuild Dynamic Link, pre-compose what is in your dynamically linked comp now into another one. In your modified dynamically linked comp go to View menu and disable Use Display Color Management. Apply Color Profile Converter onto your pre-comp layer and set Output Profile to sRGB, leaving Input one in default 'Project Working Space' mode.

  • Connecting to a cube via a linked server

    Hi
    I want to connect to a SSAS cube via a linked server. When I ran a query against the SSAS cube from directly from the SQL server it runs fine.
    If however I run the query in SSMS from my PC I get
    OLE DB provider "MSOLAP" for linked server "SSASServer01" returned message "The following system error occurred: .".
    Msg 7373, Level 16, State 2, Line 1
    Cannot set the initialization properties for OLE DB provider "MSOLAP" for linked server "SSASServer01".
    In the properties on the linked server I've defined an account to use for the connection to get round the double hop issue
    Any Ideas why I'm still getting the error?
    Alex

    Hi Mr P,
    According to your description, you get the error 7373 with message "Cannot set the initialization properties for OLE DB provider "MSOLAP" for linked server "SSASServer01"." when connecting a SSAS cube via linked server.
    Right?
    In this scenario, based on the error code 7373, it points to the issue of MSOLAP provider, please firstly check the properties setting for MSOLAP. Make sure the "Allow Inprocess" is selected. You may also have other options selected depends on
    your query.
    Also check if ports for your server (1434 and 2383) are listening proper locally and externally. Please refer to a similar thread below:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/9d5bd9e0-c380-4a0f-bdab-857751c71fba/ole-db-msolap-provider-issues?forum=sqlanalysisservices
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
    TechNet Community Support

  • How to display URL images and URL link (html) from Smartforms?

    Hi Gurus,
    I'm having difficulty on how to display targeted URL images and URL link from the smartforms, after i sending it out as html mail. The mail i sent just can be preview as a plain text, which can't execute the html code that i put inside the smartforms itself. I follow a few step from this very useful blog.. Hopefully, you guys can give me some solutions or ideas on this.
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp -thanks to Pavan for his useful blog.
    My code is like this..
    <--- Start Code.
    FORM call_smartforms.
      DATA : lv_subject TYPE so_obj_des,
             lc_true(1) VALUE 'X',
             lw_control_parameters TYPE ssfctrlop,
             lw_output_options TYPE ssfcompop,
             lc_graphics(8) VALUE 'GRAPHICS',
             lw_xsfparam_line TYPE ssfxsfp,
             lc_extract(7) VALUE 'EXTRACT',
             lc_graphics_directory(18) VALUE 'GRAPHICS-DIRECTORY',
             lc_mygraphics(11) VALUE 'mygraphics/',
             lc_content_id(10) VALUE 'CONTENT-ID',
             lc_enable(6) VALUE 'ENABLE',
             lw_job_output_info TYPE ssfcrescl,
             lw_html_data TYPE trfresult,
             lw_graphics TYPE ssf_xsf_gr,
             lt_graphics TYPE tsf_xsf_gr,
             lv_html_xstr TYPE xstring,
             lw_html_raw LIKE LINE OF lw_html_data-content,
             lv_incode TYPE tcp00-cpcodepage VALUE '4110',
             lv_html_str TYPE string,
             lv_html_len TYPE i,
             lc_utf8(5) VALUE 'utf-8',
             lc_latin1(6) VALUE 'latin1',
             lv_offset TYPE i,
             lv_length TYPE i,
             lv_diff TYPE i,
             lt_soli TYPE soli_tab,
             lw_soli TYPE soli,
             lc_mime_helper TYPE REF TO cl_gbt_multirelated_service,
             lv_name TYPE mime_text VALUE 'sapwebform.htm',
             lv_xstr TYPE xstring,
             lw_raw TYPE bapiconten,
             lt_solix TYPE solix_tab,
             lw_solix TYPE solix,
             lv_filename TYPE string,
             lv_content_id TYPE string,
             lv_content_type TYPE w3conttype,
             lv_obj_len TYPE so_obj_len,
             lv_bmp TYPE so_fileext VALUE 'BMP',
             lv_description TYPE so_obj_des VALUE 'Graphic in BMP format',
             lc_doc_bcs TYPE REF TO cl_document_bcs,
             lc_bcs TYPE REF TO cl_bcs,
             lc_send_exception TYPE REF TO cx_root,
             lw_adsmtp TYPE lty_adsmtp,
             lv_mail_address TYPE ad_smtpadr,
             lc_recipient TYPE REF TO if_recipient_bcs,
             lc_send_request TYPE REF TO cl_bcs,
             lv_sent_to_all TYPE os_boolean.
      DATA : v_language TYPE sflangu VALUE 'E',
             v_e_devtype TYPE rspoptype.
      v_form_name = 'ZTEST_EMAIL'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = v_form_name
        IMPORTING
          fm_name            = v_namef
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    starting here. ***
    Set title for the output
      lv_subject = 'Smartforms.'.
    Set control parameters to "no dialog"
      lw_control_parameters-no_dialog = lc_true.
    IF lw_service_subject-code = lc_fm1.
    *--- To get output device type
      CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language    = v_language
          i_application = 'SAPDEFAULT'
        IMPORTING
          e_devtype     = v_e_devtype.
      lw_output_options-tdprinter = v_e_devtype.
      lw_control_parameters-getotf = 'X'.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    Set output options
      lw_output_options-xsf        = lc_true.
      lw_output_options-xsfcmode   = lc_true.
      lw_output_options-xsfoutmode = 'A'.
      lw_output_options-xsfoutdev  = space.
      lw_output_options-xsfformat  = lc_true.
      lw_xsfparam_line-name  = lc_graphics.
      lw_xsfparam_line-value = lc_extract.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_graphics_directory.
      lw_xsfparam_line-value = lc_mygraphics.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_content_id.
      lw_xsfparam_line-value = lc_enable.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
    Get the smartform content
      CALL FUNCTION v_namef
        EXPORTING
          control_parameters   = lw_control_parameters
          output_options       = lw_output_options
    *pass other application specific parameters (eg order number, items ).
      IMPORTING
          job_output_info    = lw_job_output_info
      TABLES
          tt_tabh              = tt_tabh
          tt_tabb              = tt_tabb
          tt_tabf              = tt_tabf
      EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
      lw_html_data  = lw_job_output_info-xmloutput-trfresult.
      lt_graphics[] = lw_job_output_info-xmloutput-xsfgr[].
      CLEAR lv_html_xstr.
      LOOP AT lw_html_data-content INTO lw_html_raw.
        CONCATENATE lv_html_xstr lw_html_raw INTO lv_html_xstr IN BYTE MODE.
      ENDLOOP.
      lv_html_xstr = lv_html_xstr(lw_html_data-length).
      CALL FUNCTION 'SCP_TRANSLATE_CHARS'
        EXPORTING
          inbuff       = lv_html_xstr
          incode       = lv_incode
          csubst       = lc_true
          substc_space = lc_true
        IMPORTING
          outbuff      = lv_html_str
          outused      = lv_html_len
        EXCEPTIONS
          OTHERS       = 1.
    *HACK THE HTML CODE GENERATED BY SMARTFORM TO MAKE THE
    *EXTERNAL IMAGES APPEAR AS <IMG> TAG IN HTML
      REPLACE ALL OCCURRENCES OF '<IMG' IN lv_html_str WITH '<IMG' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '/>' IN lv_html_str WITH '/>' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '</A>' IN lv_html_str WITH '' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '<' IN lv_html_str WITH '<' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '>' IN lv_html_str WITH '>' IGNORING CASE.
    CALL METHOD html_control - >load_mime_object
       EXPORTING
         object_id  = 'ZWN'
         object_url = 'ZWN.GIF'
       EXCEPTIONS
         OTHERS     = 1.
      REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH lc_latin1.
    REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH 'iso-8859-1'.
       break mhusin.
      lv_html_len = STRLEN( lv_html_str ).
      lv_offset = 0.
      lv_length = 255.
      WHILE lv_offset < lv_html_len.
        lv_diff = lv_html_len - lv_offset.
        IF lv_diff > lv_length.
          lw_soli-line = lv_html_str+lv_offset(lv_length).
        ELSE.
          lw_soli-line = lv_html_str+lv_offset(lv_diff).
        ENDIF.
        APPEND lw_soli TO lt_soli.
        ADD lv_length TO lv_offset.
      ENDWHILE.
      CREATE OBJECT lc_mime_helper.
      CALL METHOD lc_mime_helper->set_main_html
        EXPORTING
          content     = lt_soli
          filename    = lv_name
          description = lv_subject.
      LOOP AT lt_graphics INTO lw_graphics.
        CLEAR lv_xstr.
        LOOP AT lw_graphics-content INTO lw_raw.
          CONCATENATE lv_xstr lw_raw-line INTO lv_xstr IN BYTE MODE.
        ENDLOOP.
        lv_xstr = lv_xstr(lw_graphics-length).
        lv_offset = 0.
        lv_length = 255.
        CLEAR lt_solix[].
        WHILE lv_offset < lw_graphics-length.
          lv_diff = lw_graphics-length - lv_offset.
          IF lv_diff > lv_length.
            lw_solix-line = lv_xstr+lv_offset(lv_length).
          ELSE.
            lw_solix-line = lv_xstr+lv_offset(lv_diff).
          ENDIF.
          APPEND lw_solix TO lt_solix.
          ADD lv_length TO lv_offset.
        ENDWHILE.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_filename.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_content_id.
        lv_content_type = lw_graphics-httptype.
        lv_obj_len      = lw_graphics-length.
    *Add images to the email
        CALL METHOD lc_mime_helper->add_binary_part
          EXPORTING
            content      = lt_solix
            filename     = lv_filename
            extension    = lv_bmp
            description  = lv_description
            content_type = lv_content_type
            length       = lv_obj_len
            content_id   = lv_content_id.
      ENDLOOP.
      TRY.
          lv_subject = lv_subject.
          lc_doc_bcs = cl_document_bcs=>create_from_multirelated(
                   i_subject          = lv_subject
                   i_multirel_service = lc_mime_helper ).
        CATCH cx_document_bcs INTO lc_send_exception.
        CATCH cx_bcom_mime INTO lc_send_exception.
        CATCH cx_gbt_mime INTO lc_send_exception.
      ENDTRY.
    Create send request
      TRY.
          lc_bcs = cl_bcs=>create_persistent( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->set_document( i_document = lc_doc_bcs ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Set-up email receiver
      lv_mail_address = '[email protected]'.
    TRANSLATE lv_mail_address TO UPPER CASE.
      TRY.
          lc_recipient = cl_cam_address_bcs=>create_internet_address(
              i_address_string = lv_mail_address ).
        CATCH cx_address_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->add_recipient( i_recipient = lc_recipient ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Send smartforms as HTML email
      TRY.
          lc_bcs->send( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      COMMIT WORK.
      WRITE:/ 'Mail sent'.
    ENDFORM.                    "call_smartforms
    End Code --->
    Thanks and Regards.

    1- put your images in a directory under the web app directory. Example: app/images/
    2- in your jsp, use: String file = application.getRealPath("/images/"); to get the images directory. See http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
    3- it's not the right forum to post this kind of question. Post them in the JSP/Servlet JSTL forum instead

  • How to open and validate the tif images via java?

    Is it possible to open and validating the photoshop images via java. Kindly advise me.
    Thanks for looking into this.
    Maria Prabudass

    I have recently looked at athe code for Image Processor.
    To avoid bailing on errors it uses two techniques.
    1) It turns off all PS error reporting in addition to just turning off dialogs with:     app.displayDialogs = DialogModes.NO;  (it restores the original settings when exiting)
    2) It uses the Javascript construct  Try.....Catch around the basic body of the code so "any" error will not abort the script but just jump to the "Catch" code.
    Hope that is useful

  • Error not getting while executing procedure via db link

    Hi,
    I am executing a database procedure remotely via database link from SQL prompt (SQL > EXECUTE REPLICATE_DATA@DBLK_SALE), and while getting any connectivity issue system is not giving any error (it is just showing as not responding)..
    if I am executing the same procedure directly in the remote database then it is giving error as
    ORA-02055: distributed update operation failed; rollback required
    ORA-02068: following severe error from DBLK_SALE
    ORA-03135: connection lost contact
    Can someone can help me on this
    Regards

    Dear 823755,
    You can think the Database link as a new sqlplus session to the distributed database. You should have defined a user to connect to that remote database and the user has to have the necessary privileges to revoke the relevant object. Does it have that privilege? Can you even connect to the remote database instance?
    SQL> SELECT * FROM DUAL@DBLK_SALE;Regards.
    Ogan

  • Connecting HP Laserjet 1010HB with Macbook Pro via D-Link Network!?

    Good evening,
    I have a MacBook Pro and I want to be able to print via WiFi.
    The Printer is hosted by a Windows Computer via D-Link Router Network
    My sister who has a Windows Laptop is able to print.
    I read about Bonjour but this seems to be a software for windows computers
    to print with a Networkprinter hosted by an Apple-PC.
    I need exactly the opposite.
    Host: Windows 7 (D-Link Router DIR-655)
    Me: OS X 10.6.7
    I tried to use Shareport Utility but without success.
    Shareport doesn't show the Printer.
     > system settings > print and fax > + > doesn't work. What settings should I use? LPD, IPP, HP Jet direct socket.
    And the driver: We got a HP Laserjet 1010HB -> HP Laserjet 1010, HP Laserjet 1010 v2 Gutenprint, HP Laserjet 1012, v2  1012 gutenprint.
    How ever I don't know what to do.
    And I will certainly NOT buy any additional Airport thing of Apple or they can **** ***** ****** ** ***** **** and I will **** ***** **** ****
    Hope you can help me.
    cheers

    Thanks for the feedback LilyLC. I too have gone through all of your steps and a host of others. Still with no luck. No problems at all with my Airport Express, but still no way to keep up a connection with my DIR-655 via WIFI N. I tried all of the steps with each firmware version too. I've given up at this point. I want the 2 months of my life back that I spent troubleshooting this mess. At least Apple could acknowledge this and say we are on it, and that it isn't only "in our heads."
    /begin rant/
    I think that Apple needs to do some re-evaluating of their software release schedule/quality control. At this point I would rather wait and have them get it right then put out subpar updates and fall into the downward spiral pattern of "the rest of them". My confidence has been shaken and I've been a mac fan since the beginning. I just want Apple to split off the iPod/Phone/TV etc. into its own division and to get back on track with the Mac line starting now. We need this stuff to work to make a living and this takes a higher priority in my mind than new twiddle apps on the iPhone.
    I do own two iPods and an iPhone but would chuck them in a river to get Leopard working solidly with the majors like Adobe, Extensis, Epson, as well as stable networking, syncing and backups. Apple really has their hands full at this point with a large list of bugs. I really wish them well but can't say I'm in the least bit happy as a consumer at this point. For the first time in a long time I feel sheepish when answering whether or not I'd recommend a Mac, and that hurts me deeply for some reason.
    /end rant/

  • Problem using image via URL

    Hi everybody
    I have a problem with loading images via URL into my PDFs.
    I am using LCD ES2 Version 9.0.1....
    I want to create a PDF which loads images from the internet but it does not work.
    So far I have tried to add an image or image field to my PDF in the LCD and populate that image using the Object-->Field-->URL: palett. I put the URL in there like this http://www.adobe.com/imageshome/pdfgift_home.gif , tick the "embed image Data" checkbox (also tried with without that just to be sure) and save as Dynamic PDF (I also tried static) but when I open the PDF in adobe reader 9 or 10 or acrobat  9 there is no image showing. I also put the image in a subform and made that subform flowed, as well as the page itself and made the binding global.
    I have the form properties - default set to "Acrobat and Adobe Reader version 9.0 or higher", Default Language to JavaScript, PDF Render format to Dynamic PDF.
    I also tried using JavaScript events like "form:ready ImageField2.value.#image.href = "http://www.adobe.com/imageshome/pdfgift_home.gif" as discribed here http://partners.adobe.com/public/developer/en/tips/lc_dynamic_images.pdf but that also does not work.
    What am I missing?
    Any help would be great and greatly appreciated!!!
    Thanks and best regards
    Norbert

    As far as I can tell, this use case is not allowed because of cross site references related security concerns. The form can refer to the images stored on the same server from where the PDF is served, but the images cannot come from external servers.

  • Hello, I am attempting to install Camera raw from a .zip file provided via a link provided by adobe for a Nikon D810. The .zip file unzips fine and I moved the files to the recommended folder. But the operation is failing

    I am attempting to install Camera raw from a .zip file provided via a link provided by adobe for a Nikon D810. The .zip file unzips fine and I moved the files to the recommended folder. But the operation is failing

    Can you describe what “the operation is failing” means?  What is happening and how is it different than what you expect?
    Also, what product are you trying to update manually, and do you have a link to the page of instructions, so we know what your attempting to do?

  • [CS3][JS]avoid overlap image?

    Hi,
       When I am placing graphic/Image, Is there any way to avoid overlap image( the image lie on the top of other image)? When I am placing textframe in the document, textframe has the textwrappreferences to avoid the overlap. Like that is it possible with Image? I have placed my graphic/image inside the textframe/rectangle.
    Please advice me.Sorry for any confusion.
    Regards,
    Kumar.

    You should understand what happens with the text in a text frame, when it hits the border of a Text Wrapped object. The text itself reflows; yet, it stays inside its own text frame. If the text frame is not large enough to contain the reformatted text, you get the red 'overflow' marker.
    Now imagine there is such a thing such as Image Wrap. You import an image and -- as usual -- you want its frame to have exactly the size of the image itself. What happens if you drag this frame over another one? The image inside the image frame should shift, but where to? (As there is no such thing as 'overset image' -- you would need to invent that too!) So, still analogous to our text frame-with-text (where the text frame is usually much larger than actually needed), you would need to make the image frame large enough to have a reasonable space for the image inside it to move around.
    You can even try this out right now: cut an image and paste it into a text frame. Set the text leading to Automatic, so the image stays totally inside the text frame. Now drag this frame over another one with text wrap and see what happens to the image.
    As this is the Scripting forum, I suppose one could write a javascript that checks whether any image overlaps any other, but having the same javascript solve it automatically seems a bit optimistic.

  • Adobe PDF files will not display when called via a link in page (FF 4.01)

    adobe PDF files will not display when called via a link in page.
    This happens when testing new web page from DWeaver CS5 - all other browser tests are OK (IE9, Safari5.05, Chrome etc.)

    [moved to the Adobe Reader (desktop) forum]

Maybe you are looking for

  • Error while deleting a row from the Entity Object

    Hi OAF Guys, i am unable to delete the newly created row from the entity object. let me explain my scenario. 1. i have a table of which some of the columns are mandatory. 2. I am writing the code in the validateEntity to check wether the user really

  • How do I set up iMessage on my different devices to keep the message history synchrony? Pls HELP!

    Task I'm using an iPhone 4, iPad Wifi (both iOS 5.0.1) and Macbook Pro (OSX 10.7.3) and I'd like to the same message history on all devices. What I've done On the iPhone 4 the set is something more complicated (for me). As can be found under "Setting

  • Customer Statement in Balance Forward Format

    Have Oracle introduced a customer statement in a Balance Brought Forward format as yet? We need the ability to print customer statements comprising: (a) An opening balance (being the previous period's closing balance) (b) Details of all credit memos,

  • 10.5.7 Faster and 10.5.8 Even Faster!

    I have to say that upgrading my really old first gen PowerMac G5 (dual 2.0GHz, June 2003 model) to 10.5.7 brought a real jump in interface speed. 10.5.8 is even better! I said when 10.5.7 came out that it was like getting a new faster Mac for free. W

  • Partitioning option enabled but still getting ORA-00439

    Hello, I'm facing a weird situation. I'm trying to import some partitioned tables on an instance, and it fails with the following error: IMP-00003: ORACLE error 439 encountered ORA-00439: feature not enabled: Partitioning However when I check v$optio