How to package an obfuscated swf ?

I'm not sure how the packager works but it seems to create a new release build and then package it.
Then, how can I package my own swf file after having it obfuscated ? There is no way to just browse for the swf file I want to have included.
Thanks in advance. 

Well, I think I have got the answer, it's pretty easy once you get the info. I really would appreciate some more documentation
The steps I have followed are:
- Download the packaging tool from Adobe Developer center:  http://www.adobe.com/devnet/creativesuite.html
- Make sure you can run Java from the command shell. For Windows I had to add the Java path to my system Java path variable
- At the command prompt go to the folder where you have unzipped the tool
- Run
         java -jar ucf.jar -package -storetype PKCS12 -keystore selfcertificate.p12 MyExtension.zxp -C "C:\myprojects\MyExtension\bin-debug" .
Note:
     - Include final dot ( this includes subfolders)
     - bin-debug should contain the obfuscated swf file
     - selfcertificate.p12 should be replaced by a valid certificate file
     - you will be prompted to input the certificate password
If something is not correct please let me know, I hope it helps somebody

Similar Messages

  • HOW can I make a .SWF default load after its first load?

    When you have the SAME parent API on every page of an (X)HTML website, can a .SWF tell itself to load from a default position when a website user navigates to different HTML pages?
    Here's my parent API as it stands:
    http://www.playingthepoet.com/
    HOW can you tell the .SWF to load from a default position once the .SWF has loaded a first time? AND from any page of the website, not just the Home page? This is an advanced .SWF networking issue. And I'm not sure if the best solution is a Javascript of if there's a direct AS3 programming solution.
    The blurs and fade-ins are a bunch of timer variables and timer event methods timer event listeners. I want that intro ONLY ONCE. And NOT every time a user changes HTML pages. Please help, and MANY thanks for your time!!
    NT

    Hi ,
    You can set a variable say "count" on stage composition ready -
    sym.setVariable("count" , 0);
    On stage click , you keep checking the value of this variable -
    if(sym.getVariable("count") == 5)
      sym.$("Symbol_2").show();
    //Here "Symbol_2" is the next button that you want to appear on screen(which is initially invisible) when the symbol_1 is clicked say 5 times.
    Now, on click of a button , you keep updating the variable count -
    var countnew = sym.getVariable("count");
    countnew = countnew+1;
    sym.setVariable("count" , countnew);
    Attaching the sample for reference.
    Thanks and Regards,
    Sudeshna Sarkar

  • How do you convert a SWF to JPEG?

    We have 10,000 SWFs (and their FLAs), but need to create a
    JPEG of each SWF to see a thumbnail of them in a DAM.
    Aside from the very manual method (make screenshot of the
    SWF, resize it and convert it to a JPEG in Photoshop/Bridge) what
    are my options in order to either A) automate this process OR B)
    come up with another process using either the CS2 or CS3 suites?
    If there is another process to do this, what would this be?
    Remember, I am starting with a SWF and I want a JPEG, but I
    am keeping both. I have seen plenty of information on how to embedd
    JPEGs into SWFs, but I am not interested.
    Anyone have any ideas on this topic?

    You say you have their FLA's. The image should be in the FLA
    right? The original is linked inside as well right so you should
    already have the original somewhere that you could work from
    instead of going through the FLA file. Now, if you added other
    graphics and so forth to in the FLA and want to export that
    instead, goto file/export/export image and select JPEG Image.
    Not sure if you can automate this though. You might be able
    to make an Applescript to do this, perhaps. Otherwise I suggest
    getting some interns in there ;-)
    Mark

  • How to Put Controls on SWF File... then Export  to FLV

    Have a swf file that self plays.
    What I Need:
    I need to imbed this self playing 2 minute video clip with
    sound...but I want it to have controls on it and be paused. I want
    to use dreamweaver to place it in the web page but stupid
    dreamweaver only puts controls on a flv file NOT SWF's.
    How can I get a swf file, then add controls, then output to
    FLV so Dreamwemaver can put it on my page.
    I have Adobe Dreamweaver CS4, Flash CS$ but DO NOT KNOW HOW
    TO USE IT - Tried but failed miserably (it didnt even want to put
    controls easily on this...I tried for 30 min but couldnt break
    through. I have the CS3 Master Collection.
    Thanks
    All I want is for this video to play universally and nicely
    in a web page of mine...when will this stuff ever be compatable and
    transparent to use!
    Suzzie

    For me, not. But yes I have to do this. Maybe I manual have a table which includes the y axis coordinates. X axis is dicrete then when I get the value 2 I will look at its y axis and take the coordinates of the y-axis corresponds to the table
    Is it difficult? 
    Yasemin Barutçu
    Electrical And Electronics Engineer

  • How to insert a Flash SWF into my page

    I am using GL6 on an Intel MAC running 10.5.6.  I have a Flash file I created using Flash CS3 and want to have it appear within my GL page.  However when I try to insert the file into the site window, I get the error message: myfile.swf could not be updated. Do you want to continue anyway?
    How do I get the SWF file into the page?
    Thanks.

    You can try to use my flash action original made to avoid the IE Eolas problem
    It wont give you a preview (flash only show in browser)
    It was made in GL5 and shud works in all newer versions
    http://www.jart.dk/jgom/golive/golive-actions/swfobject.html
    If neither GL's nativ or my action works it may be somthing with your flash

  • Embedding into a web page, but how to connect to an SWF on the media server

    If I do something like this it works fine. helloWorld.swf is
    an interactive SWF file thats on my application server. It then
    accepts parameters and successfully makes a connection to my FMS.
    <object width="600" height="600"
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
    <param name="movie" value="helloWorld.swf" />
    <embed src="helloWorld.swf" width="250" height="400"
    type="application/x-shockwave-flash" pluginspage=
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    helloWorld.swf already resides in my applicatoin folder on
    the FMS. The question is, how do i access that swf in order to
    stream it. My successful test connection is done like this
    "rtmp://<ip>/helloWorld/_definst_/helloWorld
    How do I enter that swf into the value or src field on my
    object tag above? I have searched days on this. There is so much
    documentation but nothing explicitly to simply streaming a file...
    Thanks in advance.

    Just sending this post back to the top. Seems to be a pretty
    slow forum with not a lot of activity. I would think being an adobe
    forum, it would more activity including moderators. Anyhow, that's
    my two cents. Next post will be to a new forum place..anyone use
    flashguru?

  • How do you display a swf video / videos when you mouse over

    How do you display a swf video / videos when you mouse over, It'll be something like a pop up but just that it doesn't open in another windows but within the same window and will be like a pop up roll over image.

    Thank you for the reply.
    I've been putzing around with it and came across the 'SetEventHandler' object and thought I'd try and make that one work.
    Here's what I've got so far.
           <mx:SetEventHandler target="{turnAroundMovie}" name="handleMovieClip" handler="stopMovie()"/>
    And then my fuction.
       <mx:Script>
            <![CDATA[
                private function stopMovie():void{
                    turnAroundMovie.stop(); <!-- here's where I'm getting stuck -->
            ]]>
        </mx:Script>
    My first instinct was the simple stop(), but that didn't fly.  I even added a stopMovie frame in my .swf and tried a gotoAndStop('stopMovie'); but that didn't fly either.  And that's kind of where I'm stuck at.

  • How can I import a .swf file in Adobe Flash CS4?

    Hi,
    How can I import a .swf file in Adobe Flash CS4?
    Thanks.

    you can use file/import but that would be a mistake.
    you should "load" your swf, not import it.
    if you want to load it and need help, are you using as2 or as3?

  • How to package/inlcude C++ .exe and .dll files in a Java Web Start App?

    Hello,
    I have a Java Web Start application that runs fine if the application is only 1 .jar file.
    But I have a need to also run C++ .exe and .dll file from my Java application.
    I wonder if someone could please tell me how to package/include C++ .exe and
    .dll files in my Java web start application?
    Thank you and Best Regards,
    Akino

    You need to place the EXE and DLLs inside the jar.
    Java cannot execute them from the jar. They have to be extracted (see Class.getResourceAsStream) from the jar and copyied into the target machine file system, perahps to the temp directory. Now you can execute them using Runtime.exec() or ProcessBuilder.start().
    Edited by: baftos on Jan 14, 2011 6:49 PM

  • How to remove text from .swf animation?

    how to remove text from .swf animation? Can no find this text
    in fla file. Flash 8.

    exactly what 'text' are you referring to? text that you typed
    on the Stage using the 'textTool'? simply select the text with the
    'arrowTool' and hit delete.
    If you are referring to a textField that you want to
    eliminate after a certain amount of time, within your animation
    sequence. first copy the text, create a new layer, paste the text
    in place, then where you want to have the text 'disappear' insert a
    'blank keyframe' at that point in the text layer.
    OR place the textfield within a MC and remove it with code.
    OR if the text is dynamic and you wish to use the position at a
    later time, pass a value of null or and empty string to the field
    at the point you wish. And there are other ways still. :) hope one
    of these works for you.

  • How the packaging material is treated  in PGI

    Guru ,
    i have done PGI for a material with a packaging material which consistutes a handling unit .
    ie handling unit= materaial + packaging material .
    when i did PGI , maetrial is shown in the storage location as reduced qty . fine .
    where is the packaging material along the material gone . NO trace of it .in mmbe no qty available
    how the packaging material is treated
    please help , my question is genuine .
    manu

    in mmbe , the packaging material qty is zero. but even though i can do pack it and create a HU . and also done PGI.ow the material is reduced its quantity . but no track of packaging material.
    how the HU  related packaging material works . i have limited knowledge on HU .
    please help me to undersytand . in sap library also not much explanation abt it .
    please help

  • How do you decompile a swf?

    How do you decompile a swf? We had a computer crash and I am
    trying to recover some files. Is there a way to decompile a swf
    back to it's original? Thanks.

    Do a google search on "SWF to FLA conversion" - I've heard of
    software that does it, but never seen it actually working. I don't
    think there is anything built into Flash to do it.
    The very nature of a SWF is that all layers and animations
    are "compiled" to a single timeline.
    Thanks for the reminder to backup my FLAs.

  • How to package other jar files into one jar?

    How to package other jar files into one jar? How can i get the class in the inner jar file?

    Generally not a good idea. The Java runtime won't be able to load classes from those "inner" jars, you'd have to write your own classloader to do that. It's not a brilliant idea, generally, anyway, since the point of having lots of jars is to keep your application modular. Bundling them all together like that means you have to re-deploy the whole thing to fix, for instance, one small bug in one small library
    If you really want to do this, there's an Eclipse plugin called FatJar, but I urge you to consider whether you really want to do it first.

  • How to package dynamic libraries into bundles

    how to package dynamic libraries into bundles

    ok thank u
    i have other doubt
    i am using tomcatplugin instead of myeclipse plugin
    is tomcat plugin supports jsf or not?

  • How many package in Java 1.1?

    Do you know, How many package in Java 1.1?

    Idiotic question, so here's an idiotic reply:
    jar tf /path/to/java/lib/rt.jar |\
       egrep -v '^(META-INF|com/sun|sun)' |\
       sed -e 's/\/[^/]*$//' |\
       sort -u |\
       sed -e 's;/;.;g' |\
       wc -lAnd if you change the last wc -l to more, you'll see the actual package names.

Maybe you are looking for

  • How to find a specific text(string) in a list (100) programs

    Dear All, Wish tou a very happy new year 2009!!! please let me know how we can find a specific word(eg: "barrel") in a list of programs/reports/bdc/user exits/field exits/function modules. Thanks in advance. Kumar.

  • Windows 8 installation on macbookpro mavericks

    i am trying to install windows 8 using boot camp(by inserting pendrive and cd,opening bootcamp and so on). i have downloaded boot camp software on my mac and inserted pen drive.after opening zip file of boot camp,then copied three items to the root l

  • Proxy to File Scenario Steps

    Hello everybody- I am trying a proxy to File scenario, Its from SRM-XI-File , i have followed the blog Learning XI but the question i have is, if iam sending a invoice from SRM to XI , what are the configuration steps that i need to do in SRM and in

  • Red Border Around Image

    Hi, In Photoshop CS3 I'm creating a 5 x5  pixel image in a green color. On my canvas it shows it completely green. I then emboss it. Before and after I emboss it I look at the navigator window and I see this red border around the green image. After I

  • FI line Item

    Hello Please can someone tell me that when we cancel an invoice. which table stores the value of the cancellation.