Simlpe way to load an image with URL link into iOS with AIR

I want to be able to display an image (basically a small banner) inside my iPhone game which is loaded from my server where I can advertise new games.
What's the best way to do this?
Are there any technical issues I should be aware of?
Does it fall foul of any of Apples policies?
Thanks for any advice.

It's not at all against policy but you do need a backup plan for devices without connectivity. Package a default banner to load if there is no internet access.
Apple does not require you to ask the person permission to use the internet (like Android does). You're free to load whatever you like.
You can't load or change code regardless so don't worry about that. In fact you can only even package a SWF that contains absolutely no code, otherwise it won't load, so there's no way to change the code in an iOS app. All it can do is read something on the outside and modify its behavior via pre-written and packaged code, but you can't "load or change code" in any way.
For now, mobile apps are not getting the "premium feature" tax Adobe is putting into motion August 1st. They excluded mobile. But be warned (because you made a game and might use Stage3D, who knows) that things might become more complicated if your game is serving custom banners, you're turning a profit on it and  you exceed $50,000 in sales while using premium features. Like I said though, this doesn't pertain to mobile apps, yet..

Similar Messages

  • 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

  • When I am in firefox and I go to google and click on a link, it pops up as something else randomly. The only way it works is by coping the link into address bar

    When I am in firefox and I go to google and click on a link, it pops up as something else randomly. The only way it works is by coping the link into address bar. I thought it might be google so I went to bing and it did the same thing. it will not go to the link but instead change to livesearchnow or ihavenet.com
    It is really a pain as I search google ALOT. So please someone help. I reset firefox once and even reinstalled it once as well as updated it once. Nothing works.

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Is it possible to insert a url link into the itunes description tag. I want the user to be able to access my webpage from within itunes

    Hi,
    Is it possible to insert a url link into the itunes description tag in a feed. I want the user to be able to access my webpage from within itunes
    Thanks

    In the next release, we will be making adding our Measurement Studio components to existing projects much easier, but for now what you would need to do is add the support for Measurement Studio to your MFC project manually as detailed in our Knowledgbase at:
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/0cb6707522e92c958625689e0052bb77?OpenDocument
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • How do I insert a URL link into a text document

    How do I insert a URL link into a Word document

    Don't have Word available to test, but it seems to depend on the program.
    In Pages and TextEdit, if you drag the favicon from the addrss box in your browser into the document, it will be pasted in already formatted as a clickable link expressed in plain text. The favicon (I think that's the name for that element) is this item -
    However, in AppleWorks 6.2.9, all that did was drop the raw URL into the document; and it is non-clickable, just text. In AW 6 you need to type the plain-text name for the link (how you want the underlined bit to appear), select that, then go to the Format menu and select Create Link, from it choosing Internet. In the new screen, the linkname will already be entered in the upper box; paste the URL into the lower box, and it's done.

  • Fastest way to load an image into memory

    hi, ive posted before but i was kinda vague and didnt get much of a response so im going into detail this time. im making a java program that is going to contol 2 robots in a soccer competition. ive decided that i want to go all out and use a webcam instead of the usual array of sensors so the first step is to load an image into the memory. (ill work on the webcam once ive got something substanical, lol) since these robots have to be rather small (21cm in diameter) i can only use some pretty crappy processors. the robots are going to be both running gentoo linux on a 600 mhz processor, therefore it is absoleutely vital i have a fast method of loading and analyzing images. i need to be able to both load the image quickly, and more importainly analyze it quickly. ive looked at pixelgrabber which looks good, but ive read several things about javas image handling beging crap. these articles are a few years old, and im therefore wonding if there anything from the JAI that will do this for me. thx in advance.

    well i found out why i was having so much trouble
    installing JAI. im now back on windows and i cant
    stand it, so hopefully the bug will be fixed soon. oIt's not so bad. I mean, that's why we love Java! Once your linux problem is fixed you can just transfer your code there as is.
    well. i like the looks of JAI.create() but im not so
    sure how to use it. at this stage im tying to load an
    image from a file. i no to do this with pixelgrabber
    you use getcodebase(), but i dont know how to do it
    with JAI.create. any advice is appreciated. thx.Here are some example statements for handling a JAI image. There are other ways, I'm sure, but I've no idea which are faster, sorry. But this is quite fast on my machine.
    PlanarImage pi = JAI.create("fileload", imgFilename);
    WritableRaster wr = Raster.createWritableRaster(pi.getSampleModel(), null);
    int width = pi.getWidth(); // in case you need to loop through the image
    int height = pi.getHeight();
    wr = pi.copyData(); // copy data from the planar image to the writable one
    wr.getPixel(w,h,pixel); //  pixel is an int array with three elements.
    int red = pixel[0];     // to find out what's the red component
    int[] otherPixel = {0,0,0}
    wr.setPixel(w,h,otherPixel); // make pixel at location (w,h) black.                And here's a link with sample code using JAI. I've tried several of the programs there and they work.
    https://jaistuff.dev.java.net/

  • Load sequence image to make animation into flex/air

    hey ,...
    here is the situation,...
    i would like to load a sequence of images form different URL's into flex,...
    and make an animation with them,...
    is  it possible ,...
    how can do that,....???
    thanx for your comprehension,....

    It's not at all against policy but you do need a backup plan for devices without connectivity. Package a default banner to load if there is no internet access.
    Apple does not require you to ask the person permission to use the internet (like Android does). You're free to load whatever you like.
    You can't load or change code regardless so don't worry about that. In fact you can only even package a SWF that contains absolutely no code, otherwise it won't load, so there's no way to change the code in an iOS app. All it can do is read something on the outside and modify its behavior via pre-written and packaged code, but you can't "load or change code" in any way.
    For now, mobile apps are not getting the "premium feature" tax Adobe is putting into motion August 1st. They excluded mobile. But be warned (because you made a game and might use Stage3D, who knows) that things might become more complicated if your game is serving custom banners, you're turning a profit on it and  you exceed $50,000 in sales while using premium features. Like I said though, this doesn't pertain to mobile apps, yet..

  • How to supply events with url links in a public readable event calendar?

    When creating a new event on this calendar, how do I supply a url with
    hypertext links so reader can click on it and lead to a 'more info' page?
    I tried the example supplied by "Reviewer's Guide, iPlanet Calendar Server
    5.0". From chapter 4, Advanced Features, I imported a supplied ical file
    (ba_music.ics) to JSmith's BayAreaMusic calendar, I got no problem when
    importing. Then, when I looked at the calendar, I expected to see hyperlinks,
    yet what I saw were only plain text html, no links, no images( such as -
    <html>
    <a target=ics2 href=http://www.sfsymphony.org/>
    <img src=imf/greynte2.gif align=left width=27 height=28>Symphony Concert<br>
    8:00pm
    </html>
    What did I do wrong?
    Ching-I

    When creating a new event on this calendar, how do I supply a url with
    hypertext links so reader can click on it and lead to a 'more info' page?
    I tried the example supplied by "Reviewer's Guide, iPlanet Calendar Server
    5.0". From chapter 4, Advanced Features, I imported a supplied ical file
    (ba_music.ics) to JSmith's BayAreaMusic calendar, I got no problem when
    importing. Then, when I looked at the calendar, I expected to see hyperlinks,
    yet what I saw were only plain text html, no links, no images( such as -
    <html>
    <a target=ics2 href=http://www.sfsymphony.org/>
    <img src=imf/greynte2.gif align=left width=27 height=28>Symphony Concert<br>
    8:00pm
    </html>
    What did I do wrong?
    Ching-I

  • 'cut-out' images from Photoshop import into FCE with unwanted background

    I want to import some custom 'cut-out' images from Photoshop, but they come into FCE with a rectangular background around them. Is there a way to import just the irregular 'cut-out' image?
    Bob

    Make sure the images are RGB 8-bit and in a format that carries an alpha channel or Photoshop transparency like Photoshop, TIFF, PNG, even PICT.

  • URL Link to BSP with MVC

    Hi,
    I have a BSP with MVC design.
    I assume that the URL link to the application is the URL I see when I go into the Controller page under the BSP in SE80.
    Is that correct?
    The problem is that when I take that URL and copy paste it into a web browser, I get the first view but when I click on any button, the controller class is not called.
    If I do a right click on the BSP and select the TEST option, all is working perfectly.
    Do you have any idea why this is happening or do I do something wrong?
    Thanks,
    Itay

    Hi Stefan,
    Same issue i have as well.
    My Understanding is, in NWBC desktop, if you open a non sap (eg: html) page, NWBC becomes an IE Browser.
    That means you are now out of SAP for that tab (with html page) and whenever you try to launch any SAP transaction (using the method from HTML) it will launch in a new window and ask for Login.
    May be Experts like Samuli Kaski & Melinda Ludanyi can put some light on it.
    But, I have one more solution for this which is partially working in my case. May be helpful in you case as well.
    Issue: From some SAP transaction in NWBC (say tab A), you are launching the html page (say tab B) and then want to launch another SAP transaction (Say tab C) from html.
    Solution: Embed the HTML in SAP using HTML Viewer class and launch SAP custom transaction using the interface IF_LSAPI. It will launch it in new tab as a sap transaction with your html page.
    Now if you want to launch the SAP transaction from your html page (Which is embedded in SAP custom transaction) you can use HTML Viewer class Events and you can pass parameters as well. Re use the same interface IF_LSAPI and launch it in new tab
    In my case i am facing problems as the web developer has so many things on java script and they are not working properly. He is working on it and i am hoping it will be fine.
    Regards,
    Nik

  • In my received emails, how can I get Firefox to open URL links that begin with "click."?

    In my emails, how can I get Firefox to open links that begin with the word "click."? Instead of giving the me the message that says, for example, "Firefox can't find the server at click.americas.links.hp.com." This also happens when I try to open the links using Explorer.

    This link was not valid when I clicked it. Please contact the person sending these links they do not seem to work. The page takes me to a page that says it will load after 5 seconds, however there is not valid link.

  • Can Mail send interactive PDF attachments with URL links?

    I have tried without success to send a PDF that has URL links embedded (made in InDesign CS3). When this mail arrives the links are stripped out from the attached PDF. I do not want to send html mail for this purpose.
    Anyone have any answers? Thanks.

    Jon,
    The strong probability is that a SPAM filter in the path to the recipient has stripped them out -- Mail would not cause this. Have you tried opening the PDF with Acrobat Pro, doing a Save As, and then attaching that version to see if the same behavior continues.
    Ernie

  • What are the ways to integrate PayPal (or other monetizing service) into an Adobe AIR desktop app?

    Hey all
    I just finished publishing my AIR mobile app for iOS and Android, both featuring freemium style in-app purchasing/billing, for a single purpose only - opening the app to be full featured.
    Now the client wants a desktop version of the app. I need a way to monetize the same way: the user wants all the features - they click a button in the app, pay the 2 dollars, and now all the features are accessible.
    I think going out to PayPal, paying there and returning to the app would be best, but I cannot get the files I found here to work.
    Do you have any suggestions of a workflow with examples, or a service with AS3 support?
    thanx

    http://www.as3gamegears.com/monetization/as3-paypal-api/

  • External URL Link Into HTMLDB Application

    Hi,
    I have a non htmldb application that I want to link into my htmldb application via a url so I can run a report, in order to run this report I need to feed in some variables
    This link i am using is
    http://dev.oraclecorp.com/pls/aitmarvel/f?p=100:8:::::P8_REFRESH_HEADER_ID,P8_SR_NUMBER,P8_TARGET:82,3526357,ADMAT
    The variables being
    P8_REFRESH_HEADER_ID,P8_SR_NUMBER,P8_TARGET
    in this case I want populated with
    82,3526357,ADMAT
    It goes through single sign on OK and then displays the correct page but the variables have been stripped off.
    Any ideas??
    Thanks ANDY

    Hi,
    are there any ideas out there to this question?
    I am having exactly the same problem.
    What I additionally noticed is that when you hit the link
    for a second time, the parameters are passed fine.
    It seems to work only when a htmldb session already exists for the application.
    I am using "HTML DB as Partner Application".
    I have a feeling this problem is more related to the
    Single Sign On server...
    Thx, Michael

  • Inserting a url link into a file made in swish - swf

    Hi everyone - i made asmall swf in Swish -
    I want it to go to a link when the user clicks on it
    Can't seem to work it out
    Any advice most appreciated
    Mark

    quiero mas wrote:
    > Hi everyone - i made asmall swf in Swish -
    > I want it to go to a link when the user clicks on it
    >
    > Can't seem to work it out
    >
    > Any advice most appreciated
    >
    > Mark
    You need to embed the url link within the swf itself. The way
    I used to
    do it was draw a transparent button over the whole aera of
    the swf and
    attached the url to that. Get_url I think.
    I can't exactly remember the steps to produce the results but
    that the
    direction you should be lookin in. Maybe ask on the Flash
    forum for
    specific steps.

Maybe you are looking for