Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Quite A Big Favour, Please Decompile Small Swf



Sorry to ask, but would anybody be able to decompile an old Flash file on a website I designed years ago, and ,of course, have lost the source for.

It's basically a small flash player which works with a cgi script to stream mp3s - I'm pretty sure it came from a tutorial site many moons ago.

Anyway I can't find anything about it online, so I am reduced to having to hack it apart to try and work out the script and how it interacts with the cgi, so i can make some small changes.

I work on a mac and as far as I can tell there is no real decompiling software available which will simply export the thing as a Fla file.

So I know it's a liberty, but please could somebody simply decompile it, export it as a fla, and mail it to me at felix (at) urbanimage.tv

Copyright enthusiasts should note urbanimage is credited as the builders. (Although no one in their right mind would want this delightful piece of antique code.)

This is the address :

http://bluemountainmusic.tv/player.swf

Thanks for any help.



Ultrashock Forums > Flash > Flash Professional
Posted on: 2006-07-10


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Could You Do Me A Favour
Hey guys,

i'm doing a project at university based on flash. If you could possibly fill it out, it only takes a couple of minutes, I would be most appreciative of it. It will really help me out.

Survey - Click me!

Thanks alot.

Big Favour ?
Hey everyone,

I need a big favour from someone lovely out there ... Or someone who is so incredibly bored that they feel like helping me ... Or someone so lovely that they'd help a complete stranger, either or, I don't really mind !

Basically I have an assignment due tomorrow ... Mmm, I know ... I have to do various things in Flash with ActionScript 3.0, and I'm stuck at making a game. I had these great plans of making a game like the "Helicopter" game, but looking at code, that seems near on impossible for me to do.

I know little to no ActionScript, but I do have some programming skills in Visual Basic and C#, which could come in handy. Basically I'm asking for anyone out there to please help me create a game tonight ... Urgently ... ?

I'm really a lovely person, and it'd be so sweet if someone could help me out eh, please ? Add me to MSN if you'd rather do it there than on here ... MSN is kelly@deluxe.net.nz.

Thank-you !

BIG Favour. Please...?
Hi guys

I'm making an interactive CD for a client at work.
The CD is almost finished but we have a huge problem in the deployment aspect.

I was going to make th SWF into .exe and .app (pc and mac) with Zinc 2.5. So I downloded the trial to make the tests and to show it to the customer on how it would look like.

A collague said he had the full version on his PC so I was going to make the design in Flash and him the deployment. I was relying on that but we shouldn't have...

Now, it turned out that the license expired and he can't make the applications.

Can I ask any of you to make me a huge favour and receive my SWF and convert it into .exe and .app and send it back to me?? pleeease?

I know I should solve my problem alone but I have to hand in the CDs on Monday and i'm running out of time.
I'm already laearned a lesson from this but I still have the deadline running behind me and reaching me

Do U A Favour If You Help Me On This Script
i don't know how can you make 7 frames of questions and answers, with one frame that gets random selection of these 7 frames without repeating each other.

Very Quick Favour To Ask..
Not sure if this is the right section to post...
I used the very fine Kirupa Email/PHP toot to make a contact form for my site and just wanted someone to test it by filling it out.
Works fine for me, but just want to make sure it works for others.

Thanks in advance.

Diginuts.com

Very Quick Favour To Ask..
Not sure if this is the right section to post...
I used the very fine Kirupa Email/PHP toot to make a contact form for my site and just wanted someone to test it by filling it out.
Works fine for me, but just want to make sure it works for others.

Thanks in advance.

Diginuts.com

Very Quick Favour To Ask...
Could someone quickly test my sites Email contact form.
There are just 3 fields to fill: Name, Email (don't have to put it if you don't want to) and comments.
Works fine for me, but just wanted to be sure it works for others.

Many thanks in advance.

Diginuts

3mp

Massive Favour For ?20, Or I Will Go Mad
Hello,

