Need help with multiple links in one Flash file

Hi, I have to do a banner which is basically 4 different
slides that fade up and down, but the client wants each slide to
link to a different place when the user clicks on it. I know how to
create an invisible button to link the whole ad, but how would I
link each slide? Thanks in advance!

Am I getting no replies because this can't be done in Flash?
Is there a better way to do it? Actionscripts perhaps?
BTW, I'll have no access to the html page that the client
will be putting the swf file on so I wouldn't be able to put any
code around the file for linking, like if I did a bunch of jpg's
and found a script on the web somewhere that would fade them up and
down and link them. They want the linking built right into the swf,
is this even possible? Thanks in advance!

Similar Messages

  • I need help with circular linked list

    Hi,
    I need help with my code. when I run it I only get the 3 showing and this is what Im supposed to ouput
    -> 9 -> 3 -> 7
    empty false
    9
    empty false
    3
    -> 7
    empty false
    Can someone take a look at it and tell me what I'm doing wrong. I could nto figure it out.
    Thanks.This is my code
    / A circular linked list class with a dummy tail
    public class CLL{
         CLLNode tail;
         public CLL( ){
              tail = new CLLNode(0,null); // node to be dummy tail
              tail.next = tail;
         public String toString( ){
         // fill this in. It should print in a format like
         // -> 3 -> 5 -> 7
    if(tail==null)return "( )";
    CLLNode temp = tail.next;
    String retval = "-> ";
         for(int i = 0; i < -999; i++)
    do{
    retval = (retval + temp.toString() + " ");
    temp = temp.next;
    }while(temp!=tail.next);
    retval+= "";}
    return retval;
         public boolean isEmpty( ){
         // fill in here
         if(tail.next == null)
              return true;
         else{
         return false;
         // insert Token tok at end of list. Old dummy becomes last real node
         // and new dummy created
         public void addAtTail(int num){
         // fill in here
         if (tail == null)
                   tail.data = num;
              else
                   CLLNode n = new CLLNode(num, null);
                   n.next = tail.next;
                   tail.next = n;
                   tail = n;
         public void addAtHead(int num){
         // fill in here
         if(tail == null)
              CLLNode l = new CLLNode(num, null);
              l.next = tail;
              tail =l;
         if(tail!=null)
              CLLNode l = new CLLNode(num, null);
              tail.next = l;
              l.next = tail;
              tail = l;
         public int removeHead( ){
         // fill in here
         int num;
         if(tail.next!= null)
              tail = tail.next.next;
              //removeHead(tail.next);
              tail.next.next = tail.next;
         return tail.next.data;
         public static void main(String args[ ]){
              CLL cll = new CLL ( );
              cll.addAtTail(9);
              cll.addAtTail(3);
              cll.addAtTail(7);
              System.out.println(cll);          
              System.out.println("empty " + cll.isEmpty( ));
              System.out.println(cll.removeHead( ));          
              System.out.println("empty " + cll.isEmpty( ));
              System.out.println(cll.removeHead( ));          
              System.out.println(cll);          
              System.out.println("empty " + cll.isEmpty( ));
    class CLLNode{
         int data;
         CLLNode next;
         public CLLNode(int dta, CLLNode nxt){
              data = dta;
              next = nxt;
    }

    I'm not going thru all the code to just "fix it for you". But I do see one glaringly obvious mistake:
    for(int i = 0; i < -999; i++)That says:
    1) Initialize i to 0
    2) while i is less than -999, do something
    Since it is initially 0, it will never enter that loop body.

  • Help with Multiple libraries and one storage location for files

    I cannot get an answer to this question anywhere and was really hoping that The [H] would be able to help.
    Here is my current set up that allows my wife and I to have completely independent libraries and ratings, but use the same files:
    -Shared folder with MP3s on a network drive.
    -Two PCs, each with it's own Ipod associated to it with individual libraries but all pointing to the same network share for MP3 Files.
    -Each PC is using the SAME Itunes account for downloads.
    -Each account has it's own library folder also on a network share.
    Now to my question(s)/problem with downloaded content:
    (1) Is there any way to have a file that is downloaded from Itunes be automatically placed in a shared location accessible to both Libraries? (Say if I download the latest Jack Johnson album, can it automatically show up in my wife's library and vice versa?)
    (2) Is there any way to share the album artwork versus having two copies of everything(one for each library)?
    So my goal is to have two libraries with a central location for ALL files, including anything downloaded from Itunes by each individual user. Is this possible?

    Have your wife transfer all purchases from the iPad into iTunes, backup her iPad and then sync with iTunes. Everything ... All media and other content will be available in that iTunes library and she will have a current backup.
    Assuming that your son will still be sharing your wife's Apple ID (he is too young to have one of his own) .... When you set up his iPad, restore the iPad from your wife's backup and then select only the content that you want your son to have on his iPad in the iTunes library and then sync that iPad with iTunes.
    The game progress is stored in the backup and should transfer onto his device when you restore from your wife's backup. You can always delete any content (apps, movies, music) that you don't want your son to have on the iPad, if you missed it when you synced with iTunes after setting the device up for him.
    You can set your sync preferences - any way that you want to - for both devices and still use the same iTunes library for both iPads. So ... Yes you can sync any apps that you want to his iPad and any apps that your wife wants to her iPad. You just need to restore your son's iPad from your wife's backup in order to get his game progress onto his iPad.
    In case you need these....
    Transfer purchases.
    http://support.apple.com/kb/HT1848
    How to backup and restore from a backup
    http://support.apple.com/kb/HT1766
    Remember to have your wife backup her iPad just before you restore his iPad from the backup so that his most recent progress will be available in the backup.

  • Need help with href link that submits

    I need some help. I dynamically create HTML that displays a horizontal row of page numbers in Position 8. Although they look like page numbers to the use, are not true Apex pages, but rather "logical" pages that change the content in a single Apex physical page. The URL that gets returned from the HREF sets a variable in the page. Then I need a submit to occur so that all my "after submit" processes run, and the page re-renders. Is this even possible? I've been unsuccessful so far.
    Thanks.

    Martin,
    Two things...
    1. Be careful about "hard coding" values in a link. I don't know if you've already done this, but the link should use substitution variables as so...
    f?p=&app_id.:&app_page_id.:&app_session.::NO::P94000_LOGICAL_PAGE_NUM:2
    When the page renders each substitution variable will be replaced with the correct value.
    2. Not that it really matters, but you named your variable starting with P94000. Typically this would indicate the variable appears on page 94000. Is this the case?
    The problem with what you want to do is that it can be done so many different ways. Each way is not necessarily better than the other. Number 1 above is using a link in the traditional sense. It's a link to the same page (achieved by using app_page_id). It will not submit the page but it contains enough information to set the value of a variable and you can code off of that variable's value.
    You could use a JavaScript trick, but I wouldn't bother for this. In addition, you could use the request value over a variable value to feed off of but since you already started with the variable I'd stick with that.
    The first thing you need to do is figure out if your variables value is being set with the link... Let me know if you have more questions.
    Regards,
    Dan

  • No Qualified People Here?   Need Help with Contact - Linking Email

    I have two pages - XML, I'll post photos . Just need to link it to my email and also I page to link social buttons.

    It is getting late here, nearly 3:00 am.
    I'll get back to you later on. But I am still in a quandary regarding the question. What I have now is
    you post photos, presumably to the website
    you send an email to yourself with a link to the image
    somewhere (please state where) you want social media images with their relative links
    I just want to link it to my own email - probably refers to point 2 above
    so when someone sends it to me - someone sends what to you. Do you post the iphoto or does it get uploaded by someone else.
    we need to disregard the XML-file

  • Need help with data link

    I have done data links where I linked from one sql to another
    on some id.
    Now I would like to link based on the month (mm),year,district_id and code_id
    How do I do this. When I link it it links based on one thing and generally the primary key displays.
    Do I need to create my on concatenated key and then tell it to use that.
    for example month || year || district_id || code_id
    then go in the property inspector and change the where to reflect this
    Howard

    I have done data links where I linked from one sql to another
    on some id.
    Now I would like to link based on the month (mm),year,district_id and code_id
    How do I do this. When I link it it links based on one thing and generally the primary key displays.
    Do I need to create my on concatenated key and then tell it to use that.
    for example month || year || district_id || code_id
    then go in the property inspector and change the where to reflect this
    Howard

  • Need help with multiple accounts

    I forgot my original password for my itunes account.  Stupidly, i set up another one.  Now I can't play my songs from my original account because I hace to put in that password.  Tried reseting the password, but the email address from that account has been deactivated, so when it says" will sennd to email address on file, I can't retrive the email to rest the password.  Is there a way to merge both accounts?

    No.  You cannot merge the accounts.  Sorry.
    You can try contacting itunes support for help with your password.

  • STILL NEED help with MULTIPLE COMPUTER usage

    please please... it wont let me transfer songs from this 2nd computer to the ipod... PLEASE... i already set it to manual and it still wont work!

    See this.
    Using iPod with multiple computers.
    If you don't understand how manual transfer works, see this also.
    Manual transfer.

  • Multiple projects, yet one flash file launched from browser

    Hello everyone, I glad to be a part of this wonderful community.  I have a really sticky Captivate 4 problem, and I wanted to get my feelers out there now before I really need to get this done before the end of the week.  This question has to do with publishing.  I have 7 project files, and I created a "menu" slide at the end of each of them that look exactly the same.  In this particular slide, there are 7 'click boxes' spread throughout the page that launch all the other projects.  If you are wondering why I did this, it's because I'm trying to cut back on load time when a user click on any individual project.  Now, my programmer can only launch one .swf file from our webpage to get the first project started.  So, does this mean Captivate will dynamically handle launching all of the other projects(assuming multiple flash files are created) when they are launched from these "menu" slides?  I'm a bit confused.  I'm likely confusing some of you as well.  It is hard to put the problem into writing.  Please help!

    Okay, so lets look at the problem, shall we?
    You created seven projects. But you later asked:
    So, does this mean Captivate will dynamically handle launching all of the other projects (assuming multiple flash files are created) when they are launched from these "menu" slides?
    First off, with seven different projects, you end up with seven different outputs. Assuming you are using Captivate in the basic form, you will end up with seven different SWF files and seven different HTM files that need to be factored into things. You may have more files than that, depending on your options used.
    When you create the links using the Click Boxes, hopefully you used the option: Open other project. This means that when the user clicks, the other SWF/HTM or EXE (depending on output) will be launched.
    I'm sure you will have other questions. So just post back either in threads of their own or by replying to this thread.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Need help with EXS24 "read velocity range from file name"

    I am trying to import 127 drum samples to a single key using the option shown here. The option says "Map to key dropped on and read velocity range from file name". I can find no documentation in the manuals on how to do this. What is the syntax required in the file name to make this work? I need to do several of these imports. The capability is cleary there, but I need help on how the file name should be formatted. My thanks to anyone who can help.

    Hi
    Not a direct answer to your question, but if you are doing a lot of sample mapping etc, you may want to check out Redmatica's KeyMap Pro or the simpler Keymap 1:
    http://www.redmatica.com
    CCT

  • I need help with multiple text masks on one video.

    Hi,
    I am trying to get three different text masks to appear at different times on the same video. I seem to only be able to have one of the three words applied to the video at a time. For example when I copy paste another set of masks onto the video it deletes the last ones. What am I doing wrong? How can I make this work?
    Thanks for any response!

    It's pretty confusing, rto say the least. Masks would only be replaced, if the current masks are selected, which is totally intentional behavior. that aside, you workflow is clunky, to say the least. Simply duplicate the layer, trim the results as needed, apply the masks and animate the layer's opacity. Takes half the time than fiddling with animating mask opacity or otehr such things.
    Mylenium

  • Need help with many devices and one itunes account!!

    I recently purchased each of my kids an Ipod Touch.  They all three are now using my Itunes account which has become a little bit of a problem.  The biggest issue now is with iMessage.  When a friend send a text message or tries to Facetime one of the kids, we all get the message.  They are all using my itunes account user name and password, for apps, music, etc....
    What's the best way to seperate the three devices so they aren't all getting the same text messages?  Also, is it best to set up their own user accounts to sync their ipods with itunes? 
    Any help would be appreciated.

    If you want to use only one AppleID account for multiple devices but seperate imessage, you will have to use different email address to differentiate the device.
    I would assume all your devices' imessage are setup under your AppleID email address.
    First go to your kid Device's SETTINGS/MESSAGE/RECEIVE AT, Add another email address, type in email address of your kid(you will be asked to enter your Appleid password).  Once done, an email from Apple will be sent to this new email address to verify.  When your kid receive this email, click "Verify Now" link. The new email address now is ready for imessage.
    Now go back to the same Device SETTINGS/MESSAGE/RECEIVE AT, go into your original email(your AppleID email) and tap "remove this email".  This will prevent your own imessage to appear on this device.
    Do the same for all other devices for other kids.
    You don't need to change anything for your own device.
    That mean everyone will have an indepedent imessage based on their own email address.
    Hope this explains.

  • Need help with haivng more than one Ipod.....

    Ok, I have gone through these posts and am still having trouble. I already had my daughters shuffle on our computer from last year. My husband and I both got Ipods for Christmas this year. I registered mine under a different email and created a new account for mine so it would be different than my daughters. As soon as I plug mine into the computer, it loads ALL of her songs onto mine. I had to restore my Ipod to delete all the songs but if I plug it in again, it will start to load all of her songs onto mine again. What am I doing wrong? I purchased one song to test it and it adds it to her list. I have seen the posts on here about making the seperate playlists but I have no clue what I am doing. All I know is that as soon as I plug mine back in, I am getting all her songs. What steps do I need to take to fix this. Please help!! With 3 Ipods, What is the best way for me to set this up. Anyone that can help please feel free to also email me directly, I am deseperate. Thanks!
    HP   Windows XP  

    I have just posted a similiar question - my son got an iPod for Christmas and I can't make a seperate account either. Here is a link that someone sent me...maybe it will help you.
    The only thing that will help me is someone else coming over and doing this for me because I'm going out of my mind trying to fix it! Good luck.
    http://docs.info.apple.com/article.html?artnum=61148

  • Need help with multiple users of a catalog

    I run Lightroom in a small office and several of us have to have access to the image catalog, using Windows XP.  To accomplish this, the images were placed on a shared external drive, the catalog was created on a USB flash drive and Lightroom was loaded on multiple computers.  Everything has been fine and this strategy will work for us.  However, when I move the catalog to another computer (logged on as a different user) the catalog appears with all keywords and image adjustments, but my import presets are not available.  The preset files are located in the preset folder that accompanies the catalog, but they won't appear in the drop down box within Lightroom when attempting to import images.  My temporary solution is to recreate the import presets, which I have done for one other user so far, but I don't want to have to do that for each new user.  If one looks for the preset file, it is located in a folder called "user", but I have not figured out how to get Lightroom to recognize and use the preset files after logging on as a different user.  When I move the catalog (USB flash drive) back to my computer (original computer, original user), then everything is fine again and I can see and use al the presets. 
    Anyone use Lightroom accross users or machines?  Any way to get Lightroom to "see" and use import presets by multiple users?
    Thanks for any help!

    Not really sure if this will help or confuse things...
    If each user has a preset folder/directory, could you not create a symlink that points to oen on the USB device? And then keep all the presets there?
    Disclaimer:  i have not tried this, nor looked at it much, just a thought as i was reading your post.  If it doesn't apply, ignore me!
    Cheers!

  • Newbie needs help with passing variables or creating flash object based on parameters

    Hello Community,
    I'm an amateur developer of Ms Access databases. In one of my applications I want to visualize the options available when reaching a certain score.
    What I'd like to get from this trial period, is a flash animation of a dartboard. Depending on an array of variables that provides the fill color (or reference thereof) the layers of the flash object will be dynamicly created, altered, or switched. The dartboard itself remains "static". I'm hoping to use 9 colors.
    I can manipulate the array any way needed. I can provide XML coding to pass the array variables. I'm just too new and untrained to incorporate this in a Edge animation or Dreamweaver.
    There is no need for interaction, once the object is created (ie no user feedback).
    Can someone point me in the right direction?
    thanks in advance,
    Jay from Stockholm

    Hi,
    I see you're using System.Data.OracleClient (which has been deprecated by MS) rather than Oracle.DataAccess.Client, but this works for me with Oracle's ODP, maybe it will help.
    Cheers,
    Greg
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    public class dataadapterfill
        public static void Main()
            using(OracleConnection con = new OracleConnection("user id=scott;password=tiger;data source=orcl"))
                con.Open();
                using(OracleCommand cmd = new OracleCommand("select ename from emp where ename = :1", con))
                    cmd.Parameters.Add(new OracleParameter("myename", OracleDbType.Varchar2, 50)).Value = "KING";
                    OracleDataAdapter da = new OracleDataAdapter(cmd);
                    DataSet ds = new DataSet();
                    da.Fill(ds);
                    foreach (DataRow row in ds.Tables[0].Rows)
                        Console.WriteLine("ename: {0}", row["ename"]);
    }

Maybe you are looking for