Dont' Understand Why getURL is not working

When testing my Flash movie on my computer, all of the getURL
links work perfectly, and worked on exported movie .swf which was
loaded onto server and veiwed by another on their system. Now that
it has been added to web page, the animation is running fine, but
the getURL is not working. (They were assigned to buttons.) I am
new to Flash and have no clue why it's working in test but not on
web page.

on (release) {
//Goto Webpage Behavior
getURL("
http://","_self");
//End Behavior
I put in the full path of where to go after "
http:// followed by the ", "_self");
I am using Flash8.
I am also finding out it could be an embedding issue on the
site it has been put on, but won't know for sure until later.
Hopefully that will resolve it. Thanks for your reply
Macron.

Similar Messages

  • I don't understand why ePrint does not work on emailing photos - Discard - Looked like a spam/ virus

    I don't understand why ePrint does not work on emailing photos - Discard - Looked like a spam/ virus

    Thanks. The problem was solved when I inserted a word in the subject line. Previously I was keeping it blank.

  • Can not understand why it is not working, plz help.

    I am a student trying to understand flex builder 3, but it is very hard and when something is going wrong I think that I will never undersand how is it working.
    Hete is my program and do not see a problem. Maybe someone could help me?
    MAIN APLICATION :
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" horizontalAlign="left"
    xmlns:omp="components.*" themeColor="#444444"
    backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#686868, #111111]"
    initialize="klaseServ.send(),mokinysServ.send()"
    xmlns:comp="components.*">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    [Bindable] private var klaseArray:ArrayCollection;
    [Bindable] private var mokinysArray:ArrayCollection;
    // PRIVATE -------------------------------------------------------------------------
    private function resultKl(event:ResultEvent):void{
    klaseArray=event.result.ROWSET.ROW;
    private function resultMo(event:ResultEvent):void{
    mokinysArray=event.result.ROWSET.ROW;
    // PUBLIC ---------------------------------------------------------------
    ]]>
    </mx:Script>
    <mx:HTTPService id="klaseServ"
    url="data/vkklase.xml"
    result="resultKl(event)" />
    <mx:HTTPService id="mokinysServ"
    url="data/vkmokinys.xml"
    result="resultMo(event)" />
    <mx:VBox x="0" y="0" width="100%" verticalGap="0">
    <mx:Canvas height="70" width="100%">
    <mx:Panel title="{horizontalList.selectedItem.PAVADINIMAS}"
    height="70" width="100%" layout="horizontal">
    <mx:HorizontalList id="horizontalList"
                        labelField="PAVADINIMAS"
                        dataProvider="{klaseArray}"
                        itemRenderer="icon"
                        columnCount="10"
                        columnWidth="30"
                        rowCount="1"
                        rowHeight="30"
                        horizontalScrollPolicy="on" />
    </mx:Panel>
    </mx:Canvas>
    <mx:VBox height="90" width="100%">
    <mx:Panel height="90" layout="horizontal" title="Asmuo" width="100%" backgroundAlpha="1.0">
    <mx:HorizontalList height="50" width="100%" dataProvider="mokinysArray"/>
    </mx:Panel>
    </mx:VBox>
    <mx:HBox height="15" color="#FFFFFF" width="100%" backgroundColor="#636161">
    <mx:Label id="vardasLab" text="Vardas" />
    <mx:Label id="pavardeLab" text="Pavardė" />
    <mx:Label id="amziusLab" text="Amžius" />
    </mx:HBox>
    <mx:HBox>
    <mx:VBox width="60" verticalGap="0">
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    </mx:VBox>
    <mx:Canvas>
    </mx:Canvas>
    </mx:HBox>
    </mx:VBox>
    </mx:Application>
    ICON.MXML
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2008/02/15/creating-a-simple-image-gallery-with-the-flex-hori zontallist-control/ -->
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
            horizontalAlign="center"
            verticalAlign="middle">
        <mx:Label text="{data.PAVADINIMAS}" />
        <mx:Label text="{data.KIEKMOKINIU}" />
    </mx:VBox>
    data/vkklase.xml
    <?xml  version="1.0" ?>
    - <ROWSET>
    - <ROW>
    <ID>2</ID>
    <PAVADINIMAS>7B</PAVADINIMAS>
    <KIEKMOKINIU>1</KIEKMOKINIU>
    </ROW>
    - <ROW>
    <ID>1</ID>
    <PAVADINIMAS>1A</PAVADINIMAS>
    <KIEKMOKINIU>2</KIEKMOKINIU>
    </ROW>
    - <ROW>
    <ID>3</ID>
    <PAVADINIMAS>7C</PAVADINIMAS>
    <KIEKMOKINIU>3</KIEKMOKINIU>
    </ROW>
    </ROWSET>
    data/vkmokinys.xml
    <?xml  version="1.0" ?>
    - <ROWSET>
    - <ROW>
    <ID>2</ID>
    <KLASE>1A</KLASE>
    <VARDAS>Paulius</VARDAS>
    <PAVARDE>Paulauskas</PAVARDE>
    <GIMMETAI>2002</GIMMETAI>
    <GIMMEN>12</GIMMEN>
    <GIMDIEN>20</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>3</ID>
    <KLASE>1A</KLASE>
    <VARDAS>Saulius</VARDAS>
    <PAVARDE>Saulenas</PAVARDE>
    <GIMMETAI>2003</GIMMETAI>
    <GIMMEN>1</GIMMEN>
    <GIMDIEN>12</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>1</ID>
    <KLASE>7B</KLASE>
    <VARDAS>Antanas</VARDAS>
    <PAVARDE>Antanavicius</PAVARDE>
    <GIMMETAI>1997</GIMMETAI>
    <GIMMEN>2</GIMMEN>
    <GIMDIEN>1</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>5</ID>
    <KLASE>7C</KLASE>
    <VARDAS>Stasys</VARDAS>
    <PAVARDE>Stasevicius</PAVARDE>
    <GIMMETAI>1997</GIMMETAI>
    <GIMMEN>3</GIMMEN>
    <GIMDIEN>18</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>6</ID>
    <KLASE>7C</KLASE>
    <VARDAS>Bronius</VARDAS>
    <PAVARDE>Broniavicius</PAVARDE>
    <GIMMETAI>1996</GIMMETAI>
    <GIMMEN>12</GIMMEN>
    <GIMDIEN>30</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>4</ID>
    <KLASE>7C</KLASE>
    <VARDAS>Mantas</VARDAS>
    <PAVARDE>Mantavicius</PAVARDE>
    <GIMMETAI>1996</GIMMETAI>
    <GIMMEN>11</GIMMEN>
    <GIMDIEN>3</GIMDIEN>
    </ROW>
    </ROWSET>

    Something wrong with ITEMRENDERER.... I dont know what is wrong, but it is just isnt working when i try to compile.. =(

  • I cannot download my adobe creative suit 5 design premium because it says my serial number is invalid but Adobe customer care said it valid...i don't understand why it still not working??

    I have upload my Adode Creative Suit 5 design premium on my first apple mac pro successfully.,i purchased in a retail shop few year ago...!as it have two use of the CD when installing ..i'm trying to install it on my other apple mac pro..but this time it is say that the serial number is not valid..i got it checked by Customer care, they said it is valid and should be working when set up on my laptop..can someone pose help as i don't know who to turn now to find answers...many thanks
    Kind Regards

    Hi Rich,
    The cause of this can be multiple. First of all be sure you use the original CD + serial. In case of a download same story. Try to find out if the installed version match the language of the serial (they need to match). Last but not least: Check if you use a upgrade version, if so it might be needed to fill 2 serials.
    Can you share a screen of the error (please hide the SN )

  • I have seen on this community that the earpods do not work on iPod shuffle gen 3 but when I was using on them it worked the control panel thing that is but only until I turned it off I don't understand why it won't work again and why it did in the first p

    I have seen on this community that the earpods do not work on iPod shuffle gen 3 but when I was using on them it worked the control panel thing that is but only until I turned it off I don't understand why it won't work again and why it did in the first place can someone please explain and tell me how to make it work again

    Sorry first time asking question didn't mean to write same thing twice well copy paste

  • Entire days of pictures are not loaded on iCloud, while most of the days are loaded. Weeks has passed, while I was connected to wireless, so I dont understand why still emtire days are missing...

    Entire days of pictures are not loaded on iCloud, while most of the days are loaded. Weeks has passed, while I was connected to wireless, so I dont understand why still entire days are missing...

    I noticed an entire series of its always sunny in philadelphia is missing from my apple tv "purchased" section where i can stream it directly from itunes...I just purchased the new season and not showing at all

  • Hi all, i need urgently your help please. My touch screen on muy Iphone 5  is not working, i dont understand as it has not been damaged at all, i dont know what happened and need urgently somebody helps me please

    Please anyone there can help me what I can do??!! touch screen of my Iphone 5 is not working at all and dont understand as it has not been damage and it is only 2 months and half!! it is not an old iphone and it has not been damaged, has happened right now and cannot turn off the mobile at all. Tried to take out the nano sim as i though it will be turned off but it has not been! i dont know what i can do and i am desesperate!!! thanks All for your help!!

    Removing the SIM has no affect on the power of the phone. It is just the part that facilitates connecting to your carrier. Try holding the sleep/wake and home buttons together until you see the Apple logo on the screen and then release the buttons. The phone should reboot. You may need to hold the buttons together for 15-30 seconds.

  • Why does abode not work on my galaxy tab2

    Why does abode not work on my galaxy tab 2?

    The games dont load they just say I need to update to the latest version or say that it is not compaterble with it.

  • No earbuds work for the left side...why dis it not working?

    My sons and husbands iphones work just fine with earbuds that dont work on mine. Why is mine not working? Earbuds used to work but not anymore.

    Melinda1933 wrote:
    It couldnt be that cause they work just fine on my hisbands iphone. Im wondering if it can even be fixed! But its nothing i can fix with teouble shooting. Thanks though.
    Read my post again
    CHECK the earphone socket on YOUR iPhone
    The small round hole on top on left that is where the earphones are not working of course they work on
    another iPhone that is not the one wityh a problem
    If it is not debris it could be software  do the troubleshooting ..........

  • Why Facetime is not working in United Arab Emirates?

    Why Facetime is not working in United Arab Emirates?? Even the icon for it and its setting in the phone’s setting list are not exist.. Could it be that this service is locked by our local mobile carrier or from Apple side?

    The UAE IOS devices are identified by their Serial number which has the Suffix AE. the telecoms regulator in UAE has agreed with Apple not to put facetime on UAE devices so people dont cut out the UAE telcoms providers that have not recovered their infratructure invetsments on copper and fibreoptic cabling/exchanges etc.
    You cannot change this as Apple always refrences your serial number of your device everytime it connects to itunes or the app store.  You will need a non UAE IOS device to have facetime.  how about getting Skype instaed its more widely used and in my opinion better

  • Unsure why this is not working?

    Can anyone give me a pointer as to why this is not working? I put the code from line 16 through 50 in the "...before displaying the page" additional pl/sql section of the wizard. The form wizard created the code from 5 through 15 and 51 through 55. The first error I understand because I think the wizard forgot to end the procedure correctly by saying "end beforeModuleDisplay;" instead of just putting "end;".
    If I am right, how can I fix this since the wizard is the one putting in this info? I tried putting the correct end statement in where I put the rest of my code, but that created even more errors.
    Error creating package SOCSBO_USER.ACCT_INFO
    Error creating package SOCSBO_USER.ACCT_INFO
    Line/ColumnError
    56/5PLS-00103: Encountered the symbol "PROCEDURE" when expecting one of the following: begin declare end exception exit for goto if loop mod null pragma raise return select update while <an identifier> <a double-quoted delimited-identifier> <a bind variable> << close current delete fetch lock insert open rollback savepoint set sql execute commit forall <a single-quoted SQL string> The symbol "declare" was substituted for "PROCEDURE" to continue.
    2128/5PLS-00103: Encountered the symbol "END" when expecting one of the following: begin function package pragma procedure form
    -- PACKAGE BODY SOCSBO_USER.ACCT_INFO
    -- created Monday 05-NOV-2001 16:52
    create or replace
    1 package body ACCT_INFO as
    2 --
    3 -- Created by ASAPP using WebDB at 15:16:46, Mar 04, 2002
    4 --
    5 procedure beforeModuleDisplay
    6 (
    7 p_block_name in varchar2,
    8 p_object_name in varchar2,
    9 p_instance in integer,
    10 p_event_type in varchar2,
    11 p_user_args in varchar2,
    12 p_session in out PORTAL30.wwa_api_module_session
    13 )
    14 is
    15 begin
    16 declare
    17 l_fs varchar2(200);
    18 l_cv varchar2(200);
    19 l_sv varchar2(200);
    20 l_lang varchar2(100);
    21 l_idx integer;
    22 begin
    23 l_lang := portal30.wwctx_api.get_nls_language;
    24 l_fs := p_session.get_value_as_varchar2(
    25 p_block_name => 'DEFAULT',
    26 p_attribute_name => '_FORM_STATE');
    27 l_cv := p_session.get_shadow_value(
    28 p_block_name => 'DEFAULT',
    29 p_attribute_name => 'A_ACCOUNT_COURSE',
    30 p_language => l_lang);
    31 l_sc := p_session.get_shadow_value(
    32 p_block_name => 'DEFAULT',
    33 p_attribute_name => 'A_ACCOUNT_SUBPROJECT',
    34 p_language => l_lang);
    35 if upper(l_fs) = 'UPDATE_AND_DELETE' then
    36 l_idx := row_function.get_index('COURSE_BOTTOM');
    37 if upper(l_cv) = 'Y' then
    38 p_form.items(l_idx).visible := 'Y';
    39 else
    40 p_form.items(l_idx).visible := 'N';
    41 end if;
    42 end if;
    43 if upper(l_fs) = 'UPDATE_AND_DELETE' then
    44 l_idx := row_function.get_index('SUBPROJECT_BOTTOM');
    45 if upper(l_sv) = 'Y' then
    46 p_form.items(l_idx).visible := 'Y';
    47 else
    48 p_form.items(l_idx).visible := 'N';
    49 end if;
    50 end if;
    51 exception
    52 when others then
    53 PORTAL30.wwerr_api_error.add(PORTAL30.wwerr_api_error.DOMAIN_WWV,'app','generic','SOCSBO_USER.ACCT_INFO.beforeModuleDisplay', p1 => sqlerrm);
    54 raise;
    55 end;
    56 procedure row_function
    REST OF CODE NOT RELEVANT

    Hello Albert,
    You open a new pl/sql block on line 16, but you have only one 'end' statement.
    You can correct this by adding another 'end' statement after line 55 or you can remove the inner PL/SQL block and place it in the procedure itself. Variables can be declared after 'is' on line 14. In your example it's better to do it this way. See example.
    Hope this helps...
    Nancy.
    Example solution 2:
    -- PACKAGE BODY SOCSBO_USER.ACCT_INFO
    -- created Monday 05-NOV-2001 16:52
    create or replace
    1 package body ACCT_INFO as
    2 --
    3 -- Created by ASAPP using WebDB at 15:16:46, Mar 04, 2002
    4 --
    5 procedure beforeModuleDisplay
    6 (
    7 p_block_name in varchar2,
    8 p_object_name in varchar2,
    9 p_instance in integer,
    10 p_event_type in varchar2,
    11 p_user_args in varchar2,
    12 p_session in out PORTAL30.wwa_api_module_session
    13 )
    14 is
    15 l_fs varchar2(200);
    16 l_cv varchar2(200);
    17 l_sv varchar2(200);
    18 l_lang varchar2(100);
    19 l_idx integer;
    20
    21 begin
    22
    23 l_lang := portal30.wwctx_api.get_nls_language;
    24 l_fs := p_session.get_value_as_varchar2(
    25 p_block_name => 'DEFAULT',
    26 p_attribute_name => '_FORM_STATE');
    27 l_cv := p_session.get_shadow_value(
    28 p_block_name => 'DEFAULT',
    29 p_attribute_name => 'A_ACCOUNT_COURSE',
    30 p_language => l_lang);
    31 l_sc := p_session.get_shadow_value(
    32 p_block_name => 'DEFAULT',
    33 p_attribute_name => 'A_ACCOUNT_SUBPROJECT',
    34 p_language => l_lang);
    35 if upper(l_fs) = 'UPDATE_AND_DELETE' then
    36 l_idx := row_function.get_index('COURSE_BOTTOM');
    37 if upper(l_cv) = 'Y' then
    38 p_form.items(l_idx).visible := 'Y';
    39 else
    40 p_form.items(l_idx).visible := 'N';
    41 end if;
    42 end if;
    43 if upper(l_fs) = 'UPDATE_AND_DELETE' then
    44 l_idx := row_function.get_index('SUBPROJECT_BOTTOM');
    45 if upper(l_sv) = 'Y' then
    46 p_form.items(l_idx).visible := 'Y';
    47 else
    48 p_form.items(l_idx).visible := 'N';
    49 end if;
    50 end if;
    51 exception
    52 when others then
    53 PORTAL30.wwerr_api_error.add(PORTAL30.wwerr_api_error.DOMAIN_WWV,'app','generic','SOCSBO_USER.ACCT_INFO.beforeModuleDisplay', p1 => sqlerrm);
    54 raise;
    55 end;
    56 procedure row_function
    REST OF CODE NOT RELEVANT

  • Why cant apple track my stolen iphone if it connects to the internet after reset. the IMEI number stays the same so i dont understand why they just dont shut it off and call me and the police to inform me about the whereabouts of the phone

    Hi, my iphone was stolen around a month ago. After the phone popped up on find my iphone in central london the police decided to be really helpful and instead going to get it they closed my case. Since then it has been offline because the "lovely" individual who stole it obviously reset it. I was just wondering why doesnt apple track phones through the IMEI number. The number stays the same, so if the phone connects to the network they should be able to know that its my stolen iphone. I just dont understand why they dont do that. They have a huge ecosystem, and if someone signs in to my iphone with their itunes account (which they pretty much have to in order to use most of the phones features) the IMEI number gets associated with that perticular account. Would it not be possible for them to realize that its my stolen phone?
    Thanks to anyone that answers.

    Your carrier can lock the IMEI number, try contacting them. At least you'll have the satifsaction of knowing the theif can't use it anymore. My guess is Apple doesn't block IMEI numbers because they don't want someone selling a phone without record, and then reporting it stolen and causing problems that way. But that's just a guess, I feel for ya. Good luck either way, if it's a locked phone you should be able to call the carrier it's locked to and have the IMEI blocked.

  • Why is FaceTime not working in UAE

    Why is FaceTime not working in UAE ?
    Also is iMessage working ? In UAE ?

    OMG... Your answer doesn't help.
    I am using Mac for 25 years and supported so many users that I do understand what the word Help means...
    The fact that a gov doesn't allow the use, doesn't mean it is also not allowed worldwide and the telephone is supposed to work worlwide, be sold in another country one day where Facetime is welcome.
    North Korea doesn't not allow cellphone, so it must be bad to use it there, isn't it?
    By the way I have the solution via http://www.macworld.com/ forum but it is not allowed so... in mp the answer you will get, young Padawan, just if HELP is required.

  • Why is scrolling not working with multiple youtube embeds layed out vertically in a stack on one page?

    Why is scrolling not working with multiple youtube embeds layed out in a stack on one page?

    Hi ,  
      This is a sort of performance issue , because your program takes more than the max time set for the program to execute in foreground.
    There are many stuff in program which will hamper your performance.
    I will list down a few
    1. SELECT *
    FROM konp
    INTO CORRESPONDING FIELDS OF TABLE konp_itab
    FOR ALL ENTRIES IN a363_itab
    WHERE knumh EQ a363_itab-knumh
    in this statement you are using for all entries a363_itab , but before this statement you are not checking if the table has any entry or not , please do remember that for all entries has this characterstic , that if you internal table does not contain any record , then all the records are selected from the database table. So in this case if you table a363_itab is empty , so what you want is no data must be seelcted from table konp , but what will happen is all the records in KONP will be seelcted.
    2. While retreiving data you are using seelct * even though you do not require all the fields , an example is
    <b>SELECT *
    FROM mkpf
    INTO CORRESPONDING FIELDS OF TABLE mkpf_itab
    FOR ALL ENTRIES IN mseg_itab
    WHERE mblnr EQ mseg_itab-mblnr.</b>
    in this your internal table contains only 2 fields
    <b>mblnr LIKE mkpf-mblnr, "Number of Material Document
    bldat LIKE mkpf-bldat, "Document Date in Document</b> , but to get these 2 fields you are selecting all the fields of the table.
    3. In select you are using into corresponding fields of table , it is not a good practice., so please avoidd it.
    Please understand that you must try to reduce the access to your database tables and try to keep it minimal , because this same thing may happen becasue data in DEV is very less compared to the volume of data in production , so a program working in DEV will take much more time in PRD if not written properly and may result in timeouts , as in your case.
    Please try to make chanegs to the prorgam and see if it works.
    In case you have more queries , please do revert back.
    Regards
    Arun
    *Reward points if replay is helpful

  • HT203180 shows (I already of 5 of them) now it says they can't be played on my ipod, and I purchased them from Itunes? I don't understand why they won't work?

    I purchased the remainder of shows (I already of 5 of them) for a TV series now it says they can't be played on my ipod, and I purchased them from Itunes? I don't understand why they won't work? I tried the conversion but it's greyed out and not chooseable. But again purchased from itunes so they should work according to the above article. Can anyone help me?

    Dracwolley wrote:
    They can. The video needs to be converted, though. If it's in your library, just go to Advanced (in the top menu), then click on "Make iPod/iPhone Version." Wait a while, and when it's done, click and drag. Or for a quicker alternative and less space lost on the iPod, download Handbrake here.
    Yep.

Maybe you are looking for