I need help solving this problem and I have posted the question before and I have recieved answers, thank you for those, but I am bit confused with it and can't make it work( I am only a begginer) so after another week I have given up and I can't spend anymore time on it or I will go crazy.

so if anyone is willing to do it for me in the next 24hours I will be willing to pay that person ?20.

I understand that this forums don't work that way but if anyone has the time and is willing to do it they will be doing me a massive favor!!!


the problem is:

if you view the website I am building http://www.rockq.com and click the past projects button when you click in the icons you can see a new window that loads an swf file. how can I get this windows to be W:400 h:500.?

I hope someone can help

I will send my files directly to the person that is willing to help me!!

thank you everyone!

Rock q

here is the code I am using

on carousel

Code:
Code:

import mx.utils.Delegate;

var numOfItems:Number;
var radiusX:Number = 300;
var radiusY:Number = 75;
var centerX:Number = Stage.width / 2;
var centerY:Number = Stage.height / 2;
var speed:Number = 0.01;
var perspective:Number =130;
var home:MovieClip = this;

var tooltip:MovieClip = this.attachMovie("tooltip","tooltip",10000);
tooltip._alpha = 0;

var xml:XML = new XML();
xml.ignoreWhite = true;

xml.onLoad = function()
{
   var nodes = this.firstChild.childNodes;
   numOfItems = nodes.length;
   for(var i=0;i<numOfItems;i++)
   {
      var t = home.attachMovie("item","item"+i,i+1);
      t.angle = i * ((Math.PI*2)/numOfItems);
      t.onEnterFrame = mover;
      t.toolText = nodes[i].attributes.tooltip;
      t.linkURL = nodes[i].attributes.link;
      t.icon.inner.loadMovie(nodes[i].attributes.image);
      t.r.inner.loadMovie(nodes[i].attributes.image);
      t.icon.onRollOver = over;
      t.icon.onRollOut = out;
      t.icon.onRelease = released;
   }
}

function over()
{
   home.tooltip.tipText.text = this._parent.toolText;
   home.tooltip._x = this._parent._x;
   home.tooltip._y = this._parent._y - this._parent._height/2;
   home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
   home.tooltip._alpha = 100;
}

function out()
{
   delete home.tooltip.onEnterFrame;
   home.tooltip._alpha = 0;
}

function released()
{
   getURL(this._parent.linkURL, "_blank, 700, 650 ");
}

function moveTip()
{
   home.tooltip._x = this._parent._x;
   home.tooltip._y = this._parent._y - this._parent._height/2;
}

xml.load("iconsg.xml");

function mover()
{
   this._x = Math.cos(this.angle) * radiusX + centerX;
   this._y = Math.sin(this.angle) * radiusY + centerY;
   var s = (this._y - perspective) /(centerY+radiusY-perspective);
   this._xscale = this._yscale = s*100;
   this.angle += this._parent.speed;
   this.swapDepths(Math.round(this._xscale) + 100);
}

this.onMouseMove = function()
{
   speed = (this._xmouse-centerX)/2500;
}


on xml file

Code:
Code:

<icons>

<icon image="icon1.1.png" tooltip="Millenium offices" link = "http://www.rockq.com/mill_info.swf"/>

<icon image="icon2.1.png" tooltip="Tea House" link = "http://www.rockq.com/thouse_info.swf"/>

Use Of Dot Notation In Favour Of TellTarget
Any ideas on why the following code works...

tellTarget("../") {
gotoAndPlay("Scene 2", 1)
}

but the following dot notation won't??

_parent.gotoAndPlay("Scene 2", 1)

Cheers!

Favour: Can Someone Publish This In Flash 7?
Hi,

I have a redirection script which needs to be used to detect the presence of Flash Player 7+. Trouble is, I've only got Flash MX, so I can only publish files up to Flash 6.

Could someone be so kind as to publish this file as 'Flash Player 7':

Link to file

Thank you very much!

Could Some Kind Soul Do Me A Favour....
The problem is this, my pc died & im in th process of ordering parts for a new one. I have a website to finnish off but the laptop im working on at the moment is Win98 and only capable of running Flash MX, not MX2004 which is what the files were created in.

