Changeing swf url in html

Hello,
I have swf file written AS3 and clickTag leading to some url. Now I would like to change that url in html using params of that swf file. I've added:
<param name="flashvars" value="clickTag=http://PageIwantToShowUponClick.com"/>
<param name="allowscriptaccess" value="always" />
and it worked with file that had empty url and (I supose) it had AS2.
Any ideas how i could change URL in my swf?

Hello, It seems that the problem in my case was either different name for clickTag in .swf AS or more likely wrong _root.click. For everyone that would like to test their clickTag there is a way: http://www.adspeed.com/Knowledges/1130/Problems_Ad_Serving/howto_troubleshoot_clickTAG_iss ues_Flash_ad.html.

Similar Messages

  • How do I use Sun Web Server 7.0u1 reverse proxy to change public URLs?

    Some of our installations use the Sun Web Server 7.0 (update 1, usually)
    for hosting some of the public resource and reverse-proxying other parts
    of the URI namespace from other backend servers (content, application
    and other types of servers).
    So far every type of backend server served a unique part of the namespace
    and there was no collision of names, and the backend resources were
    published in a one-to-one manner. That is, a backend resource like, say,
    http://appserver:8080/content/page.html would be published in the internet
    as http://www.publicsite.com/content/page.html
    I was recently asked to research whether we can rename some parts of
    the public URI namespace, to publish some or all resources as, say,
    http://www.publicsite.com/data/page.html while using the same backend
    resources.
    Another quest, possibly related in solution, was to make a tidy url for the
    first page the user opens of the site. That is, in the current solution when
    a visitor types the url "www.publicsite.com" in his or her browser, our web
    server returns an HTTP-302 redirect to the actual first page URL, so the
    browser sends a second request (and changes the URL in its location bar).
    One customer said that it is not "tidy". They don't want the URL to change
    right upon first rendering the page. They want the root page to be rendered
    instantly i the first HTTP request.
    So far I found that I can't solve these problems. I believe these problems
    share a solution because it relies on ability to control the actual URI strings
    requested by Sun Web Server from backend servers.
    Some details follow, now:
    It seems that the reverse proxy (Service fn="service-passthrough") takes
    only the $uri value which was originally requested by the browser. I didn't
    yet manage to override this value while processing a request, not even if
    I "restart" a request. Turning the error log up to "finest" I see that even
    when making the "service-passthrough" operation, the Sun Web Server
    still remembers that the request was for "/test" (in my test case below);
    it does indeed ask the backend server for an URI "/test" and that fails.
    [04/Mar/2009:21:45:34] finest (25095) www.publicsite.com: for host xx.xx.xx.83
    trying to GET /content/MainPage.html while trying to GET /test, func_exec reports:
    fn="service-passthrough" rewrite-host="true" rewrite-location="true"
    servers="http://10.16.2.127:8080" Directive="Service" DaemonPool="2b1348"
    returned 0 (REQ_PROCEED)My obj.conf file currently has simple clauses like this:
    # this causes /content/* to be taken from another (backend) server
    NameTrans fn="assign-name" from="/content" name="content-test" nostat="/content"
    # this causes requests to site root to be HTTP-redirected to a certain page URI
    <If $uri =~ '^/$'>
        NameTrans fn="redirect"
            url="http://www.publicsite.com/content/MainPage.html"
    </If>
    <Object name="content-test">
    ### This maps http://public/content/* to http://10.16.2.127:8080/content/*
    ### Somehow the desired solution should instead map http://public/data/* to http://10.16.2.127:8080/content/*
        Service fn="service-passthrough" rewrite-host="true" rewrite-location="true" servers="http://10.16.2.127:8080"
        Service fn="set-variable" set-srvhdrs="host=www.publicsite.com:80"
    </Object>
    I have also tried "restart"ing the request like this:
        NameTrans fn="restart" uri="/data"or desperately trying to set the new request uri like this:
        Service fn="set-variable"  uri="/magnoliaPublic/Main.html"Thanks for any ideas (including a statement whether this can be done at all
    in some version of Sun Web Server 7.0 or its opensourced siblings) ;)
    //Jim

    Some of our installations use the Sun Web Server 7.0 (update 1, usually)please plan on installing the latest service pack - 7.0 Update 4. these updates addresses potentially critical bug fixes.
    I was recently asked to research whether we can rename some parts of
    the public URI namespace, to publish some or all resources as, say,
    http://www.publicsite.com/data/page.html while using the same backend
    resources.> now, if all the resources are under say /data, then how will you know which pages need to be sent to which back end resources. i guess, you probably meant to check for /data/page.html should go to <back-end>/content/page.html
    yes, you could do something like
    - edit your corresponding obj.conf (<hostname>-obj.conf or obj.conf depending on your configuration)
    <Object name=¨default¨>
    <If $uri = ¨/page/¨>
    #move this nametrans SAF (for map directive - which is for reverse proxy within <if> clause)
    NameTrans.. fn=map
    </If
    </Object>
    and you could do https-<hostname>/bin/reconfig (dynamic reconfiguration) to check out if this is what you wanted. also, you might want to move config/server.xml <log-level> to finest and do your configuration . this way, you would get enough information on what is going on within your server logs.
    finally,when you are satisfied, you might have to run the following command to make your manual change into admin config repository.
    <install-root>/bin/wadm pull-config user=admin config=<hostname> <hostname>
    <install-root>/bin/wadm deploy-config --user=admin <hostname>
    you might want to check out this for more info on how you could use <if> else condition to handle your requirement.
    http://docs.sun.com/app/docs/doc/820-6599/gdaer?a=view
    finally, you might want to refer to this doc - which explains on ws7 request processing overview. this should provide you with some pointers as to what these different directives mean
    http://docs.sun.com/app/docs/doc/820-6599/gbysz?a=view
    >
    One customer said that it is not "tidy". They don't want the URL to change
    right upon first rendering the page. They want the root page to be rendered
    instantly i the first HTTP request.
    please check out the rewrite / restart SAF. this should help you.
    http://docs.sun.com/app/docs/doc/820-6599/gdada?a=view
    pl. understand that - like with more web servers - ordering of directives is very important within obj.conf. so, you might want to make sure that you verify the obj.conf directive ordering is what you want it to do..
    It seems that the reverse proxy (Service fn="service-passthrough") takes
    only the $uri value which was originally requested by the browser. I didn't
    yet manage to override this value while processing a request, not even if
    I "restart" a request. Turning the error log up to "finest" I see that even
    when making the "service-passthrough" operation, the Sun Web Server
    still remembers that the request was for "/test" (in my test case below);
    it does indeed ask the backend server for an URI "/test" and that fails.
    now, you are in the totally wrong direction. web server 7 includes a highly integrated reverse proxy solution compared to 6.1. unlike 6.1, you don´t have to download a separate plugin . however, you will need to manually migrate your 6.1 based reverse proxy settings into 7.0. please check out this blog link on how to set up a reverse proxy
    http://blogs.sun.com/amit/entry/setting_up_a_reverse_proxy
    feel free to post to us if you need any futher help
    you are probably better off - starting fresh
    - install ws7u4
    - use gui or CLI to create a reverse proxy and map one on one - say content
    http://docs.sun.com/app/docs/doc/820-6601/create-reverse-proxy-1?a=view
    if you don´t plan on using ws7 integrated web container (ability to process jsp/servlet), then you could disable java support as well. this should reduce your server memory footprint
    <install-root>/bin/wadm disable-java user=admin config=<hostname>
    <install-root>/bin/wadm create-reverse-proxy user=admin uri-prefix=/content server=<http://your back end server/ config=<hostname> --vs=<hostname>
    <install-root>/bin/wadm deploy-config --user=admin <hostname>
    now, you can check out the regular express processing and <if> syntax from our docs and try it out within <https-<hostname>/config/<hostname>-obj.conf> file and restart the server. pl. note that once you disable java, ws7 admin server creates <vs>-obj.conf and you need to edit this file and not default obj.conf for your changes to be read by server.
    >
    I have also tried "restart"ing the request like this:
    NameTrans fn="restart" uri="/data"
    ordering is very important here... you need to do this some thing like
    <Object name=default>
    <If not $restarted>
    NameTrans fn=restart uri from=/¨ uri=/foo.
    </If>

  • How to change Workspace URl in 11.1.2.3 and change the image in login

    I recently upgraded to 11.1.2.3 Everything works fine but the Planning Application is not working from the regular URL. We have a custom URL where it does not shows the server name When I try to access it with the regular URL with the server name it works fine. I want to know if there is a way that I can change the URL to custom I want to know if there was a way to change the login image in the workspace This is for Version 11.1.2.3

    Check below blog for workspace image change:
    http://www.orahyplabs.com/2012/01/customizing-epm-workspace-1112.html
    Also, check *mod*.conf file for port number of planning, it will be under ORACLE_INSTANCE/httpconfig/config/OHS/ohs_component.
    Hope this resolve your issue!
    Cheers!
    Sh!va

  • Is it possible to change the URL of the browser corresponding to changes in the timeline?

    Hello,
    I'm trying to create a whole website in Edge. Is it possible to change the browser URL for different sections of the animation. For example me.com/part1 leads to 2.0 seconds in the animation. And for example when you type me.com/part2 the browser would go to 4th second of the animation. And vice versa, when the animation reaches the 4th second the browser URL would change to me.com/part2. It would be really great if that were possible. Any ideas on how to accomplish it?
    Thanks!

    Hi there, Joel's example seems to be exactly what you're trying to do. All you need to do is replace his functions with your functions.
    There are two main parts to his example: 1) reacting to a URL change directly in the URL bar, 2) reacting to a button click, and setting the URL
    Regarding Item 1: this line (this adds a listener for when the URL hash is changed, and calls the 'sym.animate' function in his example). Note that he is linking the value after the # with the symbol names 'panel1', etc. This line enables the functionality for you to be able to directly change the URL to: testStep95.html#panel2, and the site will change pages.
    $(window).on("hashchange", function(){sym.animate(location.hash.replace("#",""), sym.onStage)});
    Regarding Item 2: he's setting the page title (based on the active panel symbol) and URL hash, in the  'sym.animate' function. He calls the 'sym.animate' function on click of btn1, btn2, btn3:
    document.title = panelIn;
    window.location.hash = panelIn;
    Props to Joel for his slick example!

  • Is it possible to change the URL of displaytag's sortable function?

    Basically, I've got a jsp page with the displaytag code on it such as:
    <display:table name="result">
    <display:column sortable="true" property="title" />
    <display:column sortable="true" property="author" />
    <display:column sortable="true" property="status" />
    <display:column sortable="true" property="location" />
    <display:column property="image" />
    </display:table>
    The way it loads the data is that in a servlet, a line of code creates the arraylist called "result", and passes that through the HTTP header onto the jsp. The jsp gets it and displaytag handles it. However, whenever I click one of the sortable headings, none of the data is found because the jsp currently needs to have the arraylist sent to it from a servlet. Clicking a sort link doesn't go through a servlet, just adds some arguments.
    Is there a way to change the sortable URL to go back through a servlet and then add the sorting code (which is something usually like ?d-49653-s=0&d-49653-o=2&d-49653-p=1)?
    Thanks
    Ed

    Hi there, Joel's example seems to be exactly what you're trying to do. All you need to do is replace his functions with your functions.
    There are two main parts to his example: 1) reacting to a URL change directly in the URL bar, 2) reacting to a button click, and setting the URL
    Regarding Item 1: this line (this adds a listener for when the URL hash is changed, and calls the 'sym.animate' function in his example). Note that he is linking the value after the # with the symbol names 'panel1', etc. This line enables the functionality for you to be able to directly change the URL to: testStep95.html#panel2, and the site will change pages.
    $(window).on("hashchange", function(){sym.animate(location.hash.replace("#",""), sym.onStage)});
    Regarding Item 2: he's setting the page title (based on the active panel symbol) and URL hash, in the  'sym.animate' function. He calls the 'sym.animate' function on click of btn1, btn2, btn3:
    document.title = panelIn;
    window.location.hash = panelIn;
    Props to Joel for his slick example!

  • Changing AnyConnect URL

    All,
    I need to change the URL that AnyConnect clients connect with and I'm looking for the easiest way of doing so without requiring clients to manually change the URL on their existing installations. This will also include going from a self-signed SSL cert on the old address to a publicly signed SSL on the new address. Could I use AnyConnect client profiles to do this even though I'm not using profiles at all now? Basically saying anyone connecting with the old address are somehow automatically forwarded to the new address. 

    I believe you could use a profile and make your server list refer to the FQDN and not the IP address.
    Once clients had connected and their local profiles update to include the FQDN, your DNS record pointing to the new address would direct them to the desired place.
    Here's where that's set in Profile Editor:
    http://www.cisco.com/c/en/us/td/docs/security/vpn_client/anyconnect/anyconnect31/administration/guide/anyconnectadmin31/ac03vpn.html#pgfId-1798377 

  • How do I change a URL to "https" in Business Catalyst?

    I'm trying to change the URL on this page {http://www.girlscoutsgcnwi.org/donate-with-form} to display "https" in Business Catalyst. Can you help?

    Hi,
    You would just create a link to the secure version of the form within your site.
    https://girlscoutsofgreaterchicagoandnorthwestindiana.worldsecuresystems.com/donate-with-f orm
    More details on this. - http://kb.worldsecuresystems.com/kb/secure-urls.html#main_Linking_to_pages_that_contain_fo rms_with_secure_URLs
    Kind regards,
    -Sidney

  • Change the URL for the usernames.

    Hi developers at Forums, I wanted to add a suggestion for you today. 
    I think using the forum profile link as; http://social.msdn.microsoft.com/profile/afzaal%20ahmad%20zeeshan%20(shani)/ is less attractive as compared to http://social.msdn.microsoft.com/profile/afzaal_ahmad_zeeshan_(shani)/
    Well, a professional in HTML encoding decoding would barely notice the difference but a newbie would have some troubles. URL re-writing as 
    var url = currentUrl.ToString().Replace("%20", "_");
    won't cost much. You can have the very same URL for the server-side codes but for the Browser window you can change the space bar HTML code to an underline, for better readability. 
    ~!Firewall!~

    I am pretty sure you have already read this 
    http://blogs.technet.com/b/exchange/archive/2011/01/17/configuring-multiple-owa-ecp-virtual-directories-on-exchange-2010-client-access-server.aspx
    Can we have more information on the ip section from you.. how is your firewall treating the cas servers??
    UMESH DEUJA MCP,MCTS,MCSA,CCNA

  • Changing XE URL settings from default

    Hey guys,
    I want to change the url of my XE pages from http://localhost:8080/htmldb/aa.bb.cc to http://localhost:8080/htmldb/aa/bb.cc
    Is there an easy way to do this?
    Thanks,
    Niall

    Well, I guess I would start off with installing an Apache and configuring this one as a proxy to XE:
    HTTPS with Oracle XE ?
    Then you would have to modify the rewrite rules for achieving your result, e.g. check the example rules here (user friendly urls): http://www.ilovejackdaniels.com/cheat-sheets/mod_rewrite-cheat-sheet/
    There are tons on information on how to use mod_rewrite.
    What are you trying to achieve? Are you trying to change urls for calling stored procedures or an Apex/HTML DB application?
    ~Dietmar.

  • Changing the URL address in browser toolbar

    I develop websites and interactive content to be used on screen for film and tv. I usually don't upload sites to a server and just preview them locally on laptops and desktops by obviously opening the .home or .index page in whatever browser is installed.
    My question is, is there anyway to change the URL that is displayed in the toolbar to another address ?
    Generally the toolbar in the browser will display a path where the files are saved i.e. file:///Users/Documents/WEB%20DESIGN/ABRD/home.html - but I would like to display for example www.mysite.com
    Most of the time I just hide the tool / address bar in Safari or Firefox, but it would be good to be able to show a real looking address other than a file path.
    Hoping there is some way to achieve this in the html code that will work locally ? I've read about URL masking but that needs the sites to be uploaded to a server for it to work?
    Thanks, any help is greatly appreciated.

    Depending on the local server you are using you could set up a virtual host:
    This is a basic example using a Windows host with an Apache server:
    http://www.elxis.org/guides/developers-guides/local-apache-and-virtual-hosts.html

  • Changing the URL address ??

    Hello everyone,
    This is a fairly simple question, but i could not find the answer through the search function.( at least it looks fairly simple)
    I want to change my url from www.site.com/index-3.html -> to www.site.com/news
    How is this possible? I hope someone can help me. Thanks in advance.
    What I hope for is that the URL is also directly reachable. So www.site.com/news actually works as a URL
    I have read a post about "masking" trough the hosting server, but I don't think that is the correct way.
    ( http://forums.adobe.com/message/2002068?tstart=0#2002068 )
    My gratitude will be more than! huge

    If I understand what you've written correctly, you want to set up a redirect. If so, try your own google search on "redirect html" and/or "redirect php." Here are a couple of links to get you started:
    http://www.instant-web-site-tools.com/html-redirect.html
    http://www.web-source.net/html_redirect.htm#.UQKRBmckWM0
    Chris

  • I want to change my url link title on cs6

    For example, I want to change my url title from www.mysiteurl.com/index.1 to www.mysiteurl.com/home
    Any help would be greatly appreciated!

    Kind of.
    You will need your main home page for the site to be in your site's root folder. Anyone can browse to it via a link that is simply http://www.yoursite.com
    Your server will send them to the index.html page without the need for you to type it into the actual link.
    The same goes for sub folders within your site. You could make any number of folders, like:
    contact
    about
    portfolio
    Then place index.html pages within those folders. Think of them as "sub folder home pages" just like your main home page. From there on out, you could use links like http://www.yoursite.com/contact and the server would direct them to the index.html page within the contact folder.
    Your site structure within the DW Files tab would look like this...
    index.html
    about
         index.html
    contact
         index.html
    portfolio
         index.html
    You would have the site's home page (index.html) on the same level as all of your sub section folders. Each one of those folders would then have an index.html page within it and the links on your site would go to the folder, instead of the folder/page.html. The server would then give the index.html page for the folder automatically.

  • Change relative URL of segments for HLS-VOD

    Simple Version:
    Can I change the URL of the TS segments delivered by the hlshttp_module in any way, or is it always relative to the requested m3u8 URL?
    Long Version:
    To try and protect my content from being accessed by third parties I want to use mod-auth-token, with a client inserted token in the request for the variant m3u8, and a server generated token in the HLS m3u8.
    My clients generate a token using a shared secret, and request the variant m3u8 from:
    https://myserver/hls-manifest/<clienttoken>/<hextime>/path/to/folder/manifest.m3u8
    This page is served dynamically (using php), and does not really have anything to do with FMS even though it is running in the same Apache instance. The m3u8 is generated with server tokens in the m3u8 URLs somethign like this:
    #EXTM3U
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=10240000,CODECS="mp4a.40.2, avc1.42001f"
    https://myserver/hls-vod/dc226454b9e39b9ffc44f9496505c70e/4ea6963f/path/to/folder/filename _1024k.mp4.m3u8
    I have installed mod-auth-token, and configured it on a LocationMatch for "^/hld-vod/(.*)\.m3u8$". Everything up to this works perfectly, and I can request both m3u8 playlists successfully. The problem is that the content of the m3u8 (the ts fragment URLs) are relative to the URL of the m3u8.
    #EXTM3U
    #EXT-X-MEDIA-SEQUENCE:0
    #EXT-X-ALLOW-CACHE:NO
    #EXT-X-VERSION:2
    #EXT-X-KEY:METHOD=AES-128,URI="https://myserver/hls-key/vodkey.bin",IV=0X560417e9155f2f2cb1fb9410397db72e
    #EXT-X-TARGETDURATION:10
    #EXTINF:10,
    filename_1024k.mp4Frag1Num0.ts
    The player is attempting to request files from:
    https://myserver/hls-vod/dc226454b9e39b9ffc44f9496505c70e/4ea6963f/path/to/folder/filename _1024k.mp4Frag1Num0.ts
    I want this to look more like this:
    https://myserver/hls-vod/path/to/folder/filename_1024k.mp4Frag1Num0.ts
    or even this:
    http://mycacheserver/hls-vod/path/to/folder/filename_1024k.mp4Frag1Num0.ts
    So the m3u8 needs to look more like this:
    #EXT-X-TARGETDURATION:10
    #EXTINF:10,
    http://mycacheserver/hls-vod/path/to/folder/filename_1024k.mp4Frag1Num0.ts
    I can think of lost of placeswhere this would have  useful applications. There does not appear to be anything in the Developer documents which would help here. Does anybody have a suggestion for something I can try?

    Hi Michael,
    Thanks for using FMS 4.5 and its new features.
    However, there is no way to not to put relative urls for the ts files. However, you might like to do either Apache's "URL rewriting rules" or redirection . For rewriting rules, you might check http://httpd.apache.org/docs/2.0/misc/rewriteguide.html
    Though, you may suffer in caching benefits. Here, if the id that you have inserted is on per client basis, you may not get the caching benefits on the caching server as it will always caching on basis of
    https://myserver/hls-vod/dc226454b9e39b9ffc44f9496505c70e/4ea6963f/pat h/to/folder/filename_1024k.mp4Frag1Num0.ts
    while, if you use client side redirect something like
    redirect 301 url1 url2
    it may help. You might consider other similar solutions for example, client redirect on proxy servers etc.. just be ware of caching in your case (if applicable)

  • Changing the URL runtime of an ADF secure page bypasses security

    Hi All,
    I created an application in ADF-BC-JSF (Jdeveloper 10.1.3.3) and introduced ADF security in it as discussed in Frank's Blog
    http://www.oracle.com/technology/products/jdev/howtos/1013/adfsecurity/adfsecurity_10132.html.
    I have defined 2 roles, Role A and B. Now if Role A user (User1) logs authentically in the application, and then changes the URL in the browser to some other page of the application, the application loads him the respective page but not for the same User1. It loads the page for some other user (first record in the database) in the same Role A. Now as the User1 is authenticated and authorised under Role A, he can do anything to this user's information.
    I dont have any idea why is it so nor I am able to come up with any workaround. Any links or help will be really appreciated.
    Thanks,
    Neeraj
    Edited by: Neeraj sehgal on Sep 1, 2008 8:54 AM

    Hi,
    I dont know if you meant this but I checked USE_APPLICATION_VIEW_CACHE and it was set to true. I also checked the SRDemo application(user lpopp) and tried accessing some different page at runtime in the URL. It too went on the wrong page for some other user (dfaviet) and then I created one SR for that user. Here, unlike my application, It did not create the SR and the page got refreshed with proper user first. I couldn't figure out why my application is allowing to create the Record.
    However, I would like to mandate the user to navigate through the pages only through application. If he changes anything in the URL, he must be redirected to the Login/Error page.
    Please guide me how should I approach.
    Thanks,
    Neeraj

  • How to change the URL

    Hi All,
    I have created a web dynpro application and now I  need to change the URL of this application to some basic message type URL for eg:
    let's say our URL is "http://testdoc/post?mssg" and I now want to change this to as "OPEN DOCUMENT" and when user clicks on ""OPEN DOCUMENT" it will still direct to the original destination that is our original URL.
    Thanks,
    Rajat

    I used the following syntax:
    <A href="http://forums.sdn.sap.com/">display SDN</A
    >
    Edited by: rajatg on Oct 6, 2010 4:43 AM

Maybe you are looking for