Re: [Flashcoders] coding a world clock

2007-09-06 Thread Jim Berkey
I did something for a client that may be helpful - It's in AS2 - easy to modify, add to, etc.: http://jimbo.us/lab/worldClock.html Jimbo http://jimbo.us - Original Message - From: Corban Baxter [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, September 06, 2007

Re: [Flashcoders] coding a world clock

2007-09-06 Thread Jim Berkey
Note to Jim Berkey: First, thank you for the link. Nice touch with the iconic location graphics. Second, I'm getting a 404 for the worldclock source file. Just FYI. Regards, -Keith http://keithreinfeld.home.comcast.net Sorry blush had to uncloak it in Dreamweaver before I uploaded. Should

Re: [Flashcoders] coding a world clock

2007-09-06 Thread Jim Berkey
It's in CS3 now. I'll save a Flash 8 version and put it up. Check in 10 minutes. Sorry. Also, code is in the separate mc's for each clock, not on the first frame, it's an old piece I haven't updated. Jimbo http://jimbo.us - Original Message - From: Keith Reinfeld [EMAIL PROTECTED]

Re: [Flashcoders] swf obfuscation - new challenge

2007-07-23 Thread Jim Berkey
found. more work, . . . I must move outside another box somehow. Thanks, jimbo - Original Message - From: Rákos Attila [EMAIL PROTECTED] To: Jim Berkey flashcoders@chattyfig.figleaf.com Sent: Monday, July 23, 2007 9:49 AM Subject: Re: [Flashcoders] swf obfuscation - new challenge

Re: [Flashcoders] RE: obfuscation swf !

2007-07-18 Thread Jim Berkey
Ok, yesterday was 7 minutes of work to capture . . . another try today. Is the wall higher yet? http://jimbo.us/Games/jumpPeg/ jimbo ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] RE: obfuscation swf !

2007-07-18 Thread Jim Berkey
Thanks Ian, your ideas look promising . . . Thanks Frederic, that's on the same vein as Mark's link to Kerckhoffs' assumption - btw, I think I can defeat the way you found it, Frederic, with one more layer of php . . . maybe . . . (you got to 'path' but not to 'rainbow' - hmmm) Seems we

Re: [Flashcoders] obfuscation swf !

2007-07-17 Thread Jim Berkey
If the viewer cannot get your swf, they cannot decompile it: http://jimbo.us/swf_protect/ - Original Message - From: Bart Wttewaall [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Sunday, May 07, 2006 8:10 AM Subject: Re: [Flashcoders]

Re: [Flashcoders] obfuscation swf !

2007-07-17 Thread Jim Berkey
Instead of answering every note that claims to have 'taken' the game, don't write a note - prove it - You do not have the game, you have a nearly empty container file :) You have the game? Congrats - upload it to your site and show us! jimbo - Original Message - From: Jesse

Re: [Flashcoders] obfuscation swf !

2007-07-17 Thread Jim Berkey
in that url ? http://jimbo.us/Games/mahJongg/advert.php?data=content so : $ curl -LO http://jimbo.us/Games/mahJongg/advert.php?data=content $ mv advert.php?data=content ad.swf $ swfdump -a ad.swf Interesting content. Is this trick so hard to find ? Le 17 juil. 07 à 18:06, Jim Berkey a écrit

Re: Re[2]: [Flashcoders] obfuscation swf !

