Get URL opening a popup?

Hi,
I am trying to create a button/link on a flash movie which
would open
a popup window (new window) with specific width and height.
So far I was able to open a new window using the _blank
attribute but
can't seem to figure out how to create the window with
specific
dimensions.
I have the following as code:
on (release) {
getURL("
http://www.domain.com/bearsad.html",
"_blank");
Any help is appreciated,
FayeC

FayeC wrote:
> Hi,
>
> I am trying to create a button/link on a flash movie
which would open
> a popup window (new window) with specific width and
height.
> So far I was able to open a new window using the _blank
attribute but
> can't seem to figure out how to create the window with
specific
> dimensions.
>
> I have the following as code:
> on (release) {
> getURL("
http://www.domain.com/bearsad.html",
"_blank");
> }
>
> Any help is appreciated,
Search forum archives for "pop up" or "popup"
Literally hundreds of posts, hundreds....
http://groups.google.com/advanced_group_search?q=group:macromedia.flash.*&hl=en&lr=&ie=UTF -8
Best Regards
Urami
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • GET URL opens a blank screen

    I have a flash site that I have some PDF's attached to using the Get URL function opening a blank window.
    My client is saying users are clicking on the window and it is timing out. This happend once to me and I got a time out. I think this was from the server and a DNS error.
    The links are correct. On my computer it is fine however I have experienced this once or twice.
    does anyone know why this might be happening?
    thnaks

    Try disconnecting and letting the battery drain completely.
    I've had this a few times and has resolved it every time.
    Though It Really shouldn't happen..

  • How to open a popup and get some data from a model class

    Hi experts,
    mi problem is the next.
    I am opening a popup from a view that is  controlled by a controller named identificador.do, the controller class is z_identity_cl.
    the window that is opened is other view controlled by nocupentes.do, with a controller class, z_nocupantes_cl.
    In the do_init event of the z_nocupantes class i have added the next code:
    <i>  DATA: cl_parent TYPE REF TO Z_IDENTtity_CL.
    Recuperamos el atributo parent
      cl_parent ?= me->m_parent.
    model is the class i want to recover, it is defined in the attibutes of the class z_identity_cl
      model     ?= cl_parent->get_model( 'mo' ).</i>
    When i open the popup i get the next error:
    <i>BSP exception : the object  numero_ocup.htm(this is the page i want to open) in URL sap/ZHR_PDWEB_GDPT/numero_ocup.htm is a view. Initialize the controller.</i>
    what do i have to do?
    any help?
    thanks in advance

    Hi Eduardo,
      you should be calling the Controller in the URL not the View. after calling the controlles in the URL create the view in the DO_REQUEST of the Controller. This should resolve the issue.
      In the the DO_INIT define the Parent class of the Controller.
    METHOD do_init.
      DATA: lr_my_parent TYPE REF TO zcl_hr_main_control.
    * set (MVC) model
      lr_my_parent ?= me->m_parent.
      set_model( model_instance = lr_my_parent->model
                       model_id = 'Z' ).
      me->model = lr_my_parent->model.
    ENDMETHOD.
    method DO_REQUEST.
    * datadeclaration
      DATA: abs      TYPE REF TO if_bsp_page.
    * if input is available, dispatch this input to subcomponent.
    * this call is only necessary for toplevel controllers.
      dispatch_input( ).
    * if any of the controllers has requested a navigation,
    * do not try to display, but leave current processing
      IF is_navigation_requested( ) IS NOT INITIAL.
        RETURN.
      ENDIF.
    * output current view (create, set attibutes, and call)
      abs = create_view( view_name = 'to_disp.htm' ).
    * set attribute model if needed
      abs->set_attribute( name = 'model' value = model ).
    * call master views
      call_view( abs ). "calls itself
    endmethod.
    Cheers
    Amandeep

  • I reinstalled acrobat pro 9.0 on windows 7 Ultimate 64, it installed OK, When I open i get a large white popup screen which i cannot close... what to do?

    I reinstalled acrobat pro 9.0 on windows 7 Ultimate 64, it installed OK, When I open i get a large white popup screen which i cannot close... what to do?

    Hey jeroenb16613921,
    Please specify exactly when you get this white popup screen. While opening a PDF or launching Acrobat by double-clicking on the Acrobat icon.
    If it comes when opening a PDF, then where is this PDF actually stored?
    Let me know more on the same so that I can analyze the issue.
    Regards,
    Anubha

  • How to open URL as a popup window through BRANCH in APEX reports

    Hi
    I am using APEX 4.0
    I have a branch with a target type of URL. The branch is triggered by pressing a button. There is also a plsql process on the same button which fires at the process point of "On Submit-After Computations and Validations". I want to open the branch URL as the popup Window. I tried doing it with javascript, but then the plsql process doesn't execute. Any pointers will be helpful.
    Thanks
    Hina

    You can use the apex.submit javascript function. This function allows to store some item value from session scope to database scope. So that a page process picks the correct item value. Not sure if it works with computations thou.
    See the docs: JavaScript APIs
    Example
    Submits the current page with a REQUEST value of 'DELETE'.
    apex.submit({ request:"DELETE", set:{"P1_DEPTNO":10, "P1_EMPNO":5433});
    Then add a branch with type "branch to function returning URL" This page branch can be made conditional on the same request as the page process.
    The returned url would be either include the javascript popup or window.open function or simply be the url. Important thing here would be to use a function that reads the url item  from database state, since at that moment the computation or page process will have set the item on database level, but it is not directly available on page level.
    meaning ":p2_item" or v('P2_ITEM') should work. &P2_ITEM. in the url will probably not work.

  • Message (of message manager) gets lost by opening a popup window

    Hi all,
    On behalf of a better error/exception handling, I would like to show the stacktrace in a popup window, that means, if the application reports an error message (through the message manager in the view controller), the user (administrator, developer) can optionally click a link (LinkToAction => opening a modal window) to see the stacktrace in a separat popup window.
    Unfortunately if the popup window now gets displayed, the error message on the main view (background of the popup window) will be cleared, so this - for the common user more readable - information is not anymore displayed, also when the popup will be cleared.
    Of course, I could backup the error message in a context value and redisplay it after closing the popup window, but I suppose that's not a very cool solution...
    Other any good ideas?
    Thanks,
    Stefan

    Hi Stefan
    Usually showing a stack-trace to the end-user of your application is not so helpful as might appear. My experience shows that the information is too technical for the end-user and does not help him/her to resolve the issue/problem. It's better to display error messages pointing him to some solution or directions that he might do in order to fix the error.
    If you still want to show a stack-trace I'd advise the following. You have to prepare the UI control with the stack-trace in the same server response (round trip) which shows the message manager's messages. The messages will not disappear until a client sends a new request to the server. When you open the popup such request definitely takes place.
    Maybe try to display the stack-trace in the bottom of the screen so user have to scroll down a little bit to show the trace.
    Or maybe Tray control will help in the case. Try to put the trace in a text view and put the view in a tray. Then user has to expand the tray to see the trace. But do not assign any event handlers to the tray to avoid additional request to the server while it's expanding.
    BR, Sergei

  • Is ITunes down?  I keep getting URL could not open

    Why do I keep getting "URL could not opened"?  I am trying to log in

    No it's not down. The problem is on your end. Reset your router or reinstall iTunes.

  • Compute the window's URL of a POPUP LOV item

    Hello,
    I am using Application Express 4.1.
    I want to open the popup window of a popup LOV item when I click on a button which is on the same page.
    The URL of the popup LOV window looks like:
    wwv_flow.show?p_flow_id=300&p_flow_step_id=403&p_instance=1862497391551148&p_request=NATIVE%3D0BF14BB1E17791744D35BEBACED33B707AF740A5D0F8159D03641E52D40C81C9
    I managed to build this URL but I am missing the end of it:
    wwv_flow.show?p_flow_id=&APP_ID.&p_flow_step_id=&APP_PAGE_ID.&p_instance=&APP_SESSION.&p_request=???????
    Does anyone know where this 'NATIVE%3D0BF14BB1E17791744D35BEBACED33B707AF740A5D0F8159D03641E52D40C81C9' come from? It is different every time I log into the application.
    What I am trying to do here is to have a button next to a text with autocomplete item that opens a POPUP LOV. That is why I need this URL.
    Thank you for your help.
    Nicolas

    Sorry indeed I did not write back earlier but I got bizzy inaugurating an iMac I just bought on ebay. Quite a change from my ole' Ti !!!
    Even when I try to open a recent stream and do Ctrl+U, it stays blank. I use this procedure to copy the url of streaming sequences on the web that cannot be read on QT to paste them into i.e. wmp. And that's not possible anymore. I downloaded a new version from QT, but there a cookie or something with the pro version I bought that re-installs the same flaw over & over. When I go to the register menu, the license n° is already there, and I cannot get rid of my scewed up version.
    Now about this page code thing, I can't believe one cannot choose the reader he wants ! I don't know how to work on page codes. I want to the internet plug-ins in the library & removed the qt file, but no dice, I'm condamned to use only qt in safari or firefox!
    If you have a clue, thanks for a kind reply.
    Again sorry it took me so long to answer.
    Hope to read you soon, Kirk
    Steph

  • Error while opening a popup from managed bean

    Hi,
    I am trying to open a popup from bean, after another popup is closed. When I open the second popup either through ActionListener(on first popup button) or DialogListener(on first popup), I am getting the below error on browser status bar(!); and the second popup doesn't open. There is no error in the log.
    *'AdfPage.PAGE.findComponent(...)' is null or not an object.*
    Although the popup id is there on the jspx page.
    <af:popup id="confirmationStatus" binding="#{MyBean1.confirmationStatus}">
    <af:dialog cancelVisible="false"
    closeIconVisible="false" binding="#{MyBean1.d2}"
    title="Appointment Confirmation Status">
    <af:outputText value="Appointment is successfully confirmed"/>
    </af:dialog>
    </af:popup>
    public void confirmAppointment_dialogListener(DialogEvent dialogEvent) {
    FacesContext context = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service = Service.getRenderKitService(context, ExtendedRenderKitService.class);
    String popupId = "confirmationStatus";
    service.addScript(context,"AdfPage.PAGE.findComponent('" + popupId + "').show();");
    Please tell me why my popup is not getting open from the managed bean and I am getting an error in below line.
    service.addScript(context,"AdfPage.PAGE.findComponent('" + popupId + "').show();");

    To find out the right address of a component related to an other component, open your page select the component you want to add a partial trigger, go to the partial trigger property, select the down arrow at the right end and select 'Edit'. Now look for the popup in the component tree shown on the left side. When you have found the popup shuffle it the the selected side and click OK. The string you see in the field is the full address of the popup related to he component you've selected. Try the string you see there in your bean code. Remove the string from the partial trigger property, it's just to get the correct path.
    One other thing to check is that your popup has the ClientComponent property set to true.
    Next thing to try, is to use AdfPage.PAGE.findComponentByAbsoluteId(...)
    Timo

  • Get URL by PCD in WD ABAP

    Hello friends,
    I'm developing a web dynpro abap applcation. My problem is when i'm pressing on button that need to open
    bw iview.I am using the method CREATE_EXTERNAL_WINDOW from the interface IF_WD_WINDOW_MANAGER, now I need to send url as paramter.Is there any way to get url by pcd ( to get the url of bw iview )?
    I'm doing it that way and not by calling NAVIGATE_ABSOLUTE method because when bw iview send me back paramters( with EPCM ) i want also to close it.
    Thanks in advanced,
    Udi

    Hi Udi,
    We had a similar requirement where we need to call a Transaction in portal with different values for its parameters.
    Assuming that your BW iView will have NON-CHANGING Url path you can store that path in a abap table ( for multiple reports also) and then get the value when required.
    If you need to pass any parameters with the URL you can concatenate it to the NON-CHANGING url part and send.
    I hope it helps.
    Revert back in case of queries/issues.
    Regards,
    Sumit Oberoi

  • Get Url from a text box

    Hello,
    I have read a couple posts in regards to the GEt URL function
    but couldn't find what I'm looking for.
    Trusting someone can help.
    Here are two reference files
    1- Main swf that loads the movie clip
    with the links
    Swf
    that displays the links I'm opening in a new window
    I'm able to open the url on a new window but couldn't find a
    way to control the height of this window. Please note that the
    links are all inside a text box. They are not separate buttons they
    are just text hiperlinks.
    Please let me know if any of you knows how to control the new
    _blank window height.
    Thanks
    Fe

    Hi. You should consider posting this to either the iPhone forum or the Developer forum. This forum is for discussing the Unix subsystem of OS X...

  • Update on question for parameters in URL opening a BSP iview

    Hi again gurus.
    I wanted to do an update on this thread: How do you create a URL with parameters for a BSP iview? but choose to do the update as this new question instead.
    Well, in order to open a BSP iview from an external page shown in an Application Integrator iview in our portal AND FILL IN A FIELD, a link of this type is used on the external page:
    http://<server:port>/sap/bc/bsp/sap/z_purchase_req/process.htm?System=ABG_R3_ARD&mnr%3D9780198603641
    If you read the other thread you will see that I couldn't use a link of the following type since it opened up something like the stuff found under "System Administration > Support > SAP Application" and there asked for BSP application and start page!
    http://<server:port>/irj/servlet/prt/portal/prtroot/com.sap.portal.appintegrator.sap.bwc.BSP?System=ABG_R3_ARD&SAP_TCode=Z_PURCHASE_REQ&STARTPAGE=process.htm
    But the first link works so far as it opens up the correct transaction BUT the parameter won't get into the field. Does anyone know how to "format" the parameter correctly? When you open an iview of Transactional type you can use a URL like this (and it works also with writing parameter into a field):
    http://<server:port>/irj/servlet/prt/portal/prtroot/com.sap.portal.appintegrator.sap.bwc.Transaction?System=ABG_R3_ARD&SAP_TCode=ZARTS2&SAP_Dynp_Params=S_MATNR-LOW%3D9789146212720
    It's the part ...&SAP_Dynp_Params=... that is of interest here. Should it also be used when working with URLs opening BSP iviews or not? Or should something similar be used instead? The name of the field "mnr" is correct in the BSP URL, at least I think so, I found it in the Web Application Builder under tab "Page Attributes". I have tried both "=" and "%3D" in the URL but neither works.
    Any suggestions about the parameter format for this link or another completely different but working URL format would be extremely appreciated!
    Best regards
    Benny Lange

    the Appintegrator Documentation says you can use something like <User.[AttributeName]>, so <User.email> and <User.company> (not sure about capital letters) should work.
    Hope that helps.
    PD

  • Help with calling a Get URL

    I am having a problem with calling a series of web pages
    within my movie. I have an index.fla that I publish to html. Within
    the index.html, I am calling multiple swf files to load content.
    Home.swf loads when the index page displays. Then the user clicks
    on any button and each button loads another swf replacing the main
    content with perhaps loading it's own swf files of content also.
    Everything is working fine. However, on one called swf file, called
    students.swf, I also have a menu swf file that is called when
    students loads. This menu swf file has text listed with
    actionscripting calling a data file that causes the text to expand
    and rollout and display a label of the url. When the user clicks on
    the list name I have a get url to the url of the label. Everything
    works fine in the swf files when I test the movies for the swf for
    the menu file and for the student file swf. However, when I publish
    and run the index page and start testing out the student swf that
    is called, the menu will not open up a new browser window with the
    link designated in the get url. I can't figure it out! It works
    fine in the swf files, but not when I test it out through the index
    controlling file. Please Help!!!

    if you're using as2, try adding
    this._lockroot=true;
    to the movieclip that contains getURL, the student file
    swf.

  • Get Url doesnt work in my flash .swf page

    Get url doesnt work in my flash .swf page
    www.wackyworld.biz/north.swf
    click on the building is supposed to go to a site. I made all the buildings symbols and when i hit f9 the actions window opens i put
    on bowling building
    on (Release)
    get URL (http://wackyworld.biz/bowling/bowling.html", "_self ") ;
    why when i click on the buildings they dont work? can someone download the file and convert it to fla and tell me what im doing wrong?
    Brent
    Message was edited by: crashncrazy

    i did click on the button and then put in the code.
    on (release)
         "getURL" (http://www.wackyworld.biz/bowling/bowling.html, "_self");
    like this?
    if so this is what i have. still no way to click on button on site

  • How to publish project to get url?

    how to publish project to get url?

    Hi
    If you publish your Captivate project to Adobe Connect, then you will get a URL which you can provide to your users. Users need to open the URL to play the project.
    If you publish your Captivate project which is SCORM compliant, then you need to upload this project to any LMS,  you will get a URL which you need to provide to your users, users will open on the URL and project will start playing.
    Thanks and Regards
    VJ

Maybe you are looking for

  • How to share the Photos library on iCloud Drive with other family members?

    I have uploaded our family photo-library to iCloud drive (136GB+). It works great! But how can my wife (with her own iCloud-account, but within the family) see and use our library?

  • 2008 iMac 8,1 still won't power up after replacing power supply

    A few days ago my iMac powered-ON as usual at 8AM and was working normally, I checked email and left for a meeting. When I returned 30 minutes later my office had a slight odor of hot bakelite and the screen was dark, instead of displaying the screen

  • Spry tabbed panels not opening in IE on Vista

    Link: About page Link: Story page Spry tabbed panels on these pages display fine in Firefox and Safari. But in IE on two separate Vista-running PCs, everything except the tabs themselves loads, until you click refresh one or more times. Both PCs were

  • Logs from OLAP DML Programs

    Is there any way to get a continuous stream of logs when an OLAP DML program is running ( eg. A Loop ). I am on 9.2.0.5 currently. The logs are being dumped only after the program has finished execution but not when it is running. Can this behavior b

  • Trouble shoting Unity connection 8.5 connection to exchange

    Hi, I have unity connection 8.5 I want to connect to exchange 2007/2010 but I get the connection not working. How can I trouble shoot this problem to see were it is going wrong. Regards Jan Meeling