PLEASE help - Flash Catalyst Question

Does anyone know how to create a button in Flash Catalyst that will download a pdf to the users computer.
I have compleated my Portfolio website in Catalyst and this is the only thing stopping me from publishing.
Please help

To create a link to a PDF, just use the Go To Url interaction from the interactions panel. It does not allow for relative links (those like ../pdf/portfoilio.pdf), so you will need to full url path. You might also want the link to open in a new window.
Chris

Similar Messages

  • Please Help, Flash CS.6 Won't startup

    I Downloaded and Installed Flash and i Tried to run it but it keeps giving me this message
    " the procedure entry point ?_Xruntime_error@std@@YAXPBD@Z could not be located in the dynamic link linrary C;programFiles/Adobe/Adobe Flash CS6/boost_filesystem.dll"
    I tried to fix it but i couldn't get anywhere. Please help me. I need it for work in 3 days. please help

    Please see the notice at http://forums.adobe.com/community/robohelp/robohelp_flash
    Right question, wrong place.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • PLEASE HELP flashing light and playbook doesn't switch on!!

    Hello,
    I have my tablet won't switch on and when I try to turn on, the red light and green light flashing 5 times. And then nothing. Unable to turn on.
    I tried a reboot by pressing power + volume - and nothing!
    I tried to update with BlackBerry Desktop Manager (latest version) and when the update reaches the end error message comes to me and it there was a problem: "A connection to the tablet Could not be ESTABLISHED. Please connect your tablet and try again. "
    I also tried to charge it with a 2000mA charger for several hours and still nothing.
    I no longer guarantee
    Please help me, I do not know what to do.
    thank you
    sorry for my english

    Same thing happened to me yesterday. After the error message, I plugged in the charger. It took quite a while but the tablet started charging. It reinstalled the update when it reached the 20% level. Another update error came up to change my setting. I checked my setting but didn't change anything and just reinstall update again which this time was a success. Hope this would help.

  • Please help me jmf question

    Hi i want to create custom data source as i have read in different post and also on sun site
    I tried to create one one for my self,
    where am getting stream from tcp port.
    before that i test the data by using socket programming, i saved the input stream into file and played and its working fine and then i transfer that file using avtransmiter2.java and it work fine again its mean it confirm that the data i am getting from skype is working fine . now my question is how to get that input stream and instead of saving to the file i can play it using jmf player or send it on rtp session. i read different post how to create custom data source from inputstreams but have not work for me ... i modified a user code posted http://archives.java.sun.com/cgi-bin/wa?A2=ind0106&L=jmf-interest&D=0&P=25865 in that post some body recommanded to implement seekable so i implemented that one als in that code..... below is the code
    the error is
    LoadInputStream.loadBytes() - realizing player
    Exception in thread "JMF thread: com.sun.media.PlaybackEngine@8ed465[ com.sun.media.PlaybackEngine@8ed465 ] ( configureThread)" java.lang.NullPointerException
    at com.skype.sample.InputSourceStream.read(InputSourceStream.java:89)
    at com.sun.media.parser.BasicPullParser.readBytes(BasicPullParser.java:142)
    at com.sun.media.parser.BasicPullParser.readBytes(BasicPullParser.java:114)
    at com.sun.media.parser.BasicPullParser.readInt(BasicPullParser.java:191)
    at com.sun.media.parser.audio.AuParser.readHeader(AuParser.java:109)
    at com.sun.media.parser.audio.AuParser.getTracks(AuParser.java:76)
    at com.sun.media.BasicSourceModule.doRealize(BasicSourceModule.java:180)
    at com.sun.media.PlaybackEngine.doConfigure1(PlaybackEngine.java:229)
    at com.sun.media.PlaybackEngine.doConfigure(PlaybackEngine.java:193)
    at com.sun.media.ConfigureWorkThread.process(BasicController.java:1370)
    at com.sun.media.StateTransitionWorkThread.run(BasicController.java:1339)
    i need urgent help to this matter so please help me in that i would be very thankfulll ......
    below is the code
    skype use the standard audio format
    Audio format
    File: WAV PCM
    Sockets: raw PCM samples
    16 KHz mono, 16 bit
    Note
    import javax.media.*;
    import java.io.*;
    import java.net.ServerSocket;
    import java.net.Socket;
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class LoadInputStream extends JFrame implements ControllerListener {
    private Player player;
    /** Creates new LoadInputStream */
    public LoadInputStream() {
    try{
    // declaration section:
    // declare a server socket and a client socket for the server
    // declare an input and an output stream
    ServerSocket SkypeServer = null;
    DataInputStream is;
    Socket clientSocket = null;
    try {
    SkypeServer = new ServerSocket(4447);
    catch (IOException e) {
    System.out.println(e);
    // Open input stream
    clientSocket = SkypeServer.accept();
    is = new DataInputStream(clientSocket.getInputStream());
    loadBytes(is);
    setBounds(100, 100, 300, 300);
    setVisible(true);
    catch(Exception e){
    System.out.println(e);
    /* Loads the given byte [] into the MediaPlayer and starts playing it immediately. */
    public void loadBytes(InputStream is){
    DataSource ds=new DataSource(is);
    System.out.println("LoadInputStream.loadBytes() - Creating DataSource (InputStream)");
    System.out.println("LoadInputStream.loadBytes() - Creating Player");
    try {
    player = Manager.createPlayer(ds);
    } catch(NoPlayerException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch(IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    System.out.println("LoadInputStream.loadBytes() - Adding Controller Listener");
    player.addControllerListener(this);
    System.out.println("LoadInputStream.loadBytes() - realizing player");
    player.realize();
    public static void main(String[] args){
    new LoadInputStream();
    public void controllerUpdate(javax.media.ControllerEvent e) {
    if(e instanceof RealizeCompleteEvent){
    System.out.println("Adding visual component");
    getContentPane().add(player.getVisualComponent());
    player.start();
    =============================Datasource==========================================================
    import java.io.*;
    import java.nio.ByteBuffer;
    import javax.media.*;
    import javax.media.protocol.*;
    public class DataSource extends PullDataSource {
    private InputStream is;
    private byte [] bytes;
    /** Creates new MediaViewerDataSource */
    public DataSource(InputStream is) {
    super();
    this.is = is;
    try{
    int byteCount = is.available();
    bytes = new byte [byteCount];
    is.read(bytes);
    catch (Exception e){
    System.out.println(e);
    public PullSourceStream [] getStreams() {
    PullSourceStream [] streams = new PullSourceStream [1];
    InputSourceStream iss = new InputSourceStream(new ByteArrayInputStream(bytes), new FileTypeDescriptor(ContentDescriptor.RAW_RTP));
    streams[0] = iss;
    return streams;
    public void connect() {}
    public void disconnect() {}
    public String getContentType() {
    return new String("audio.x-wav");
    public MediaLocator getLocator() {
    return null;
    public void initCheck() {}
    public void setLocator(MediaLocator source) {}
    public void start() {}
    public void stop() {}
    public Object getControl(String s){
    return null;
    public Object [] getControls(){
    return null;
    public Time getDuration(){
    return null;
    =================================InputStream======================================================
    import java.io.InputStream;
    import java.io.IOException;
    import java.nio.ByteBuffer;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.PullSourceStream;
    import javax.media.protocol.Seekable;
    import javax.media.protocol.SourceStream;
    * Build a source stream out of an input stream.
    * @see DataSource
    * @see SourceStream
    * @see java.io.InputStream
    * @version %I%, %E%.
    public
    class InputSourceStream implements PullSourceStream, Seekable {
    protected InputStream stream;
    protected boolean eosReached;
    ContentDescriptor contentType;
    protected ByteBuffer inputBuffer;
    * Construct an <CODE>InputSourceStream</CODE> from an input stream.
    * @param s The input stream to build the source stream from.
    * @param type The content-type of the source stream.
    public InputSourceStream(InputStream s, ContentDescriptor type) {
    stream = s;
    eosReached = false;
    contentType = type;
    * Get the content type for this stream.
    * @return content descriptor for the stream.
    public ContentDescriptor getContentDescriptor() {
    return contentType;
    * Obtain the content length
    * @return content length for this stream.
    public long getContentLength() {
    return SourceStream.LENGTH_UNKNOWN;
    * Query if the next read will block.
    * @return true if a read will block.
    public boolean willReadBlock() {
    if( eosReached == true) {
    return true;
    } else {
    try {
    return stream.available() == 0;
    } catch (IOException e) {
    return true;
    * Read a buffer of data.
    * @param buffer The buffer to read data into.
    * @param offset The offset into the buffer for reading.
    * @param length The number of bytes to read.
    * @return The number of bytes read or -1 indicating end-of-stream.
    public int read(byte[] buffer, int offset, int length) throws IOException {
    int bytesRead = stream.read(buffer, offset, length);
    if( bytesRead == -1) {
    eosReached = true;
    inputBuffer.get(buffer,offset,length);
    return bytesRead;
    * Turn the stream off.
    * @exception IOException Thrown if there is a problem closing the stream.
    public void close() throws IOException {
    stream.close();
    * Return if the end of stream has been reached.
    * @return true if the end of the stream has been reached.
    // $jdr: This is a bug. Need to figure out
    // the "correct" way to determine, before a read
    // is done, if we're at EOS.
    public boolean endOfStream() {
    return eosReached;
    * Returns an zero length array because no controls
    * are supported.
    * @return a zero length <code>Object</code> array.
    public Object[] getControls() {
    return new Object[0];
    * Returns <code>null</code> because no controls are implemented.
    * @return <code>null</code>.
    public Object getControl(String controlName) {
    return null;
    public long seek(long where) {
    try {
    inputBuffer.position((int)(where));
    return where;
    catch (IllegalArgumentException E) {
    return this.tell(); // staying at the current position
    public long tell() {
    return inputBuffer.position();
    public void SeekableStream(ByteBuffer byteBuffer) {
    inputBuffer = byteBuffer;
    this.seek((long)(0)); // set the ByteBuffer to to beginning
    public boolean isRandomAccess() {
    // TODO Auto-generated method stub
    return false;
    }

    Use a BufferedImage where you draw the other images.
    You have to know the size.
    For example if the size is (50*50) for each image :
    int width =50;
    int height = 50;
    BufferedImage bufIm = new BufferedImage(width*3,height*3,BufferedImage.TYPE_INT_ARGB);
    Graphics gr = bufIm.createGraphics();
    int k, j;
    Toolkit tk = Toolkit.getDefaultToolkit();
    Image imTemp;
    for (k = 0; k<3; k++) {
        for (j = 0; j<3; j++) {
            imTemp = tk.getImage(imageNames[k][j]);
            gr.drawImage(imTemp,width*k,height*j, this); // replace this by the Image observer you want (this if you are in a panel for example)
    }After that bufIm contains the images as you want and you can paint it on a Graphics.
    Denis

  • Please help me about question security because in my apple id no have for restart or chenge my answer

    please help me about answer security question in my apple id because im forgot for my answer, in my apple id no have for change answer, tell me for this please because i love my iphone.
    <Email Edited by Host>

    You need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (110899)

  • Please help (flash intro cs4)!!!

    sorry if I posted in the wrong section but I need help.
    I have a flash intro and when ever I preview it,the intro background turns to black instead of staying the way it should be.Can somebody please help me out here,I need this flash intro for a website.Please explain this to me in simple terms because im pretty NEW to adobe.
    Thanks
    Kevin
    Note I've tried everything to make the flash background stay the way it was but nothing I do works.

    the color is black
    watch this intro
    http://images.templatemonster.com/screenshots/21000/21016.html
    i have this intro. I open it in flash and play it. As soon as the Offbeat idea text goes away the background fades to black instead of staying consistent.

  • Urgent!! Please Help! Security Question!

    I have forgotten the answers to my security questions (all three). As i made my Apple ID over 3 years ago, it did not ask me for a recovery e-mail adress. Is there any way i can reset the answers without the e-mail? Please Help!!

    Welcome to the Apple Community.
    ou should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • Please Help, Flash Player for Mac

    I am running Mac OS X 10.7.5.  Last night Facebook told me I MUST update to the newest version of Flash Player in order to upload multiple pics.  I kept getting plug-in failure messages and then the message saying I need to update my version of Flash.
    Problem is I have updated my version of Flash and the plug in still doesn't work.  Please help, my business relies on my being able to upload multiple photos daily to social media.  What is going on?  I have read the forums, the work arounds posted on 4/16.  Uninstalled, re-installed, etc.  I am still getting flash plug in failures even on Adobe's site.  What do I do?

    No.
    I am in the same boat. I cannot watch flash videos on the BBC website or on BBC iPlayer, although all other flash videos (YouTube for example) are fine.
    For reasons that passeth all understanding, they work with the PPC version of Firefox, called TenFourFoxG5.app, once you have anabled plug-ins, as it does not natively support Flash.
    You can download TenFourFoxG5 from here:
    http://www.floodgap.com/software/tenfourfox/
    Now for the intersting bit: TenFourFox, like Firefox, does not support most plug-ins. Unless you are prone to headaches (in which case don't) you can read about that here:
    http://code.google.com/p/tenfourfox/wiki/PluginsNoLongerSupported
    But there is a workaround!
    Open TenFourFox and type in the address bar: about:config (no spaces) and click return. This gives you a warning that it might harm the application. Ignore that and click on 'I'll be careful, I promise' and you get the config file that you can edit - with great care.
    Look/search (scroll down) for: tenfourfox.plugins.enabled
    Set it to true. (Double click it to toggle it)
    Now close TenFourFox, open it again, and Flash will now work, as it now uses the plug-ins that Safari has stored.
    I am using Flash 10.1.102.64 in TenFourFox and it works just fine.

  • Please help--flash 9 wont download

    I am slowly realizing that there are a lot of things that
    require Flash Player 9. I have tried at least 15 times to install
    this, but everytime it pops up the security box, i click install,
    and the 'F' comes up with the spiral underneath. It goes away, the
    security box reappears, i click install, and the little boz where
    the 'F' was is empty, then it goes away, turning to quotation
    marks. Why wont it work? i am on my acocunt with administrative
    rights....please help! Thank you

    first, if your not using firefox, got to mozilla.com and get
    firefox. it the best browser there is and the add-ons that you can
    get to enhance it are the bomb. Next time you come across something
    that requires flash it will automaticlly download it.

  • PLEASE HELP-Flash Version 9.0

    Everything was working fine this morning. I went to the
    Playhouse disney.com website for my sons. It said I needed to
    update my flash player. I downloaded 9.0 for MAC powerPC (I have
    version 10.5). The download did not finish, stating I needed a
    different plugin. It redirected me back to the same page for
    downloading 9.0. I did the uninstall flash player. It said it
    worked. I tried to install 9.0 again. Now, it said that I don't
    have permission to access the installer. What do I do? If anyone
    could please help me, I would really appreciate it!!!
    This is the error message I get- 1008:5-5000 Denied Access
    Error

    Hi oneksrose,
    Send me a Private message with your fullname, email and phone
    number and I'll open a case for you and get this resolved.
    "Send Private Message" is on the left panel under my user
    name. I look forward to hearing from you.
    Important Note: These online forums are for user-to-user
    discussions of Adobe products, and are not an official customer
    support channel for Adobe. If you require direct assistance, or
    prefer to contact Adobe support staff directly, please contact
    Adobe support.

  • Please Help - flash Intro how to link to nex page

    HI there
    The end of the flash intro, i have one link on the bottom (
    skip intro)
    I want th end of flash intro, it will automatic link to next
    page ( mai.htm) without click any link or.....
    Please help
    Thank you
    Grace

    Hi
    Add this code to the last frame of your intro:
    getURL ("yourlink.html");

  • Flash Catalyst question

    I have imported my design from Fireworks into Flash Catalyst, here is my question.
    I have two tabs which switches content on my page. Right now I have one state (page)
    for tab nr 1 and another state for tab nr 2. But when I have tab 1 active and click a button,
    then I want to make changes of the content that is visible when tab 2 is active. Is that
    possible and if so, how can I achieve this?

    Yes this is possible. There might a few solutions to it. One idea (untested), would be to wrap your tab 2 content in a custom component. then share this new component across both tab states. But, in state 1, set the visible of the content component to false. That should allow you to target elements within the content component. Then when you switch to state 2, make the visible of the content component to true.
    Chris

  • HELP PLEASE HELP! urgent question with an easy answer!!!!

    Hello;
    I designed a JFrame game, that uses gif files as ImageIcons. The game works perfectly when I run it from console with the java.exe command.
    However; now I want to create a wraparound and run the JFrame in the Internet Explorer from an applet. So I created a new file that extends JApplet; this new file creates a new object of the JFrame-game's class and show()'s it.
    And I created an HTM file that runs the JApplet class. However, the internet explorer cannot open the applet because it has trouble loading the pictures (gif files). How can I load the pictures from my applet for my frame???
    I dont want to change the Java security file. I just want to make the images accessible by my applet. I cannot use commands like setImage in my applet because my JFrame sets the Images.
    (I repeat)My JApplet only invokes an object of my JFrame class and shows it.
    PLEASE HELP PLEASE PLEASE..
    Thanks..

    OK; let me tell you the whole thing. My pictures are in the same folder for sure.
    My JFrame reads pictures and assigns JButtons pictures. when I run the frame there are 16 buttons with the same picture, and when I click the buttons there is a listener in the JFrame that changes the pictures. Simply put, the JFrame has no trouble finding and loading the pictures.
    Then I created a JApplet as follows:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MemoryApplet extends JApplet
    public void init ()
         GameFrame ce = new GameFrame ();
         ce.show ();
    GameFrame is the name of the JFrame class. Then when I try to open the applet using IE, it gives the following error:
    Exception: java.security.AccessControlException: (javax.io.FilePermission back.gif read)
    back.gif is one of the gif files that are used in GameFrame

  • Please Help !  Simple question !

    Hi all,
    Please anybody tell me why the following line
    <input type="text" name="price" value="<%=myBean.getPrice()==0.0?"":myBean.getPrice()%>">gives me the error:
    incompatible types for ?: neither is a subtype of the other
    second operand: java.lang.String
    third operand : float
    out.print(myBean.getPrice()==0.0?"":myBean.getPrice());
    ^
    1 error
    I am doing this in JSP.
    Please help and reply soon.
    Please reply soon.................
    Waiting for your reply !
    Thanks
    amitindia

    Like annie said, change the method to return a String (doubt if you want this)
    or
    <%=myBean.getPrice()==0.0?"":""+myBean.getPrice()%>

  • Pretty please help, Quick newb question...

    I have a dell axim x50. I have the jad and jar files. How can I make my application work on the PDA??
    I've simulated with toolkit, and such.
    Please Please help ><

    The act of getting the jar from a pc to the device is called "provisioning"
    Some devices let you do this over bluetooth or IR and many others only allow it over http.
    I used to use some free web midlet hosting sites but the ones i used have been shut down now. (do a search on the net for "Free Midlet Hosting")
    These days i set up a web server on my development machine and then just use the phones wap browser to download the program.

Maybe you are looking for

  • How can I check manufacturers in PO?

    we have many PO in which the final suppliers, passing via vendor, traders, manufacturer and manufacturer palnts which are the real suppliers, can be more than one. Maning,  there is a manufacturer and it has many plants, part of which are allowed and

  • PR, PO, GR, Invoice, Services

    Hi, what are all the parameters to be considered for the implementation of the PR, PO,Invoices, GR and Services to be considered?

  • Sync scenario: rfc-to-ftp with ccbpm

    hi experts, my scenario is as follows: there is a rfc call from sap, this message is given to the XI.. the next step should be that xi selects data from the ftp server, send this data back to xi (mapped) and finally give this mapped data back to the

  • +filter +ID +CAN +XNET

    In the XNET Bus Monitor there is an option to "Filter-ID's". How is it working in the code? Is there any setting for the session to get only specific frames, or the bus monitor gets all the frames and ignores those which are not in the list? A second

  • Spectrasonics Trilian won't start/work after upgrading to OSX Mavericks using Logic Pro 9.1.8

    Anyone has a clue why this happens or how to fix it? Is it just that Spectrasonics hasn't released a software update for Mavericks yet or could it be something else?