Could anyone who has MX2004 re-save my files as just Flash MX and re-post them?

Please help me.........

Let me know if your up to the job and I'll send you the link.

Could Some Kind Soul Do Me A Favour....
The problem is this, my pc died & im in th process of ordering parts for a new one. I have a website to finnish off but the laptop im working on at the moment is Win98 and only capable of running Flash MX, not MX2004 which is what the files were created in.

Could anyone who has MX2004 re-save my files as just Flash MX and re-post them?

Please help me.........

Let me know if your up to the job and I'll send you the link.

Favour Asked, Standalone F4 Player
Hi all,
Any chance of someone mailing me the standalone player F4, or guiding me to a site for downloading??
Can't find the s.a. player at MM's site. I can find the plug-in's but I can't be bothered installing plug ins all the time hence the question for the player.
I would be 4ever greatfull,

Cherio

Need A Quick Favour - Converting Old Flash File Into MX Format
File is here :

http://s52.yousendit.com/d.aspx?id=3...E0GKFTFIC7KQ2K


Thankyou!

~angrymice

Decompile SWF To FLA
hi,

does anyone know if any decompilers work well, or if there is any way to go from SWF back to FLA ? my laptop was stolen and all that is left of a huge flash-site is the swf file...

any help is greatly appreciated

paul

Decompile Help
I download file .swf from a website for study how to do Action Script V2.0 by using Sothink SWF Decompiler and export to it to file .fla

After that I test run program, the result show Error. Could you please check Code for me that something wrong. and why it show Error. Because I'm new for Action Script V2.0 so I'm quite not understand well.

Please give me advise or correct Code.
Anyway, I also attached all related files.


http://www.flexmediasolution.com/TES...sourcecode.rar

Thanks in advance for your recommendation and your help.

SWF Decompile
I antecedently deleted my flv file, does anyone know of a way/program to decompile my swf file?

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.

To Decompile Swf Into Fla....
hi, today i juz d/l and tried Sothink swf decompiler, but i found that it just couldn't export the swf into fla file, but only could extract the source such as graphics, and scripts etc. Anyone knows which software can do even better than sothink? All i want is the fla source file. I don't mean to copy and paste the other's works, but wishing get down to understand how the effects done and learn from it...

Decompile .fla
I have a client who has a template that they want to use. I used my decompiling software to try to get the files so i could edit them but the program didnt decompile the ones i needed. Is there another way to get all these files out of a template with no library?? any help is much appreciated, thank you

Decompile .swf
Can anyone tell me how to decompile a .swf file? I lost the .fla and i need to edit some text on that file. I am sure there is a way or some program that can do it.
PLEASE HELP.


Decompile A Swf
how do i decompile a swf so ican modify it on flash again?

Golden Dragon Is Coming Soon...

A New Swf Decompile Software
the soft name is dswf

it can decompile most swf file, why not try it?

you can free download here

http://pinoccc.top263.net/down/dswf_0_0_0_23.zip

Can Someone Help Decompile An SWF File Please?
Hey all,

I have an SWF file that I need decomplied so I can get some actionscript code out of it and find the URL path to 2 parts of it internally.

Would anyone be able to help me, it should be simple, I'm just not experienced with decompiling an SWF file, and I am on a Mac, the PC decompilers are more in-depth and allow more to be seen.

If anyone can help, please send a message here or IM me on yahoo messenger: aggro70 and I'll explain the 2 little details I need.

Thank you very much for any help that anyone can give me.

Brian

[F8] I Need To Know How To Decompile A .swf Without Paying
i have one of my swfs and my .fla file was lost so i want to be able to decompile it but i dont want to re do the whole thing and i also dont want to pay money help would be greatly appreciated

Decompile Nightmare
I am trying to help a friend with a project. Long story short--original developer's computer crashed, no backups. The only files left are .swfs on an executable CD-ROM. The exectuable can't be used online, it's just for the CD-ROM format, so at this point everything has been decompiled and corrected except this ONE FILE that is giving me fits.