2007-07-17 Thread Jim Berkey
Congratulations, I obviously have more holes to plug, my methods are no good. I will continue trying . . . jimbo - Original Message - From: Rákos Attila [EMAIL PROTECTED] To: Jim Berkey flashcoders@chattyfig.figleaf.com Sent: Tuesday, July 17, 2007 1:48 PM Subject: Re[2]: [Flashcoders

Re: [Flashcoders] swfobject and AS3/Player 9

2007-07-14 Thread Jim Berkey
! jimbo *** REPLY SEPARATOR *** On 7/13/2007 at 6:35 PM Count Schemula wrote: Thanks for that. I checked the swfobject website and did not see any information on F9/AS3 testing and upgrading. Did I just miss it? On 7/13/07, Jim Berkey [EMAIL PROTECTED] wrote: Of course

Re: [Flashcoders] swfobject and AS3/Player 9

2007-07-13 Thread Jim Berkey
Of course, if the swf is compiled F9/AS3, you would test for F9. You do know that the express install has changed for F9? Now you don't include the express install code in your main swf, but use the provided swf - expressinstall.swf - and reference it this way: div id=flashcontent

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-28 Thread Jim Berkey
in AS2, but not AS3, so I'm thinking it's a bug in Flash. On 6/27/07, Jim Berkey [EMAIL PROTECTED] wrote: funny, mine does . . . your setup looks the same? http://jimbo.us/lab/buttonAs3.fla http://jimbo.us/lab/buttonAs3.swf *** REPLY SEPARATOR *** On 6/27/2007 at 8:39 AM

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-28 Thread Jim Berkey
Fumio, Can you explain using' InteractiveObject.mouseEnabled' to allow a mc inside a mc acting as a button a little more? I have a mc called button_play, with the three frames (_up, _over, and _down), in the over frame, instead of a graphic, I placed a mc, gave it instance name over_mc, and on

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-28 Thread Jim Berkey
the error tells you. Therefore InteractiveObject.mouseEnabled for over_mc cannot be set. trace(btn_play.over_mc); // Output: null The statement should be placed in the second frame of the btn_play, or inside the over_mc itself. _ Jim Berkey wrote: Can you explain using

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-28 Thread Jim Berkey
the over_mc itself. _ Jim Berkey wrote: Can you explain using' InteractiveObject.mouseEnabled' to allow a mc inside a mc acting as a button a little more? I have a mc called button_play, with the three frames (_up, _over, and _down), in the over frame, instead of a graphic, I placed a mc, gave

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-27 Thread Jim Berkey
One way to instantiate a mc as a button in as3 is: my_btn.addEventListener(MouseEvent.CLICK, myFunction); my_btn.buttonMode = true; function myFunction(event:MouseEvent):void { //do something } jimbo *** REPLY SEPARATOR *** On 6/26/2007 at 9:40 PM Adam Pasztory wrote:

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-27 Thread Jim Berkey
to that provided in previous versions of ActionScript for movie clips used as buttons). Can anyone else get this working in AS3??? On 6/27/07, Jim Berkey [EMAIL PROTECTED] wrote: One way to instantiate a mc as a button in as3 is: my_btn.addEventListener(MouseEvent.CLICK, myFunction

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-27 Thread Jim Berkey
Hah, yes, it does work, just need to addChild: my_btn.addEventListener(MouseEvent.CLICK, myFunction); my_btn.buttonMode = true; function myFunction(event:MouseEvent):void { //do something } addChild(my_btn); jimbo *** REPLY SEPARATOR *** On 6/27/2007 at 7:14 AM Adam

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-27 Thread Jim Berkey
://www.pasz.com/xfer/FinalAssets.zip On 6/27/07, Jim Berkey [EMAIL PROTECTED] wrote: Hah, yes, it does work, just need to addChild: my_btn.addEventListener(MouseEvent.CLICK, myFunction); my_btn.buttonMode = true; function myFunction(event:MouseEvent):void { //do something } addChild

Re: [Flashcoders] MovieClip Buttons in Flash CS3 ActionScript 3

2007-06-27 Thread Jim Berkey
it's a bug in Flash. On 6/27/07, Jim Berkey [EMAIL PROTECTED] wrote: funny, mine does . . . your setup looks the same? http://jimbo.us/lab/buttonAs3.fla http://jimbo.us/lab/buttonAs3.swf *** REPLY SEPARATOR *** On 6/27/2007 at 8:39 AM Adam Pasztory wrote: Didn't work

Re: [Flashcoders] Best way to control game character animations

2007-05-29 Thread Jim Berkey
If I'm understanding the question, I just read a blog about this . . . possibly Sprite sheets + scrollrect is what you are looking for?? http://mikegrundvig.blogspot.com/2007/05/as3-is-fast.html *** REPLY SEPARATOR *** On 5/29/2007 at 11:54 AM Bob Wohl wrote: can you set their

Re: [Flashcoders] Actionscript 3.0 help w/ simple HelloWorld

2007-03-22 Thread Jim Berkey
The constructor traces fine in the output window, but the TextField does not show. What have I done wrong? My Export settings in F9 As3 preview are for AS 3.0 and FP9. In later scripts, I tried moving the textfield, changing the color, changing the stage color to be sure it wasn't matching the

Re: [Flashcoders] Problems with Key event

2007-03-21 Thread Jim Berkey
var keyListener:Object = new Object(); keyListener.onKeyDown = keyPressed; Key.addListener(keyListener); function keyPressed():Void { trace(foo); } All letters and numbers work. Insert and Shift works.. But not Delete, Home, End, PageUp, PageDown, Enter, etc.. What am I doing wrong??? I

Re: [Flashcoders] How to run an external exe file

2007-03-21 Thread Jim Berkey
On 3/21/2007 at 11:39 AM Steve Abaffy wrote: Hello, I am creating a Flash exe to run off of a CD. I have a second exe that I want to run from the first. The second exe runs fine by itself, but when I start it from the first all the resources of the second exe file do not load, it looks as

Re: [Flashcoders] Very large html document created by Flash 8 Publish

2007-01-31 Thread Jim Berkey
All of the text and links used in a swf are by default published as comments in an html page outputted by the Flash IDE. The reason is to show that data to Google and other search engines. All of those comments may be deleted without any adverse effects to the swf or viewed page. And Google

RE: [Flashcoders] Very large html document created by Flash 8 Publish

2007-01-31 Thread Jim Berkey
recently happened? I will be sure to look into Geoffs SWFObject Many thanks Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jim Berkey Sent: 31 January 2007 13:25 To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Very large html document

Re: [Flashcoders] very basic movie freezing up (???)

2007-01-31 Thread Jim Berkey
Stops for me on frame 10, just like you said, only in browsers. Never saw anything like that. I even copied the frames to a new flash file, with no change. *** REPLY SEPARATOR *** On 1/31/2007 at 12:10 PM Max Kaufmann wrote: The following movie freezes up for no discernable

Re: [Flashcoders] YouTube Performance

2007-01-10 Thread Jim Berkey
Do you have any sound events or progressively downloading sounds independent of the sound in the flv? Flash sounds seem to prevent the player from dropping frames as needed to keep the flv playing seamlessly. jimbo *** REPLY SEPARATOR *** On 1/10/2007 at 3:32 PM Sumeet Kumar

Re: [Flashcoders] flashing first frame

2006-12-12 Thread Jim Berkey
A quick-n-dirty way to prevent the first frame from loading before the getURL command happens is to add a few empty frames after the getURL command, so that the swf has somewhere to go while the page takes its sweet time to open. jimbo *** REPLY SEPARATOR *** On 12/12/2006 at

Re: [Flashcoders] swf and domains, what domain made the call?

2006-10-28 Thread Jim Berkey
Would this do what you are looking for? http://www.mochibot.com jimbo *** REPLY SEPARATOR *** On 10/28/2006 at 6:24 PM Diversity wrote: Anyone with any suggestions? Diversity wrote: With flash and its cross domain security is there anyway for me to read what the calling

[Flashcoders] Thanks ---Moving to AS2, array always undefined

2006-10-13 Thread Jim Berkey
I lurk here to learn code, but I have to tell you, I stay because of Dave Watts and the 'non' control of the list. This morning, looking forward to a rough day of work, this thread caused laughter that led to near tears, and the weight of my day is suddenly lighter. Thank you for not punishing

Re: [Flashcoders] flv not playing in IE with Flash 9

2006-10-06 Thread Jim Berkey
I notice that you are using: so.addParam(wmode, transparent); Do you need that? I've heard that the wmode paramater can do strange things to some browsers? *** REPLY SEPARATOR *** On 10/5/2006 at 1:49 PM Ammon Lauritzen wrote: Ok, simple issue really, and I seem to have found

Re: [Flashcoders] How to get the URL of the page that a moive is embedded on?

2006-09-15 Thread Jim Berkey
http://www.mochibot.com/ *** REPLY SEPARATOR *** On 9/14/2006 at 1:45 PM Jeff Mastropietro wrote: I need a 100% effective way to get the URL of the page that a flash movie is embedded in. It cannot rely on JavaScript. Any ideas? We are trying to track the pages that are

RE: [Flashcoders] Scrubbing offline flvPlayback with code

2006-09-12 Thread Jim Berkey
If the video is short, and is playing from a cd, why not make every frame a keyframe when you encode the flv? jimbo *** REPLY SEPARATOR *** On 9/12/2006 at 1:18 PM Danny Kodicek wrote: We wrote one recently for a client. You can download it from here:

Re: [Flashcoders] getURL and IE 6.0.

2006-09-04 Thread Jim Berkey
Try it without the second paramater: test_btn.onRelease= getThatURL; function getThatURL() { getURL(http://www.example.com/script.php;); } *** REPLY SEPARATOR *** On 9/4/2006 at 4:04 AM Adrian Ionut Beschea wrote: Hello, I want to use getURL to open the exact same window

Re: [Flashcoders] getURL and IE 6.0.

2006-09-04 Thread Jim Berkey
I need the browser to open a new window but if I press my button multiple times I want to get to that same window. Ahhh, an interesting concept. I'm surprised that it works in Firefox. Does it open a new browser with window, or a new tab? Maybe when tabbed IE 7 is out this would be

RE: [Flashcoders] Vob to FLV without Sound

2006-09-02 Thread Jim Berkey
I use Ulead Video Studio 10 for this. I import Vob, convert to mpeg1, then with the Flash Video Encoder I can convert mpeg1 to flv. jimbo *** REPLY SEPARATOR *** On 9/2/2006 at 1:18 PM Sönke Rohde wrote: Hi, Thanks for clearing this up but I expected Squeeze to handle this

RE: [Flashcoders] Flash effect

2006-08-25 Thread Jim Berkey
There is a tute on this very thing here - check out the Creating 3D Carousels - their nav is a 3-d carousel of players, rotating on an oval. Not terribly difficult, and a very kewl look. http://gotoandlearn.com Currently you need to download the flv tutes and watch. jimbo *** REPLY

Re: [Flashcoders] (no subject)

2006-08-19 Thread Jim Berkey
You can change that and the other text strings, and the icons in a standalone exe projector, (http://www.angusj.com/resourcehacker/) but I don't believe you can change it in the users flash player. jimbo *** REPLY SEPARATOR *** On 8/19/2006 at 11:17 PM [EMAIL PROTECTED] wrote:

Re: [Flashcoders] desperate! works locally, not on server

2006-08-11 Thread Jim Berkey
Many times this can be caused by case differences - locally MySwf.swf and myswf.swf are the same, but on the server, they are not. Maybe check the case of all the links? jimbo *** REPLY SEPARATOR *** On 8/11/2006 at 6:24 AM Lisa Haitz wrote: I was told this is where the

Re: [Flashcoders] Movement in an oval shape

2006-08-10 Thread Jim Berkey
Check out the '3d Carousels' tutorials http://www.gotoandlearn.com/ jimbo *** REPLY SEPARATOR *** On 8/10/2006 at 2:05 PM Paul Steven wrote: I have written some code to move some stars in a circle. This is a snippet of the code: vStar_Object._x =

Re: [Flashcoders] Components in Flash 4/MX

2006-07-27 Thread Jim Berkey
This might help: http://www.communitymx.com/content/article.cfm?cid=A06B3C7D7B74030D jimbo *** REPLY SEPARATOR *** On 7/27/2006 at 6:42 PM Weyert de Boer wrote: Does anyone know some good resources how to make components for Flash MX/4 ? Yours, Weyert de Boer

Re: [Flashcoders] Components in Flash 4/MX

2006-07-27 Thread Jim Berkey
Here's another by Joey Lott - possibly a duplicate of the first link: http://www.person13.com/articles/components/creatingcomponents.html *** REPLY SEPARATOR *** On 7/27/2006 at 6:42 PM Weyert de Boer wrote: Does anyone know some good resources how to make components for

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread Jim Berkey
My understanding is that it is not possible to make the current browser window fullscreen via any code. It is possible to open a new browser window full screen via pop-up, but any browser pop-up blockers would stop this ( google for 'javascript fullscreen') - so in effect, there is no

Re: [Flashcoders] Wierd Problem with ftp and flash

2006-06-06 Thread Jim Berkey
If a flash 8 swf uploaded properly (binary), then the v.7 swf probably would have uploaded binary also, I would think - most servers want 'passive transfer' used, you might check that setting. *** REPLY SEPARATOR *** On 6/6/2006 at 9:29 AM Tom Haschenburger wrote: So, I

Re: [Flashcoders] _url

2006-05-26 Thread Jim Berkey
There is no easy way to totally protect the contents of a swf, but you can easily keep hot-linkers and swf downloaders from success: http://jimbo.us/swf_protect/index.html Of course, it's still pretty easy to decompile most swf's, since it is an open format. *** REPLY SEPARATOR

Re: [Flashcoders] FLV preloading question

2006-04-17 Thread Jim Berkey
My understanding is that preloading implies that you are loading the entire movie before playing, whereas buffering would be to load a small amount before starting a progressive stream playback. I think that by definition, if you are using progressive streaming flv's, you want to size them so

Re: [Flashcoders] Re: Q: Flash Object vs UFO for flash detection and aseolas workaround

2006-04-15 Thread Jim Berkey
Sounds wonderful, why don't you take it a step beyond words and show us js dummies how that would be done? We'd all worship at your shrine. jim - Original Message - From: Jim Kremens [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Saturday, April

Re: [Flashcoders] CSS with TextArea

2006-03-22 Thread Jim Berkey
I use this with good success: //init TextArea component myText.html = true; myText.wordWrap = true; myText.multiline = true; myText.label.condenseWhite=true; /**/ //load css myStyle = new TextField.StyleSheet(); myStyle.load(fla.css); myText.styleSheet = myStyle;

Re: [Flashcoders] Question for XML Style Junkies

2006-03-16 Thread Jim Berkey
I don't know a ton about xml, but I use p and p class=headline and br / and hr / and a href=http://somewhere.com;Somewhere.com website/a tags directly in the xml file amongst text without problems. a separate css file defines the elements. I've never used the CDATA tags or seen the need for

Re: [Flashcoders] multi-threading / xml progress meter solutions?

2006-03-02 Thread Jim Berkey
file and pctLoaded traces NaN, and my_xml.getBytesLoaded traces 0 the entire time the file is loading. Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Jim Berkey Sent

Re: [Flashcoders] multi-threading / xml progress meter solutions?

2006-03-01 Thread Jim Berkey
I found this xml dynamic preloader in the flash 8 docs that works like a charm. You need to tweak the location of the preloader bar, and the name of your xml file, but it's pretty sweet for larger xml loads. var barWidth:Number = 200; var barHeight:Number = 6;

Re: [Flashcoders] way to get window.location from flash?

2006-03-01 Thread Jim Berkey
Sounds more like you might want a tracking service embedded in your swf, like this one: http://www.mochibot.com/ - Original Message - From: Alan Queen [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 01, 2006 2:16 PM Subject: Re:

Re: [Flashcoders] sound problem

2006-02-23 Thread Jim Berkey
Do you mean in a 'tabbed' browser, so that the tab with the sound on it stays active after moving to another tab? That's the only time I've encountered that. - Original Message - From: Thomas Arnoldi [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, February 23,

Re: [Flashcoders] Loading Swf files in site (protectingbandwithfromother sites)

2006-02-20 Thread Jim Berkey
sorry, I read too fast, this won't work with submitted swf's if you can't get into them. Might try to see if you created a container swf that loaded the submitted swf might work? How about if you put a bit of actionscript in your swf to prevent it from being displayed on any other url? It's

Re: [Flashcoders] FLV not showing, please help

2006-01-26 Thread Jim Berkey
Can somebody please take a look at my code. The flv doesnt show, but the audio I do hear. Not sure if this is what you are experiencing, but I do know that a version 8 flv displayed in a version 7 browser plug-in will play audio with no video.

Re: [Flashcoders] Frame or duration limit on FLV

2006-01-18 Thread Jim Berkey
I've got a project with roughly 150 MPEG videos (anywhere from 3-20 minutes each) that I'm preparing to convert to FLV. I'm aware of this tech note regarding the 16,000 frame limit for .fla/.swf ( http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_14437 ) but my client just

Re: [Flashcoders] [OT] Color Scheme Websites

2005-12-08 Thread Jim Berkey
Maybe this one? http://www.colorschemer.com/ - Original Message - From: mika [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, December 08, 2005 8:26 AM Subject: [Flashcoders] [OT] Color Scheme Websites Hello I once saw a link on the

Re: [Flashcoders] Spinning wheel

2005-11-24 Thread Jim Berkey
Here's a google link you might find some useful info at: http://int.cysd.k12.pa.us/mummert/wof/wof.swf http://int.cysd.k12.pa.us/mummert/wof/wof.fla - Original Message - From: quinrou . [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday,