Print the Source Code

Hello

I know that this question is not exactly a matter of coding actionscript 3.0, but its related to it and I don't see the point of post in the general forum of flash because a lot of people he never use actionscript, so placing it here, I thought that everyone does actionscript he would see.

In any case enough jibberish...

I need to print my source code for a presentation of the University that requires that I print hard copies of my source code of return as well as my portfolio.

I searched high and low and even flash tried the help docs, but I don't seem to be able to do.

I know that I could copy and paste the code into something like Scite or Notepad, but I that is losing the coloring of code I put or the text is very very ugly.

Anyone know how I can do this directly from flash?

Any help would be greatly appreciated.

Thanks and sorry if this message should not be put in this forum.

Lee

In your control panel actions, upper right, just below where you close there is a little "button" with 3 lines and a small arrow pointing down. Click on that and you will see the option print from the drop down.

Tags: Adobe Animate

Similar Questions

  • Firefox 41.0.2 long lines don't wrap when you view the source code

    When I try to view the source code of a web page, I have to use horizontal scrolling. How can I make the text as it does on my IE6?

    If necessary, you can change the setting in this way as well:

    (1) in a new tab, type or paste Subject: config in the address bar and press enter/return. Click on the button promising to be careful.

    (2) in the search above the list box, type or paste wrap it up and make a pause so that the list is filtered

    (3) double-click the preference view_source.wrap_long_lines to switch the value from false to true

  • I want to take the source code of each Web page as input and address on it, how can I do this?

    I'll develop an add-on for mozilla firefox, but for this I need the source code for each page. This is necessary to find the tag button inside the source code, to search for the tag href in the source code, etc... So please help me for this.

    The forum of the add-on is here:
    https://forums.addons.Mozilla.org/

  • A medium terminal to download the source code of a page

    Hello
    I want to find a way to download the source code of a page and the problem is, when I try to download html, which is generated by js.
    So I want to check (and change + firefox automatically the source code generated by a script, but don't know how.)
    Thank you.

    Just used phantomjs

  • Where is View Source? How can we consider the source code of a Web site?

    Where is View Source? How can we consider the source code of a Web site?

    View the Source used to access via a drop down menu, but is no longer. Why?

    I use Firefox 24.0.

    1.) get in Firefox.
    2.) open any page you want to view the source code.
    3.) after full opening of the page "right-click" then you can see the source view of the page, click on it to see the Source of the page.
    Thank you.

  • In IE10, I can see the source code - not in Firefox

    IE10, I click DISPLAY and then click the SOURCE and I see the source code.
    Firefox does not have the code source Shiwa.

    Hello

    You can use one of the following methods to view Source in Firefox:

    • Firefox > Web Developer > Page Source
    • Tools > Web Developer > Source of the Page (Ctrl + U)
    • Right-click on a web page to open the shortcut menu, and then select View Page Source
  • Link to the source code for the module does not

    I followed this link: https://addons.mozilla.org/en-US/firefox/addon/sabnzbdfox/?src=search (with download of the source) and got a '404 error' (https://addons.mozilla.org/en-US/firefox/files/browse/76042/)

    Find the source code in another place, and when I do, how I update the broken link?

    Hello

    You can also try after some time. To search for possible temporary network problems please see: http://status.mozilla.com/

    Also, if the problem persists, try the link in a new profile.

    Profiles Howto

  • where is the source code of the page

    Where: view the source code

    command U

  • What plugin miss me when I can't hear the music on a web site that uses bgsound (html) in the source code

    I have a website I go to who's using bgsound in the source code. I can't hear the music. However, it works with internet explore

    If a site uses BGSOUND so this will only work in Internet Explorer.

    BGSOUND is not compatible with other browsers like Firefox.

  • You try to view the source code

    Do not show my source code. I'm going to view-> page source isn't there? I get only the toolbars, side bar, zoom, style page, coding of characters, full screen. Is there another way to find the source code? Why not to come page source? Any help would be appreciated! Thnx!

    They moved and renamed some menu items.

    • Use Tools-> Web Developer-> ( OR use Ctrl + U keyboard)
  • How can I see the source code of a html page?

    In previous versions, it was possible to read the source code on an html page in the "View" menu It is no longer there. How to read code now?

    Use one of them:

    • Firefox > Web Developer > Page Source
    • Tools > Web Developer > Source of the Page (Ctrl + U)
    • Right-click on a web page to open the shortcut menu and select the Source of the Page
  • How to publish the source code

    How best to publish the source code?

    I need an alternative to fall back on.  How I would go to this topic if I had to use HTML.

    My chance to validation code has deteriorated over time. I did it via:

    I take the plain.

    Yesterday, when I tried to insert the Bash source code.  I had a lot of white lines.  I think that leading # confused CSA.

    
    #!/bin/bash 
    
       # so anyway, output from the echo statement is sent to the terminal.  The operands < and >
       # allows you to change where it is going.
      
    
    # default redirection  
    
    # 0 stdin  -- standard input
    
    # 1 stdout -- standard output, non-error output
    
    # 2 stderr  -- standard output for error messages.
    
    # had not used the exec statement before, the concept of the exec was
    
    # readily apparent to me.
    
       
    
    # of course, I ripped this off.  Turns out you want to preserve where input stream 0 is
    
    # coming from. The hack moves input stream 0 to input stream 6.  Pick any number
    
    # that is allowed.
    
       
    
    # save standard input in file descriptor 6 
    
    exec 6<&0 
    
       
    
    # now we say where we want input stream 0 to come from. 
    
    # bash has an unknown to me number of commands that read from input stream 0
    
    # via redirection we can change were stream 0 is coming from.
    
    # redirect standard input to be from the passed file 
    
    exec 0<${1} 
    
    count=0 
    
    while read lineIn  
    
    do { 
    
    # bash syntax is bizarre.   
    
    # The (( )) says it's a math expression 
    
    (( count++ )) 
    
    echo "${count}: ${lineIn}" 
    
    } 
    
    done 
    
    # put the input streams back to where they were before. 
    
    # Nice, but when the script quits they will all be put back to where they were.
    
    # Of course, I copied this stuff.  Syntax isn't the obvious.
    
    # close input.  May not need.  My innovation.  Seems nice.
    
    exec 0<&- 
    
    # restore file descriptor 0 should be standard in 
    
    exec 0<&6 
    
    # close file descriptor 6 for reuse. 
    
    exec 6<&- 
    
    echo 
    
    echo "Total lines were ${count}" 
    

    Do you get the extra lines before applying syntax highlighting? You can simply change the Courier New font.

    #! / bin/bash

    # Anyway, Exit statement echo is sent to the Terminal.  The operands< and="">

    # allows you to change its future.

    default redirection #.

    # 0, stdin - standard input

    # 1, stdout - output standard output without error

    # 2, stderr - standard output for error messages.

    # did not use the exec statement before, the concept of the exec has been

    # obvious to me.

    # good course, I snatched it.  Turns out you want to keep where the input stream 0 is

    # coming. The cut moving the input stream to the stream input 6 0.  Choose any number

    # who is allowed.

    # Save the standard entry in the file descriptor 6

    exec 6<>

    # now say us where we want to enter flow 0 to come from.

    bash # a a stranger to me the number of commands that read from the input stream 0

    # via redirection, we can change were stream 0 comes.

    # redirect the standard input from the file passed

    exec 0<>

    Count = 0

    while reading lineIn

    {}

    bash # is weird syntax.

    # (()) Is a mathematical expression

    ((count ++))

    echo "${number}: ${lineIn}.

    }

    fact

    # put the input stream to where they were before.

    # Nice, but when the script closes they will all put back to where they were.

    # Of course, I copied this kind of things.  The syntax is not obvious.

    # entry closes.  May not need.  My innovation.  Seems nice.

    exec 0<>

    Restore file descriptor # 0 should be standard in

    exec 0<>

    # close the file descriptor 6 for reuse.

    exec 6<>

    ECHO

    ECHO "the Total of the lines were ${number}.

    TT2

  • Search the source code for directories

    I'm developing a tool which is a directory of search optimizer. I was wondering where the source code of search directories? I want my face to look like window optimizer directory ongoing research, but then im adding features down. Thank you!

    Well Hello Meow,

    According to me, that the source for this Panel is part of one of the DLL Teststand calls directly, not in a file located in the directory of Teststand sequence.  Therefore, it will be not accessible to the public.

  • Why can't get us the source code Freelancer?

    I understand that this is probably the wrong way to go, but since I don't know any other way, so this seems the best solution currently.

    Freelancer is a 2003 game who appreciated the merits of a hosted Microsoft 'global server' for many years. This support has been removed for more than a year, have been longer. Since then, she has in fact the players, or the community of developers, which has instead created a way not no need for this global server, while keeping the same features in the game.

    Currently there is a community of developers very involved in the game, even with it's player-base down. However, while much can be done as it is, many changes to the game requires things such as to modify the main .exe of the game, goes against the General conditions and so possibly illegal. However, Microsoft has not taken action against such a thing. The only real penalty the Freelancer community met in his history of editing has been a debacle involving a modification on the Halo theme.

    So while Microsoft has essentially removed the bulk of its support for the game, he also did nothing to stop his change, something that many are grateful.

    Ultimately, however, there are many parts of the game that most wish could be changed, but can never be the nature 'hard-coded' of such a thing, where the key to change he is locked up somewhere that we either do not have the knowledge and the ability to get to.

    There has been a lot of requests for the Source Code of Freelancer, but none have materialized. I understand that this is due to a policy that it does not give the source of his games or that the questions should be directed to the developer instead maybe Microsoft. The latter is impossible because the developer was bought by Microsoft, and subsequently dissolved.

    Ultimately the question I would ask is:

    What are the reasons for not releasing the source code of Freelancer, when he happened to so many other games such as Freespace 2?

    Linkus, your name looks familiar discovery gaming community (http://www.discoverygc.com)

    ... I must comment on your closing above statement...:

    "The end is the question I want to ask: .

    What are the reasons for not releasing the source code of Freelancer, when he happened to so many other games such as Freespace 2? »

    This is incorrect, as Freespace 2 has * nothing * to do with Microsoft, it was developed by Volition, Inc. and published by Interplay.

    These companies are not divisions of Microsoft.

    A better final statement would be asked about their release the Source codes of the franchisees Mech Commander, MechWarrior and Mech assault.

    The Battletech Franchise was a substantially larger intellectual property; and yet, they released their grip on it.

    (Although FASA / Weisman have reformed as Smith and Tinker, teaming with Piranha to do a full restart of the MechWarrior series, apparently the first deadline this year.)

    Who would actually have weight in an argument as to why they won't leave a much smaller intellectual property to the modding community.

  • Where can I download the source code of the kernel for Iconia A1-830?

    Global - download.acer.com I can only find the source code of the kernel for A1 - 810 and 811 - A1, but for A1-830 the source code isn't there.

    We do not display the kernel for all products sources, however, I sent a message to our product group to see if we have the source files, we can publish. I recommend that you check in 5 to 7 days to see if we are able to view the files.

Maybe you are looking for

  • P70-A-11N satellite: cannot boot Linux from USB flash memory

    Hello so far, I found no way to start an on-line system to a bootable USB key with a linux operating system installed.It is for sure a bios issue and the choice of preferences. Maybe someone has a solution for this problem! It's a P70 - A - 11N Noteb

  • Portege 3480CT shows only 500 MHz instead of 600 MHz

    The manual mentions it as 600 Mhz machine, but mine never runs greater than 500 Mhz since I installed XP The 500 Mhz processor never leaves. I didn't know this until I installed a small utility to monitor the speed of the processor. The most I ever g

  • Lack of Application Acer

    Hello.I need Application Acer this lack in my Netbook... I have reinstall my Netbook because My Hard Drive was Broken.My father has bought the new Hard Drive with 500 GB... And I need Acer request that come with my Netbook.One, why Acer eRecovery Say

  • BlackBerry Leap Leap and bike 360 BB.

    Hello! Is it possible to sincronize a BB jump with a 360 motorcycle? I tried to install Android wear but I couldn't. Any other application?

  • Wait for the date / time of changes

    Is there a way to be notified of a change in the system clock without having to query now?  As a documented global event that we can count on platforms and OS versions? Having an application that triggers only once a day, exactly at midnight.  Tried