I'm more of a designer than a programmer; my understanding of ActionScript is limited. I've been trying to figure this out using the 'Learning AS2.0 for Flash 8' book, but while I think I kind of understand the syntax I still can't figure out the problem.

I can't attach the decompiled file and the finished .swf (so you can see how it should work) to this post as a .zip because they're too big. If anyone is willing to take a look at them and at least give me some direction, they would have my undying gratitude, please respond and I'll send you the files. Thanks!

Amy

Decompile Issue
Is it worth trying to protect as3-code from beeing decompiled?

If so, whats the tool of choice?

Decompile Flex
What is the best product for converting swf made with flex to fla?
thanks

Wants To Decompile An Exe File To SWF
Hi

I wanna to decompile a application(flash projector or simply Exe) file to swf file. Can anybody tell me any Decompiler softwarwes for this. It will be more usefull for my upcoming projects.


Thank you all!!

Can I Decompile Your Flash?
Hi, im a beginner of flash. I hate those codes to describe flash, but i like joining up those elements. I know I am strange and thus i cant learn valuable things in flash. So i "invent" a good method in flash learning. First I googled "decompiler" and download one of them which i think is good enough(http://www.sothink.com/product/flashdecompiler/index.htm)
. Then i decompiled some swf(on web) to see how they make it. Then I joined the elements up, the swf palyed well, I win. So, i retry and retry, things becomed no more difficult to me. I think my learning method was advanced until someone my friend told me: "stop do that, you've offended the flash author! " I dont quite understand her words but I couldnt continue my work. I only want to learn some flash, I dont want to offend anyone else. I dont know if my friend's suggestion is true? It's a pity I cant learn my flash with decompiler, I hope someone bigbody could give me some advice! Thank you!

AS 2 Protect From Decompile
Hai All,


I am in urgently required to know is there is any tool or script to protectswf file from decompile .i want implement in a project now ,if any one kown about it kindly say me .

thanks in advance

Regards

Ranjith

Decompile One Of My Movies
Would anyone with a Flash decompiler be able to do me a favour?

I created a simple flash animation (currently visible on http://www.avoncrusade.co.uk) but I cannot find the original .fla. I'm working from home (with a bad cold) and can't find it. Nobody at the office seems to be able to help either.

I'm working on another little movie for a sister site to Avon Crusade and I could really use the animated logo from that swf, it will save me a heap of time!

Can anyone help?

Foamcow Heavy Industries - Web design and ranting
Toccoa Games - Day of Defeat gaming community
Target Marketing Communications - Advertising, Direct Marketing and Public Relations
"I'm making time"

Decompile A FlashPaAper
Does anyone know how to decompile de content of a FlashPaper SWF?

I dont mind about the FP interface itself but the content itself.

Tha thing is I have an old program form aking maps that has no export options, only printing. When i sent the maps to the simulated printer, FP mantains what this software sends to the printer as vectors which is very convenient.

So, is there any way to decompile or modify the content of a FP?

thanks in advance

Decompile Components...
Is there any way to de-compile a component - or is the code fully compiled and safe from users stealing it!!

m.

How To Protect Swf From Decompile
Hi,

Please help me, how to protect swf file from decompile.
which code should I insert fla to protect swf from decompile

Decompile 2 Swf Files
Hi,

Can someone decompile two swf files I have to the fla format? It's in the file "To decompile.zip".

Thanks,

Kepler

Flash Security From Decompile
--------------------------------------------------------------------------------

I have A Problem.
Swf Files Decompiled.
I Need A Way To Protect SWF File From Decompile.

Help Me !!!!!!!!!

Digital Clock And Decompile
hi,
i know that moderators are not so happy to talk about the subject of this 3d but,,,i beg your pardon...
well i've browsed all the net for a long time to look for the source FLA of this digital clock(it's attached) but i couldn't help it. so i decided to install a decompiler. my need is just to change the color of sticks (black-->white) not much more. but,,,when i explort to flash the swf file and open it in mx2004 i get an error. otherways i can read the AS included in the swf but couldn't build the original flash from that!
any help is welcome,,,
bye!

New Decompile Protection For SWF Files
The developer ******* located at www.*******.com is getting ready to release the BETA version of Flash Encrypt. I have played with it myself and found it to be very usefull. There is some great information on there for Flash protection. Check it out. Thought it might be usefull to some of you looking to protect your work.

Prevent The Site Being Decompile
Is there any ways to do that? How to avoid people decompile your site after you have work such a long hours on it?

Decompile Shockwave Files?
I believe this is the right place if not i am sorry.

I was wondering if its possible to decompile shockwave files like .cct? if not is there anyway to unprotect a cct file and extract it? I've looked around on google and hadn't had any luck. Thank you for the response

[F8] Challenge: Can You Figure Out How To Decompile This?
No, I'm not asking for you to decompile someone's Flash program for me. As you'll see at the site, it's nothing special ( just the word "flyyyyyyy" ). This is an attempt I've been developing at making a Flash SWF that is unable to be decompiled.

I'd like for anyone interested to try to decompile this and post here the code that is inside. It's only a couple lines but it should be able to prove whether or not you did find a way to decompile it.

I hope none of you can!

http://www.seesaw-server.net/decompile/index.php


Good luck

Prevent Decompile And Encrypt AS
Hi

I have secure data presenting in a MC which needs login with mysql. I knew there are many decompilers. May I ask how can I prevent the swf being decompile and get the protected data directly?

Also, is there any method to encrypt the AS source code?

Thanks

Decompile A Compiled Clip?
hi, can i decompile a compiled clip? i want to use a drop down component (64k!), but want to change the colour of the arrows. if i drag teh halo theme into my movie then it bumps it up to 100k!
cheers

Decompile A SWF File From A Server
Anyone know a good way to fix or update an existing web site for someone who doesn't have the orginal fla but the swf is still on the web server. I've heard of this Gordon decompiler application but I'm not sure I know how it works. Does anyone have any insight? Jeffro

Decompile Swf - Great Learning Experience
Hey swf decompiler's are in disguise a great teachers for flash newbie's like us . Through which we can extract the content and the most complicated feature action script too for our reference and through which we can learn how the action script is working.

Last wek i saw a blog of such help too http://pixeltechnologies.sirlook.com it has been great help to me .

HDD Failure Nightmare: Need To Decompile Files From Web
Hi there

A couple of months ago, I had a bit of a nightmare in that my harddrive failed, losing an entire year's work. I have so far managed to get by without having to pay the £1000 quoted for getting the data professionally retreived, but have come up with a problem today.

I created 2 swf files for the homepage of a client's new website. They have now decided they want some changes to these yet I no longer have the .fla file to make the changes.

Can anyone help me? Is there a decompiler I can use without having to spend a lot of money? Can some kind person perhaps do this for me?

Both files can be found at:
http://www.m23u-web-design.co.uk/

Preventing Decompile / Code Reading
Hey all,
I was just wondering if anyone knew of a good solution for encrypting AS3 files to prevent decompiling and code-reading...not for SWC files but for an SWF or rather the AS3 classes compiled therein. I really don't care if anyone gets the minimal graphics or even most of the scripts; but I'm worried about someone figuring out how to hack the database my SWF is tapping into by deducing what the variables it's sending are (as it is I obfuscate everything sent over the wire to make it not-human-readable).
I looked at Amayeta, but they don't seem to be up to AS3 yet. Any thoughts? You'd think encryption would be a built-in compile option already...
Cheers,
Josh

HELP Lost All My Work Need To Decompile Movie
Help! I am in desperate need to decompile my swf movie because my flash crashed before i could save it, now all i have is the test movie. I really don't and will not pay 80$ just to buy a decompiler for one file. Can someone do this for me? I dread having to spend another 2 hours coding again. Please?

Copyright © 2005-08 www.BigResource.com, All rights reserved