Novice to Flash coding and editing

I have a pre-made template that was built by an earlier version of Flash.  I'm using Flash CS5 Pro, and when I preview the site, the page buttons across the top all say "Home", there are symbol layers for the buttons that are titled; b1, b2, b3, b4, b5, and if I turn them off, the buttons disappear..  I went through the layers and found 2 symbol layers; "b1", and "t".  If I edit them they change the font, example "Home", every button label on the top changes.  The buttons have been created, and I'm sure it is something very simple.  When I saved the file from the template the message reads, "this file will be converted from a Flash CS4 or older format to Flash CS5.  You will not be able to open it in a previous version of Flash".  The MP3 music keeps reading an error as well.  All I would like to do is change my button titles and insert the music from the pre-made site.  Is there a method to this madness???

If the buttons all say the same thing when you see the file in editing mode, it is most likely a case where the labels are assigned using actionscript. If this is a well-made template, somehwere the designer should have instructions to help you in the editing process.  If not, then you need to look thru whatever files came with the template to see where the code/data is hiding.  If the file came with xml or txt files, there is a chance you will find the labels defined in there.  Otherwise the code may be in the fla file somehwere or in a separate .as file.

Similar Messages

  • Can I put an imovie on a flash drive, and edit it on a different mac?

    So i am doing a video project for school. We used imovie on a mac desktop to make and edit most of the video. unfortunatly, we are still not done and the girl who has the imac, is leaving for out of town. we were wondering if we put the imovie on a flash drive, can we then upload it onto a different mac (in our case a macbook laptop) and then continue editing? the flash drive is a brand new 8 GB flash drive so it has pleanty of room for our 5 minute video. We also do not have time to start over, with the deadline being very soon.
    So will the flash drive trasportation work?
    Is there even a way to transport the video over to a new computer?
    Thank you everyone who will help me out!

    Hi
    My thoughts
    A. Free Space on Start-Up (Boot, Macintosh HD) Hard Disk - must be 25Gb or more to let iDVD run OK
    B. If DVD-burner doesn't work - then Save as a DiskImage - in DVD - to e.g. Desktop so it's easy to find
    C. Format an USB-Memory stick (WILL ERASE IT to 100%) - AS - Mac OS Extended (hfs) ! ! !
    ( UNIX / DOS / FAT32 / Mac OS Exchange - WILL NOT WORK FOR THIS ! )
    D, This .img file You just created can now be moved over to another Mac. Save it onto this Hard Disk
    E. Burn the DVD - by using Disk Util tool - and burn the .img file onto a DVD
    F. SET DOWN BURN SPEED to x2 or x4 MAX !
    G. I only use Verbatim SL-DVD-R disks
    Good Luck
    Yours Bengt W

  • Can I save a project on a flash drive with the videos that are in the project and edit on any computer with premiere pro?

    I am trying to edit a home and school and need to edit all the time. Can i save my project file on my flash drive with all the videos and use the flash drive for editing on any computer?

    IF all computers are on the exact same build of PrPro. Understand of course that if everything of the project is on one flashdrive, performance in playback & etc. with much in the way of effects or tons of cuts is going to be ... s l o w . But perhaps doable on say a school project, which probably doesn't have the total assets of say a season-length tv sitcom.
    Neil

  • Newbie question about C coding and SDK for iPhone app

    Hello,
    I am interested in trying to create an app. However, I have NO experience writing code I already have downloaded and installed the latest version of the SDK.
    I know I have to learn: C, Objective C, and Cocoa.
    I just picked up "C for Dummies" as a starting point. I figured the K&R might be a bit overwhelming to start with. Thing is, "C for Dummies" suggests doing some exercises in Text Edit and then using GCC to compile and test. But, then again, it has a copyright of 2004--long before Snow Leopard.
    My question is, do I really need to do the exercises in Text Edit? Can I just use Xcode for entering the code and testing it? And, any suggestions for learning C and Xcode tutorials are greatly appreciated.
    Thanks!!

    But, I really want to learn coding and not just take the easy route by using Xcode.
    The simplification of using Xcode may have been a bit exaggerated throughout this thread. You will still learn how to program full-on by using Xcode -- it's not like you're taking a shortcut or anything. Well, technically speaking, you are, but Xcode is the expected way to develop on a Mac nowadays -- it's how Apple expects you to develop and how most people are doing so. Should you choose, you can taking a deeper dive into the inner workings of compiling and whatnot by using a text editor and the Terminal, but keep in mind that the extra complexities here could complicate the more important overall goal of learning the basics of how to program. There is absolutely nothing wrong with simply using Xcode for the novice part of your programming days. In fact, it's probably the path I would recommend. Some here might suggest that it is beneficial to learn the intricacies of compiling through the Terminal and whatnot early on, and they are right -- it is beneficial, but the benefits of taking a route (at least for the time being) that allows you to focus on the more pressing issues of learning how to program without having to delve too deeply can be just as beneficial. After all, it's not like you can't go back and learn how to compile via Terminal later on -- that's what I've done (or, rather, am in the process of doing).
    I always thought Terminal was something not to mess with.
    Not so much. Like most things in programming (or life, for that matter), the Terminal is something not to mess with +if you don't know what you're doing+. Basically, it breaks down like this. The GUI that Apple has created for you in Mac OS X (by GUI I mean "graphical user interface" -- the icons and windows and buttons and so forth that you use to perform tasks on your Mac -- in other words, everything outside the Terminal) is geared toward the common user who does not need to access advance aspects of the system's functionality. Consequently, it makes common tasks much simpler to perform, but in the process it hides some of the deeper levels of the system's functionality from the user. This is a good thing, since most people wouldn't know what to do with this functionality and would create problems for themselves if they did have easy access to it. However, for some users who know more about the inner workings of the operating system, there needs to be a way for them to access this functionality, so that they can do certain things (like accessing certain files and performing certain tasks) that they would not be able to do using the Mac OS X GUI -- that's what the Terminal is for. It allows the user to operate the system on a lower level. In other words, it allows you to get closer to the operating system. This is good in a way, because it allows you to perform tasks that you wouldn't otherwise be able to perform by giving you more control over the operating system, but it is also bad in a way, because it can allow you to mess up some of the deeper aspects of your system if you don't know what you are doing. Most people leave the Terminal alone for this reason, and because they have no need of it, but if you want to be a good developer, you're going to have to work with it sooner or later.
    Now, with all that being said, it's not that easy to mess things up using the Terminal. It's not like your system's going to crash if you misspell a command. All in all, the Terminal is very forgiving, but it will do what you tell it to do, even if you tell it to kill itself, and it is for that reason that you need to know what you are telling it before you try to tell it something. If you understand what you are telling the system, than operating on a lower level and being closer to the operating system is completely safe.
    The Mac OS X operating system is based around Unix, so when you are communicating more directly with the operating system by using the Terminal, you are interacting with its Unix core. For this reason, using the Terminal goes hand in hand with understanding Unix. So, if you're going to want to use the Terminal, then I recommend you get a good book on Unix to teach you the basics of Unix commands and shell programming and whatnot. Any book on Unix will do, since more or less everything you learn will be applicable to the Mac OS X's Terminal, but there are a few that are specifically directed to Mac OS X users, and that always makes things easier. Most of these books aren't updated to cover past Tiger, but this really doesn't matter (someone correct me if I'm wrong). A few examples are O'Reilly's "Learning Unix for Mac OS X Tiger" by Dave Taylor or Peachpit Press's "Unix for Mac OS X Tiger" by Matisse Enzer. Also, the book "Unix Programming Environment" by Kernighan and Pike is an excellent book on Unix, although fairly outdated, so I would highly recommend it, although I would recommend it as a supplement to another, more recent, Mac-based Unix book and not as your primary source for learning Unix. The skills you will acquire from these books will help you later if not sooner, so I recommend giving one of them a read at some point, whether you are planning on compiling using the Terminal right now or not.
    Anyways, I hope this helped to clear some of this up for you, and please let us know if you have any further questions.

  • Flash text and flash buttons in DW CS4

    Hi,
    I have installed DW CS4 on my pc with Vista Home Premium 64
    Bit...I have edit my website homepage and I have discovered that I
    can't edit all flash text and buttons that I have created with DW
    CS3! I have see that the adobe has removed from CS4 version this
    option! So, now how I can resolve this problem??
    I have try to install also the CS3 version but I don't
    understand because I can't no more activated it from internet or
    phone option!
    I'm very angry for this, now I have to recreate from the
    begin all flash text and buttons of my website with other software?
    perhaps to buy also the Flash CS4 version for the solution? is this
    the new idea of adobe with their new CS4 version?

    > I'm very angry for this, now I have to recreate from the
    begin all flash
    > text
    > and buttons of my website with other software? perhaps
    to buy also the
    > Flash
    > CS4 version for the solution? is this the new idea of
    adobe with their new
    > CS4
    > version?
    It was a poor choice on Adobe's part to ever include such an
    option, and on
    your part for using it. Think about it -
    1. Some people don't have Flash installed - what do they do?
    Especially
    consider those people who are browsing from a corporate
    internet where Flash
    is not allowed by the IT staff.
    2. Search engines may not parse Flash links - your site will
    not be
    spidered unless you have redundant HTML links
    3. Screen assistive devices don't parse Flash links - what
    will those users
    do?
    4. DW cannot maintain links within a Flash movie, so if you
    move or rename
    a linked file, your navigation will break - what will you do?
    You will have
    to remake those buttons.
    It's almost always a very bad idea for these reasons.
    The solution is to make graphics to replace the Flash
    elements, or just use
    CSS styled text.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "s76x" <[email protected]> wrote in message
    news:[email protected]...
    > Hi,
    > I have installed DW CS4 on my pc with Vista Home Premium
    64 Bit...I have
    > edit
    > my website homepage and I have discovered that I can't
    edit all flash text
    > and
    > buttons that I have created with DW CS3! I have see that
    the adobe has
    > removed
    > from CS4 version this option! So, now how I can resolve
    this problem??
    > I have try to install also the CS3 version but I don't
    understand because
    > I
    > can't no more activated it from internet or phone
    option!
    >
    > I'm very angry for this, now I have to recreate from the
    begin all flash
    > text
    > and buttons of my website with other software? perhaps
    to buy also the
    > Flash
    > CS4 version for the solution? is this the new idea of
    adobe with their new
    > CS4
    > version?
    >

  • Downloading and editing an existing WordPress site in Dreamweaver CS5.

    Hello! New to the forums, here.
    I'll try to be brief. I've got a WordPress site in-place at metalmeter.com that is hosted through HostGator. Basically, what I'm looking to do is get the site from the remote server and edit it in Dreamweaver CS5, previewing all changes on a local testing server before putting the updated contents back on the remote server.
    Now, let me be clear: I've tried plenty of the tutorials. I've watched hours of videos. I still can't get it configured properly. I've got the FTP connection to the remote server running smoothly. I've got XAMPP installed. I'm having difficulties (and I apologize for being vague), and I just don't know where the problem is located. In my htdocs folder for XAMPP, I've got two subfolders 'metalmeter' for the remote server's downloaded contents, and 'wordpress' for the wordpress installation that every page seems to be pointing me toward. What confuses me is that when I try and open the uppermost index.php file on the remote server, the dynamically discovered content is not being displayed in the live view with my local testing server. I want to be viewing my existing WordPress site in its entirety exactly as I see it online while I'm editing it, and then pushing back updated files to the /public_html/ root directory of the remote server so that I can edit the site from my local client. I'm extremely new to Dreamweaver, so any help you could offer would be greatly appreciated.
    If you know how to do exactly what I'm trying to do and have been successfully viewing and editing your existing WordPress site in Dreamweaver for upload, please take some time to explain the set-up. I'd be forever in your debt!

    Nancy O. wrote:
    I've been following this discussion for a while now and I don't understand why you hope to edit articles from DW.  That's what the WP Admin panel is specifically designed for.  Besides, you won't find your articles in any of the site files because they don't exist there.
    I agree I don't see any reason to want to edit a Wordpress site in Dreamweaver. If you are using Wordpress then you may as well put Dreamweaver in the bin. Although people do actually want to edit and manipulate the design in Dreamweaver (including myself) and from what I've read its possible but I've never found a source which explains fully how to achieve this and those that I have it seems too much effort to even bother about.
    I guess the Dreamweaver environment feels more like home and is more user friendly.
    To put it another way, a typical WordPress installation contains around 800 files in some 80 folders.  Those files don't contain any content, just a whole lot of PHP code.   In fact, the only page most people ever see on your site is the index.php page which is dynamically created over & over by the server with content from the MySql and various include files.
    For sure and that's why people who use Dreamweaver and feel the need to manipulate a Wordpress site in Dreamweaver because Wordpress is 'in vogue' get lost. Wordpress just containes a lot of pages with nothing to see apart from some php, many of who will not understand one jot.
    Unless you're a coding guru, you should definitely NOT touch any of the core WP files as this could cripple your site.  If you want to customize your Theme, look at the CSS and include files in your Themes folder.   See Anatomy of a WordPress Theme:http://yoast.com/wordpress-theme-anatomy/
    lol your not wrong there!
    For a quick tip on Theming, open your remote site in Firefox equipped with the 'Web Developer Toolbar'.  Edit CSS on screen.  Save changes to your local site and upload it to the remote server.  No testing server required. 
    Wordpress is Wordpress and Dreamweaver is Dreameaver. As far as I can make out the two don't mix.
    Ideally you would just choose a Wordpress theme which most relates to the nice site you have designed in Fireworks of which you won't find any however goodthe themes are. Then manipulate the themes css that's if you can understand it. Even for a seasoned css expert its heavy going because everyone produces css differently to achieve the same results.
    Leave Wordpress well anlone unles you're going to use it out of the box so to speak or as a web-developer don't mind a bit of reverse engineering.

  • How to import and edit a 3D video made with Sony HDR-TD10E camcorder, with .MVC file?

    How to import and edit a 3D video made with Sony HDR-TD10E camcorder, with .MVC file?
    I have PremierePro-CS5 installed.
    This stereo 3D camcorder (Sony HDR-TD10E), output an .MVC (MultiViewCoding) file, coded in H.264 format.
    This format is already compatible with Bluray3D stereoscopic format.
    1) But, how to edit the .MVC in Premiere?
    2) What plugin should I use (if exists) for PremiereProCS5?
    3) Cineform Neo3D, can manage the .MVC format? Can convert it to Cineform format file, for import it into Premiere?
    4) What software should I use to convert an .MVC video to an AVCHD H.264 file, and import it into PremierePro CS5 or CS5.5 for editing?
    Thanks!
    Horsepower0171.

    Sorry, I am Italian, it is very difficult for me to understand what he says!
    I can just read the english text, or follow the actions of a videotutorial!
    Thus my question is the same:
    -What software can do that?
    -Sony Vegas 10 do the Bluray3D authoring?
    -For MVC editing, should I wait for Adobe CS6? Or is it planned an update for CS5.5?

  • Adobe Flash Player and Shockwave crashing has disabled my computer

    I have downloaded a second flash player and it is still the same. Firefox has been crashing daily for a few weeks. I noticed that your adblocker plus was updated 6/4. Since then I have almost no use of firefox, because the Adobe flash player 13.0.r0 and Shockwave crash notices are constantly popping up. Could that update have something to do with why the flash players are not working? Below are an example of the crash details.
    Thanks for the help. I prefer your browser, but this has made it non-functioning.
    In trying to fix it, a window came up that asked would I like to change it back to a previous working image, which was Windows XP. Although this computer is Windows 7, I clicked the box yes, and said I wanted it to work like Windows XP. I see in your Operating System below, that it reads Windows Xp, but this computer is actually Windows 7. I can't find that menu to change unclick and change it back, so that it is working as Windows 7.
    Problem Event Name: APPCRASH
    Application Name: FlashPlayerPlugin_13_0_0_214.exe
    Application Version: 13.0.0.214
    Application Timestamp: 5359c61d
    Fault Module Name: StackHash_27eb
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception Code: c0000005
    Exception Offset: 6c2b92cd
    OS Version: 6.1.7601.2.1.0.256.48
    Locale ID: 1033
    Additional Information 1: 27eb
    Additional Information 2: 27eb358fe674a6f15dafe56d42bb9bf3
    Additional Information 3: 2f06
    Additional Information 4: 2f06c18113e6d7c00e6b91fa1fde84b6
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt

    AdBlock Plus isn't maintained or connected to Mozilla as they didn't develop it. ABP and Flash don't interfere with each other except on same cases that ABP blocks Flash content.
    You can Try disabling Hardware Acceleration. <br>
    #Go to this [http://helpx.adobe.com/flash-player/kb/video-playback-issues.html#main_Solve_video_playback_issues Adobe Flash Player Help page].
    #Right-click on the Flash Player logo on that page.
    #Click on '''Settings''' in the context menu. The Adobe Flash Player Settings screen will open.
    # Click on the icon at the bottom-left of the Adobe Flash Player Settings window to open the Display panel. <br/> <br/>[[Image:fpSettings1.PNG]] <br/>
    # Remove the check mark from '''Enable hardware acceleration'''.
    # Click '''Close''' to close the Adobe Flash Player Settings Window.
    # Restart Firefox.
    This [http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html Flash Player Help - Display Settings page] has more information on Flash Player hardware acceleration, if you're interested.
    If that doesn't work try Try to disable Protected Mode in Flash 11.3 and above by adding the line ProtectedMode=0 to the Flash "mms.cfg" file located in one of these locations: [46]
    (Windows 32bit) C:\Windows\System32\Macromed\Flash
    (Windows 64bit) C:\Windows\SysWOW64\Macromed\Flash
    For example, on a Windows 7 64-bit system, open the C:\Windows\SysWOW64\Macromed\Flash folder, copy the file "mms.cfg" to the desktop, open it in Notepad, add a new line <code>ProtectedMode=0 </code> and then close Notepad, saving your changes. Next, go back to the C:\Windows\SysWOW64\Macromed\Flash folder, rename the original file to "mms.cfgBAK" (to save it as a backup) and then drag and drop in the modified "mms.cfg" file from the desktop. [47] [48] [49]
    Note: To re-enable Flash Protected Mode, either restore a backup of the original mms.cfg file, if you saved one, or else re-edit the mms.cfg file to remove the <code>ProtectedMode=0 l</code> line you added. Updating Flash Player or installing a newer version does not automatically re-enable Protected Mode
    Flash has been a pain since day 1 and Mozilla is currently working to replace Flash with Shumway. Unfortunately it's in the Nightly channel, doesn't come activated automatically and it isn't quite ready for normal usage. I just tested Nightly yesterday with Shumway and it wouldn't play.

  • I film with an iPhone and edit in PE10, what project settings would be best?

         So I'm filming a short film with my iPhone 4S, and editing in PE10. The recommended project setting for the iPhone 4S's footage is 'Flip Mino HD and Ultra HD 29_97'. However, I film using an App called FilmicPro, which allows me to customize frames per second, resolution and audio capture with some settings. In my case, I've set the app to film at 30fps and with a resolution of 1920x1080. I still use the above mentioned project setting. So my first question is:
    -If I'm filming in 1080x190 at 30fps, is there a different setting I should be using for the project?
         Now for the second part. The first part of my editing process is I start a project, select 'Flip Mino HD and Ultra HD 29_97', then I splice and string together the raw footage from FilmicPro like normal. Next I export the project with the settings:
    Quicktime (For email and playback on Mac)
    Output: 1920x1080, 29_97fps, Progressive, Quality 100 48000hz, Mono, H.264
    Source: Clip, Sequence 01,
                   1280x720 (1.0), 29_97 fps, Progressive, *insert duration*, 48000 Hz, Stereo
    Audio Codec: AAC
    Sample Rate: 48000 Hz Mono
    Video Codec: H.264
    Field Type: Progressive
    Aspect: Square Pixels (1.0)
    Render at Max. Depth: 24 bit
         After I export the project, I start another project (not changing the project settings from before), and then I import the finished project as media so I can add special FX (in this case muzzle flashes, blood, etc.). However when I add the video, PE10 states the project settings dont match, and asks if I'd like the program to choose the correct settings. I select yes. This changes the project settings to 'DSLR-1080p-DSLR 1080p30'. I edit without issues, and use the same export settings as I did for the base draft. I also notice when I view the project settings in the second project after it changes settings, that it says the editing mode is now 'Sony XDCAM EX 720p'. So my second question is:
    -Should I use the setting that PE10 switches to? Or select 'No' and still use the Flip Mino setting i used for the first draft?
         The end video still looks great (for an iphone), although of course there is still noise. I'm basically trying to get the absolute best quality possible. If this is as good as it gets, and It turns out ive been doing this right, then that's fine. But if anyone can recomend better settings to use, then please tell. Thanks.
    Forgot to mention, I'm using an unmodified MacBook Pro (2006) with Adobe Premiere Elements 10. Dont know if that info is needed, but thought I'd include it.

    BlackJack5852
    Maybe I missed something. So extra post on this.
    You wrote
    Quicktime (For email and playback on Mac)
    Output: 1920x1080, 29_97fps, Progressive, Quality 100 48000hz, Mono, H.264
    Source: Clip, Sequence 01,
                   1280x720 (1.0), 29_97 fps, Progressive, *insert duration*, 48000 Hz, Stereo
    Audio Codec: AAC
    Sample Rate: 48000 Hz Mono
    Video Codec: H.264
    Field Type: Progressive
    Aspect: Square Pixels (1.0)
    Render at Max. Depth: 24 bit
    Why? Where did the 720p30 come from?
    If you have 720p30 footage, you should be using
    NTSC
    AVCHD
    AVCHD LITE 720p30
    If that is what you have, do you really want to export that as 1920 x 1080 or 1280 x 720?
    If an export of 1280 x 720, please look at
    Share
    Computer
    AVCHD
    Presets = MP4 - H.264 1920 x 1080 p30
    and change the settings under the Advanced Button/Video Tab to look like
    Please check out the export settings adjustments that you can make under Advanced Button/Video Tab and Audio Tab for the preset that you select.
    ATR

  • Fire fox wont load properly keepd flashing on and off for about 15 minutes before it loads properly then says its in safe mode. How do i get it to load straight away and not in safe mode

    Firefox wont open straight away.
    I use to use Firefox all the time until a friend sent me a message that needed me to install Bandoo and I haven't been able to use Firefox since.
    I unistalled Bandoo and Firefox still wouldn't load for me so i uninstalled it and re installed Firefox now when i try to open it ,it just keeps flashing on and off my screen for about 15 minutes and when it does load to comes up to welcome to Firefox 4 and a popup comes up saying that firefox is in safe mode
    HOW DO I FIX THIS PLEASE??????

    BJB
    Suspect it has "dozed" off.  Can we get your event viewer logs
    Please provide us with your Event Viewer administrative logs by following these steps:
    Click Start Menu
    Type eventvwr into Search programs and files (do not hit enter)
    Right click eventvwr.exe and click Run as administrator
    Expand Custom Views
    Click Administrative Events
    Right click Administrative Events
    Save all Events in Custom View As...
    Save them in a folder where you will remember which folder and save as Errors.evtx
    Go to where you saved Errors.evtx
    Right click Errors.evtx -> send to -> compressed (zipped) folder
    Upload the .zip file to Onedrive or a file sharing service and put a link to it in your next post
    If you have updated to win 8.1 and you get the error message "the system cannot find the file specified" it is a known problem.
     The work around is to edit the registry.  If you are not comfortable doing this DONT.  If you are, backup the key before you do
    Press Win+"R" and input regedit
    Navigate to:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels. Delete "Microsoft-Windows-DxpTaskRingtone/Analytic"
    Wanikiya and Dyami--Team Zigzag

  • I lost my belongings via theft. As a photographer my greatest loss is having a computer to download and edit photos. Money is scarce and I am considering an ipad. Can anyone advise me whether an ipad can replace a pc?  Are there ports?

    I lost my belongings via theft from a storage unit. As it was scheduled for move the next day I did not purchase insurance. Probably an inside job, painful leason learned. This also left me no way to repurchase all i lost.
    As a photographer my greatest loss is having a computer to download and edit photos. Money is scarce and I am considering an ipad, understanding even this may not be affordable. Can anyone advise me whether an ipad can replace a pc?  Are there ports?  How crucial is memory?  I could edit photos then store them on flash drives if the ipad cannot handle load. Never having owned one I'm afraid I am completely ignorant on these issues and am grateful for any guidance. Thank you!

    Trishfromaz wrote:
    Can anyone advise me whether an ipad can replace a pc? 
    No.  The iPad while a powerful tablet, is not a PC replacement. It is limited in what it can do.
    Trishfromaz wrote:
    Are there ports? 
    No USB ports or of any other kind if that is what you are asking.  There's the sync/charge port you can use with the Lightning to USB camera Adapter, but only to load photos onto the iPad. It cannot write out to USB drives.
    http://store.apple.com/us/product/MD821ZM/A/lightning-to-usb-camera-adapter
    Trishfromaz wrote:
      How crucial is memory? 
    iPads are not upgradeable. So what you buy is what you get. Memory is 1GB.  Storage space can go from 16GB up to 128GB
    Depending on what Image editor applications you use, there may not be a version for iPad with the features you need.

  • Using Flash Pro and Flash Builder together | Learn Flash Professional CS5 & CS5.5 | Adobe TV

    Adobe Flash Professional CS5 and Adobe Flash Builder 4 enable time-saving workflows. Learn how to develop content in Flash while editing associated ActionScript code in Flash Builder 4, switching easily between the two applications to edit and test.
    http://adobe.ly/w50IJm

    This doesn't seem to work the same way in CS5.5 / CS6
    In the video the class files are associated with the FLA, when you switch back to Flash Pro...
    So far, when I follow these steps the classes are not associated with the FLA, the class field for the stage in Flash remains blank.
    Also, clicking the edit icon in the properties of a MovieClip and allowing FB to create the file, does not associate the as file with the MovieClip.
    Returning to Flash Pro and clicking the Edit button attempt to create a new file once again, but since the file already exists in FB it just remains on the New ActionScript Class dialog, with the Finish Button grayed out (because a file with the same name already exists in FB).
    The resulting AS files for a given are created in a sub folder under:
    Documents/Adobe Flash Builder 4.6/[Project]/src-[Project]/*.as
    Yet the FLA is located in Documents:
    Documents/[Project].fla
    Should the as files exists with the fla, is a folder reference supposed to be set, or did I miss a step somewhere?
    Is a source path supposed to be added to Flash Pro for:
    Documents/Adobe Flash Builder 4.6/[Project]
    I am currently on a Mac, but noticed the same behavior in Windows at work yesterday.
    Thanks,
    Josh

  • Installed latest 11.2 Flash Player and drmtest says I need to update

    I installed the latest version of Flash but I still cannot watch video on Amazon Instant.  Contacted Amazon and uninstalled latest version and re-installed old version.  Still didn't work.  I updated Java.  Still didn't work.  I restarted the computer and it still doesn't work.  I re-installed the latest version of Flash and it still doesn't work.  I searched for "native cache" and finder doesnt' find any file by that name.   I went to the Adobe Flash Acess Sample Video Player and it says I need the latest version of Flash. But I HAVE the latest verson of Flash - so it's not Amazon or Mac its Adobe and this website is not very helpful so far.   Does anyone know why this product doesn't work? I've been troubleshooting and looking for help for 3 hours. 
    I am running on Mac OS X 10.6

    Hello.  I have almost the same problem it seems.
    I have reinstalled Adobe Flash Player (latest), used the Uninstaller from the website. It installs correctly.
    Even tho it doesnt seem right when i check my programs installed.
    Because before i had 2 Adobe Flash Player (i use CCleaner for this), I got the Adobe Flash Player Plugin 64-bit
    and another at name Adobe Flash Player 11 something. And before i did the same thing as i did now.
    But it should probably be only the Plugin one.
    Anyways. When i try to watch Youtube videos, it won't use Flash Player at all. And Firefox says
    i have Flash Player, and its up to date and everything.  But Youtube wont use it. Some do odd enough.
    Vimeo use it tho.
    And now i came across this thread, and i tried that Profile thing you told. And it does work with a new profile.
    With the same Youtube video (copy link from old Profile). So i guess it's the profile that's broken.
    Example of videos:
    Doesnt work:       http://www.youtube.com/watch?v=M3PMCD7aMRI&hd=1
    Works just fine:   http://www.youtube.com/watch?v=tZ46Ot4_lLo&feature=related&hd=1
    But how could i fix this then?  Cause i realy don't want to do a new profile and lose all the settings etc i have at the moment.
    Would be realy awesome if you could provide a fix for me
    I might have been unclear on some things, not that good at english at some points.
    So just ask if you need more info and ill try to provide it for you.
    // Mjolkspam
    Message was edited by: Mjolkspam

  • Please help!! Can't find "simulate download" in flash cs4 educ. edition

    Hi there,
    Would someone pls help me on this one?  I have the education edition of CS4 Flash pro and I can't find the simulate download/bandwidth profiler anywhere in the "View" menu where it is supposed to live.  Is it hidden somewhere, or is it not included in my version?  I thought the only difference between the education edition and the retail was the licensing.
    I have been searching for days for an answer and it makes testing my preloader very difficult.
    Thanks for any help

    Wow, i feel embarassed.  That was it!! Thanks for your help. I really appreciate it.

  • I am trying to save a custom code snippet in Flash CC and it does not save, any ideas why?

    I am trying to save a custom code snippet in Flash CC and it does not save, any ideas why?  I am using Windows 8.1 with Flash CC.
    I even when into the "Edit Code Snippet XML" and added a Custom folder and a custom template.  Then I went back to add the code snippet again and it still did not work.
    About line 32, I added:
       <category title="Custom"
          isBranch="true" expanded="false"
          description="Code for common interactions">
          <snippet isBranch="false">
          <title>Custom Snippet</title>
          <description>This is an example of a custom code snippet.</description>
          <requiresSymbol>true</requiresSymbol>
          <code><![CDATA[
    // Code goes here
    trace("A custom code snippet");
          ]]></code>
        </snippet>
        </category>     
    Any assistance would be greatly appreciated.

    UserAgent for the OP is - Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100405 Namoroka/3.6.3 - he might be running a 64-bit 3rd party build.

Maybe you are looking for