Using code to export SWF frame as image

Hi - I currently deal with a customer who has a large number
of dynamically generated SWF movies. For various purposes they
would like to be able to generate images (for example of the first
frame only) of a SWF on demand, and potentially there would be
multiple concurrent requests to do so. Does anyone know if there is
a component, Dot Net DLL or any other programmatic mechanism for
exporting a single SWF frame to JPG or PNG format, but without
displaying the flash control or other visual interface, and that
supports multiple concurrent calls?

officermcnulty wrote:
> Hi - I currently deal with a customer who has a large
number of dynamically
> generated SWF movies. For various purposes they would
like to be able to
> generate images (for example of the first frame only) of
a SWF on demand, and
> potentially there would be multiple concurrent requests
to do so. Does anyone
> know if there is a component, Dot Net DLL or any other
programmatic mechanism
> for exporting a single SWF frame to JPG or PNG format,
but without displaying
> the flash control or other visual interface, and that
supports multiple
> concurrent calls?
>
Sounds like you need a SWF renderer. Based on the complexity
of your
SWFs, it's no an easy thing to do.
I would look into the various Open Source Flash player
implementations
out-there to use their rendering code. I haven't digged into
this myself
much but it may require a fair bit of coding on your side,
plus be aware
that these open source flash player generally do not support
all
features of Flash.
There is one SWF rendering library here:
Flirt:
http://flirt.sourceforge.net/
And some open source Flash players here:
* gameSWF:
http://tulrich.com/geekstuff/gameswf.html
* Gnash (based on gameSWF):
http://www.gnu.org/software/gnash/
* swfDEC:
http://swfdec.sourceforge.net/
Good luck.
Tim.

Similar Messages

  • How to load ai file in flash CS4 using code(Like loading swf or images )

    Hi,
    I have to load AI file in flash CS4 and provide the interaction with user.
    Can any body help?
    Thanks

    Hi.
    No you cannot  import Eps, wmf, emf,  ai, cdr files in swf dynamically using Action Script 3.

  • Useful code for exporting to Excel xlsx

    I wanted to "give back" by posting this little code sample for exporting a query into Excel xlsx
    Kudos to Charlie Arehart for helping me increase the server memory and java heap size.
    This code works for me using CF 9 on Windows Server 2008 R2. By the way, CFSpreadsheet seems to consume a lot of memory on larger exports. For this reason, we increased the server's physical memory, then used CF Administrator to increase the jvm heap size in the Administrator -> Java and JVM settings. My max java heap size is now 3072.
    Need help? I recommend you contact Charlie Arehart on server issues: [email protected]
    Code:
    Example query is called "Myquery" Spreadsheet is called "Myspreadsheet" I export the spreadsheet to a subdirectory called "xlsx" I use cflocation to direct the browser to the spreadsheet. The browser prompts the user to open, save or cancel.
    <cfset var_filenameis = "Myspreadsheet.xlsx">
    <cfset SpreadsheetObj = spreadsheetNew("true")>
    <cfset SpreadsheetObj = spreadsheetNew("#var_filenameis#","yes")>
    <cfspreadsheet action="write" filename="./xlsx/#var_filenameis#" query="Myquery" overwrite="true">
    <cflocation url = "./xlsx/#var_filenameis#">    

    An inline DataTable is not the same thing as exporting data in a standardized XLSX format.  (I'll post the script I use in another comment.
    Regarding inline tables, here are some other worth scripts:
    Handsontable - minimalistic Excel-like data grid editor
    http://handsontable.com/
    TableSorter 2 (forked) - sorting, filtering, grouping, pagination, inline editing, sticky header
    http://mottie.github.io/tablesorter/docs/
    jQuery Grid Plugin
    http://paramquery.com/
    jQuery table to CSV
    http://www.kunalbabre.com/projects/table2CSV.php
    jQuery Pivot - presenting table data in pivot form
    http://metalogic.dk/jquery.pivot/demo.htm

  • What Frame Rate does Catalyst export .SWF at?

    What Frame Rate does Catalyst export .SWF at?
    When I import a SWF file from Catalyst into another flash program, won't display never mind play, the error I get is that the frame rates don't match,
    therefore I need to know what  frame rate it exports at?

    If you have a SWF created by Catalyst, and you're using that SWF in something you're creating with Flash Builder or Flash Pro, then I think frame rate shouldn't matter. But maybe if you can give more details I could help more... Which flash program are you importing the SWF into, what commands or code are you using to do the import? Is there an error message or alert, if so what does it say? Any info you can provide will be helpful.
    Thanks

  • Source Media Time Code in Export Frame Metadata

    It is possible to include source media time code in the XMP metadata for images created using the Export Frame command? When I export a frame, the metadata only contains sequence time code. I work for an aerial survey and remote sensing firm, and we use time of day time code from aerial video footage in many places in our workflow. We include still frames of key points in the video in our deliverables for clients, and the time code values we need come from the same points as those still frames, so our current workflow uses RedCine-X to export still frames and Digital PIE to extract source time code from those images. I would strongly prefer to work only in Premiere Pro and never open RedCine-X, but I can't keep the workflow all in Premiere Pro if I can't get source time code out with the images.

    That's a good suggestion Jim. I did try that before I posted, and exporting from the source monitor does embed time code in the XMP, but it's not time code I recognize. It's neither the media source time code nor the sequence time code where that frame appears in the only sequence I have in my test project. For example, I just exported a frame from the source monitor at 18:43:45:15 in the source media time code. That frame appears at 00:43:23:22 in the sequence I have open, and I used match frame to open the frame in the source monitor. The resulting time code in the XMP for the exported frame is 00:44:53:06. There are no options for anything except file name, format, and output directory in the Export Frame dialog, so I don't know how to control what time code Premiere sends out from the source monitor.

  • Can I use Bridge to export image data into a .txt file?

    I have a folder of images and I would like to export the File Name, Resolution, Dimensions and Color Mode for each file into one text file. Can I use Bridge to export image data into a .txt file?

    Hello
    You may try the following AppleScript script. It will ask you to choose a root folder where to start searching for *.map files and then create a CSV file named "out.csv" on desktop which you may import to Excel.
    set f to (choose folder with prompt "Choose the root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/usr/bin/perl -CSDA -w <<'EOF' - " & f's quoted form & " > ~/Desktop/out.csv
    use strict;
    use open IN => ':crlf';
    chdir $ARGV[0] or die qq($!);
    local $/ = qq(\\0);
    my @ff = map {chomp; $_} qx(find . -type f -iname '*.map' -print0);
    local $/ = qq(\\n);
    #     CSV spec
    #     - record separator is CRLF
    #     - field separator is comma
    #     - every field is quoted
    #     - text encoding is UTF-8
    local $\\ = qq(\\015\\012);    # CRLF
    local $, = qq(,);            # COMMA
    # print column header row
    my @dd = ('column 1', 'column 2', 'column 3', 'column 4', 'column 5', 'column 6');
    print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    # print data row per each file
    while (@ff) {
        my $f = shift @ff;    # file path
        if ( ! open(IN, '<', $f) ) {
            warn qq(Failed to open $f: $!);
            next;
        $f =~ s%^.*/%%og;    # file name
        @dd = ('', $f, '', '', '', '');
        while (<IN>) {
            chomp;
            $dd[0] = \"$2/$1/$3\" if m%Link Time\\s+=\\s+([0-9]{2})/([0-9]{2})/([0-9]{4})%o;
            ($dd[2] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of CODE\\s/o;
            ($dd[3] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of DATA\\s/o;
            ($dd[4] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of XDATA\\s/o;
            ($dd[5] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of FARCODE\\s/o;
            last unless grep { /^$/ } @dd;
        close IN;
        print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    EOF
    Hope this may help,
    H

  • Why does my exported swf show more content than actually on frame?

    Why does my exported .swf show more content than actually on frame?
    My problem is relatively simple, though, I had some trouble finding a solution to it:
    When I play my exported animation using flash player in Google Chrome, if the window is bigger than the resolution flash document/frame, it shows content not meant to show up on the frame -- like parts of a huge background that aren't supposed to show up yet.
    In other words, how do I constraint the .swf to the white background/document resolution?

    Anyone? I'd appreciate it if someone replied soon -- I am done with my project once this issue is resolved, and I am excited to publish it.
    Please respond if you have any useful knowledge on the matter!
    Thanks!

  • Final Cut Pro X Image Sequence Export missing frames per second option?

    I am using the trial version of Final Cut Pro X.  I can export an image sequence but it will only allow me to do so at 30 frames per second -every single frame! 
    So a 10 min movie takes half an hour to export 20,000+ frames that no one on earth has time to look thru.
    In my old Final Cut Express I was able to choose 1 or 2 frames per second, which was just right.
    What am I missing?
    Do I need to buy Quicktime Pro or Compressor to allow me to export image sequences without exporting every frame?
    Why would Apple even have an image sequence export if it only allows you to export every frame, or it that only in the trial version?
    Thank you

    I found a free option for you, if you don't already have Compressor 4.
    In FCPX create your movie. Then SHARE as a Master File.
    Get MPEG Streamclip, which is a free app available here.
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    Drag your Master File into MPEG Streamclip.
    In MPEG Streamclip, select FILE/EXPORT TO OTHER FORMATS.
    In FORMAT: choose IMAGE SEQUENCE
    In OPTIONS, choose your frame rate.

  • Can I import binary in Flash CS5 and export swf, without AS code likes "Embed" ?

    Can I import binary in Flash CS5 and export swf, without AS code likes "Embed" ?
    I know I can use AS code,likes "[Embed]" metadata to embed binary in swf. But , how can I do that in Flash CS5 ?

    Have a look at this: http://stackoverflow.com/questions/7816231/how-to-use-as3-to-load-binary-data-from-web-ser ver

  • Green frames when using AppleScript to export from QT

    Not sure if this is a QuickTime issue, h.264 issue, or an AppleScript issue, but i thought I'd start here since I know the least about AppleScript and have some clues to the problem.
    I'm creating an Automator workflow that requires a run AppleScript action. My plan is to use applescript to have QuickTime Pro 7.6.6 export an image sequence from a QuickTime movie in h.264, using a QuickTime settings file I've already exported. The script points to the settings file and and exports the sequence to the output folder I've specified. Im looking to export one frame per second. Running the script works well and I'm almost getting the result I want, except that each frame that is exported is entirely green.
    Interestingly, when I run the exact same process manually, using the exact same settings, the export works fine, and the frames are correct. Additionally, exporting via AppleScript brings up a different status bar than when exporting manually, which leads me to believe that AppleScript is the culprit. Perhaps it's running some sort of outdated process? The AppleScript status bar comes down from the top middle of the video frame, while exporting manually, brings up a floating status bar. They look decidedly different.
    Has anyone run into this problem? Can possibly shed light on it? Possible AppleScript work around?  This only seems to effect h.264 videos. If I run the same AppleScript on a prores file, the images export correctly.

    Including the applescript in question could be helpful!
    tell application "QuickTime Player 7"
              export front document as image sequence using settings "Macintosh HD:Users:grato:Documents:SYNC:Sync Assets:settings:Sync_QTexport_setting.qtes" to "Macintosh HD:Users:grato:Documents:SYNC:Sync Assets:Assets:temp:Sync-"
    end tell

  • How to click button in exported SWF to go to frame in parent SWF?

    I looked online, but couldn't find anything helpful.   I got these codes on the web, but they're not working.... (I'm pretty new to flash).
    projectgallery.swf - PARENT SWF
    projectgallery_cutLimestone.swf - EXPORT SWF
    returnToAlbums_btn_inst - instance of a button on the export swf that I want to be able to click to go to a different frame in the parent SWF
    Here are my codes:
    on the parent SWF:
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    var myLoader:Loader = new Loader();
    var url:URLRequest = new URLRequest("projectgallery_cutlimestone.swf");
    myLoader.load(url);
    function loadHandler (event:Event) {
              var projectgallery_cutlimestone:MovieClip = event.target.content;
              addChild(myLoader);
              trace(projectgallery_cutlimestone);
              function returnToAlbums (event:MouseEvent):void {
                        projectgallery_cutlimestone.returnToAlbums_btn_inst.play();
              projectgallery_cutlimestone.addEventListener(MouseEvent.CLICK, returnToAlbums);
    myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,loadHandler);
    When I try it, the SWF loads fine, but when it loads, this OUTPUT error appears:
    [object Main]
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/frame2()
              at flash.display::MovieClip/gotoAndStop()
              at Main/preload1()
    then, when I try to click the button returnToAlbums_btn_inst, this OUTPUT error appears:
    ReferenceError: Error #1069: Property play not found on flash.display.SimpleButton and there is no default value.
              at Function/<anonymous>()
    I'm really new to flash, so I don't know why it's not working.  The instance is labeled (I double-checked).

    Export SWF works without error now, but parent SWF returns:
    TypeError: Error #2007: Parameter child must be non-null.
              at flash.display::DisplayObjectContainer/addChild()
              at Main/frame3()
              at flash.display::MovieClip/gotoAndStop()
              at Main/gotoCutLimestone()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Main/preload1()
    under OUTPUT when I try to load the SWF.  The returnToAlbums_btn_inst doesn't work still either.

  • SWF movie export on frame-by-frame basis WITH actionscript

    Hi there,
    I know they're two ways of exporting flash movies:
    Export the whole timeline. This only allows timeline animations and gets messy because you have to cram up everything on the main timeline.
    Realtime-Export via Quicktime. This is a "full blown" export, but heavily dependent on CPU power or speed of harddrive, depending on resolution.
    I also work a lot with music programs and there is an option called "mixdown". This will render the whole song - as fast as the processor is capable - to a WAV-file. So time doesn't matter anymore, notes don't get skipped, etc.
    I would like to see something like this in flash, too. WITH actionscript.
    I just want flash to export one frame for each "onEnterFrame" event, NOT when the timer tells you, it's time for a "next frame". So this would mean not to trigger the onEnterEvent when the appropiate time has passed, but to trigger it, when the next frame can be exported.
    Libraries like "TweenLite/Max" are capable of doing frame-based animations, independent from the timer, so everything on that end is pretty fine.
    Would be so great if that was possible in any way.
    Is it already in CS5? Or maybe an option in CS6... argh, so many years to wait...
    until then, I have to measure the fps, look out for the lowest number, export at THAT framerate (in most of the cases just 4 or 5 fps, even on a very fast computer - just because 2 or 3 frames happen to render slower than the other 200) and afterwarts set it to 25 again (I use Blender to do this)

    Greg-
    Good Lead - Thanks.
    I learned that having skinned components (which this uses)
    keeps this preloader from working properly. The results were
    unstable. It looks like a great little preloader for other things
    though.
    I also learned that it's a problem that others have
    encountered and that hasnt been solved yet...
    ...."hello Adobe?"
    Thanks again for helping me understand this.
    JL

  • Is it possible to use markers to export still images at once?

    I have a movie and I need to export about 30 still images. Can I just place markers at the frames where I want a still image to be exported and then export all the markers together at once thus resulting in 30 jpeg still images? If yes, how do you do that?

    sure ....
    if this is a sequence, then first, in the sequence, +select the clips you want to mark+ then scrub through the sequence placing markers at the appropriate points (because the clips are selected the markers will be placed within the clip instance rather than as sequence markers); second, drag the now marked clips back up from the sequence and into a bin in the browser window
    if its not a sequence, then just open the clip into the viewer window and scrub through placing markers as needed
    now, click on the disclosure triangle that appears to the left of these clips in the browser window's list view to display the contained markers as a list ... select all those markers and drag them into a new bin
    you now have a bin full of subclips that each represent one of the markers you've placed
    select this bin and choose File menu > Batch Export ... and in the subsequent window press the Settings button to set up the export format (as Still Image)
    press the export button and you're done
    fwiw it all sounds much more complicated than it is

  • How to store the images in KM using Code

    Hello,
    i retreived the images from KM using the following code.
    import com.sapportals.portal.prt.component.AbstractPortalComponent;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    import com.sapportals.portal.prt.component.IPortalComponentResponse;
    import com.sapportals.portal.prt.resource.IResource;
    public class ThumbnailTes extends AbstractPortalComponent {
         /* (non-Javadoc)
    @see com.sapportals.portal.prt.component.AbstractPortalComponent#doContent(com.sapportals.portal.prt.component.IPortalComponentRequest, com.sapportals.portal.prt.component.IPortalComponentResponse)
         public void doContent(IPortalComponentRequest request,IPortalComponentResponse response) {
    String path =request.getResource(IResource.IMAGE,"images/sap1.gif").getResourceInformation().getURL(request);
                   response.write("<img src = "path"/>");
    but i want to store the images in KM using code.Can anybody help me.
    acutally the image is my location(c:/images/sap1/jpg).i want to upload this image to KM using code.
    Can anybody help me how to do that?

    Hi Kasturi,
    > not accepting the points
    It worked on this and on one other thread, but this is still open: How to upload the image
    > want upload the images from the client side machine
    > to KM
    In the thread I just referred to, I already provided information about the HTMLB upload control. With this at hand, you'll get the file from the client to the server.
    At server side, get an ICollection instance where you want to store the file and create the corresponding resource. See https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/javadocs/nw04/sp12/knowledge management/com/sapportals/wcm/repository/icollection.html#createresource(java.lang.String,%20com.sapportals.wcm.repository.IPropertyMap,%20com.sapportals.wcm.util.content.IContent)
    Hope it helps
    Detlev

  • What could cause "Internal error: java.lang.NullPointerException: can't not add null to SWF frame" when using compc?

    using flex sdk 4.6, and air sdk 15.0.0.356
    we get the following error when using compc in our ant build:
    [java] Internal error: java.lang.NullPointerException: can't not add null to SWF frame
    [java] at com.adobe.flash.swf.SWFFrame.addTag(SWFFrame.java:77)
    [java] at com.adobe.flash.compiler.internal.units.requests.SWFTagsRequestResult.addToFrame(SWFTagsR equestResult.java:114)
    [java] at com.adobe.flash.compiler.internal.targets.SWFTarget.addCompilationUnitsAndDependenciesToF rame(SWFTarget.java:398)
    [java] at com.adobe.flash.compiler.internal.targets.SWFTarget$FramesInformation.createFrame(SWFTarg et.java:838)
    [java] at com.adobe.flash.compiler.internal.targets.SWFTarget$FramesInformation.createFrames(SWFTar get.java:875)
    [java] at com.adobe.flash.compiler.internal.targets.SWFTarget.build(SWFTarget.java:243)
    [java] at com.adobe.flash.compiler.internal.targets.SWCTarget.buildLibrarySWF(SWCTarget.java:348)
    [java] at com.adobe.flash.compiler.internal.targets.SWCTarget.build(SWCTarget.java:128)
    [java] at com.adobe.flash.compiler.clients.COMPC.buildArtifact(COMPC.java:144)
    [java] at com.adobe.flash.compiler.clients.MXMLC.compile(MXMLC.java:541)
    [java] at com.adobe.flash.compiler.clients.MXMLC.mainNoExit(MXMLC.java:230)
    [java] at com.adobe.flash.compiler.clients.MXMLC.mainNoExit(MXMLC.java:184)
    [java] at com.adobe.flash.compiler.clients.COMPC.staticMainNoExit(COMPC.java:75)
    [java] at com.adobe.flash.compiler.clients.COMPC.main(COMPC.java:62)
    which seems to be rather vague, and offers no clue as to what caused the problem. so, my question is, what could cause this error?
    these are the compiler options we use in the build file:
    <java jar="${flex.compc.jar}" dir="." fork="true" failonerror="true">
          <jvmarg value="-Xmx512m" />
          <arg line="@{options} ${_compc.libpath} ${_compc.externspath} ${_compc.includespath}" />
          <arg value="+flexlib=${flex.frameworks.dir}" />
          <arg value="-load-config=@{config}" />
          <arg value="-source-path=@{src.dir}" />
          <arg value="-include-sources=@{src.dir}" />
          <arg value="-output=@{dest}" />
          <arg value="-swf-version=@{swf.version}"/>
          <arg value="-debug=${flash.debug}"/>
          <arg value="-advanced-telemetry"/>
    </java>
    assume that the properties resolve to correct values, since all projects (except one) call this task and compile successfully. the error must come from this one project that fails, but we don't know why.
    any ideas?

    You could be running out of memory, try increasing the -Xmx512m value to -Xmx1024m or another value that you prefer

Maybe you are looking for

  • PayPal Field Selection from a From

    Using Windows7, if a Form has many Fields within it, when I go to the PayPal activation Tab... and try to assign Form Fields to the PayPal presentation/calculation, the Dropdown List of Form Fields 'stops' vertically when it fills the screen (if ther

  • SWF Object and Internet Explorer

    I am experiencing some strange behavior with a SWF Im including in the following web page: http://www.bostonredevelopmentauthority.org/ The SWF displays properly on the first page visit in both Internet Explorer and Firefox.  If I navigate away to a

  • Connecting to usb 2.0 help

    I have a quick question. What is the problem with my ipod or cpu when if i plug my ipod into the firewire port or the usb 2.0 one the cpu will recognise the ipod for a second then flash about connecting and disconnecting. What do I do?

  • Does it worth to move from macbook pro to macbook pro retina?

    Hey I have macbook pro with Processor  2.66 GHz Intel Core i7 Memory  8 GB 1067 MHz DDR3 Graphics  NVIDIA GeForce GT 330M 512 MB and its good but many people are saying macbook pro 2013 with retina display is the best laptop and has many features so

  • Wiped my computer, backed it up, and some files are not the same

    I was having some touchpad related issues so I took my macbook pro (late 2011) to the apple store. There they initiated a wipe after having told them that I used a portable external hard-drive to back up my documents. I used migration assistant and e