Scripting Flash

I have not been able to find a scripting forum for Flash, so please forgive me if this is the wrong forum...
Some of you might have noticed the existance of Script Bay.
It is a free panel for writing and running scripts and it works in the many of the CS programs including Flash. It currently supports ExtendScript and Javascript.
As you might know, the only scripting language that Flash (the application) supports is Javascript. I am implementing AppleScript support in Script Bay for InDesign, Illustrator, and Photoshop. These apps have native support for these languages, so AppleScripts can be used to control the apps.
It is possible to enable support of AppleScript (and maybe VB) in Flash and Fireworks as well, but such support would be of limited use, because the app cannot be controlled as there is no built in support for these languages. It would be possible to control external applications (such as other CS apps, the Finder, system events, etc.). My question is: would such functionality be useful or not?
You can let me know your opinion using this really short survey.
Any responses would be very much appreciated!
Thanks,
Harbs

No, that's not what I mean at all.
I'll use an example or two from InDesign which I'm more familiar:
Imagine you have a document (or set of documents) which have many images which need to be processed in some way before the document is exported to pdf (like resampling or have some filter applied, etc.). You really need to invoke the scripting interface of Photoshop from InDesign to have this processing done. Now technically, this can be done using BridgeTalk, but just using applescript: "tell application "Photoshop"... is a whole lot easier!
Another example (which is impossible using ExtendScript or Javascript alone) is batch processing a folder of documents and emailing the resulting pdfs to the correct recipients. The only way to control mail apps on Mac is by using AppleScript.
This is just two of many reasons why you'd need AppleScript while automating InDesign.
If my question is not yet clear enough: is there ever a need/use to control external apps from within Flash? Could you envision the utility of being able to control Photoshop or Illustrator while automating the creation of a swf or fla file? Could controlling Mail or Finder be useful? etc...
Harbs

Similar Messages

  • Exploits (Java Script, Flash, ActiveX) - SAP principles found where?

    Hi people!
    SAP releases support for rich Web Browser applications in Web Dynpro (Flash).
    The use of the Web Browser as FrontEnd in Business transactions will grow in the future.
    Every week we read of new exploits in applications that enriches the Web Browsers.
    It could be Java Script, Flash or ActiveX. Like this for example:
    http://www.computerworld.com/s/article/9140768/Flash_flaw_puts_most_sites_users_at_risk_say_researchers
    Some exploits has over the years been so severe that users have been recommended to deactivate the application until a solution is delivered.
    If we are dependent of the Web Browser application for important Business Transactions it becomes more problematic to deactivate it.
    I am looking for information around this area. I have not found anything in SAPNet or SDN, but I have some problems knowing where to look. I have not found this aspect somewhere.
    If you have information of official documents or URLs, please provide it in this thread.
    Cheers,
    Lasse

    Hi,
    I'm not 100% sure if this will help, but you could have a look at two places:
    SAP Security Guides: [https://websmp210.sap-ag.de/securityguide]
      There are security guides for all applications / installations giving recommendations on how to secure the systems.
    SAP Security notes: [https://websmp102.sap-ag.de/securitynotes]
    These SAP OSS notes describe security issues in various SAP components including web applications. On monthly basis security issues and their solutions are published here
    Kind regards
    Maaike

  • Can I use a 2.0 script in a 3.0 script Flash file?

    The following script is a simple photo gallery, written in Action Script 2.0. When I attempt to apply the same script in a Flash file designated as having Action Script 3.0, it does not work properly (the photos advance from frame to frame in a runaway fashion, in one continuous loop).
    Is there some reason why a 2.0 script should not work in a 3.0-specified document?
    Thanks, and here is the script:
    stop();
    btn_next.onRelease=function() {
        if (_root._currentframe==20) {
            gotoAndStop(1);
        else {
            nextFrame();
    btn_prev.onRelease=function() {
        if (_root._currentframe==1) {
            gotoAndStop(20);
        else {
            prevFrame();

    there's no easy way to convert most code.  but that's almost the same in both as2 and as3:
    stop();
    btn_next.addEventListener(MouseEvent.CLICK,nextF);
    function nextF() {
        if (MovieClip(root).currentFrame==20) {
            gotoAndStop(1);
        else {
            nextFrame();
    btn_prev.addEventListener(MouseEvent.CLICK,prevF);
    function prevF() {
        if (MovieClip(root).currentFrame==1) {
            gotoAndStop(20);
        else {
            prevFrame();

  • Action script flash

    hello
    i have made one touch screen frame using infrared for my project i am a U.G student of electronics and communication and i have made this touch screen frame to count the coordinates so i passed my coordinates to com port and i want to pass this coordinates to flash action script game called wall pong but i dont know the flash action script as i haven't studied the action script so how can i pass this coordinates to flash i can able to pass the coordinates to net port .but from that i couldn't pass it to flash game i have download the code from the internate. but i couldn't understand. what should i do??? can any one help me out??

    to communicate with any kind of non-standard hardware you will have to run some kind of virtual server that listens to your device and prepares it for flash.
    Look into WiiFlash, it manages to get Flash communicating with a WiiMote:
    https://code.google.com/p/wiiflash/
    It will certainly give you an idea how to jumpstart your won project

  • NoScript not working on FF 6, and scripts/Flash not working in FF 6

    I have NoScript installed with my FF on OS X 10.6.8. Since upgrading to FF6 NoScript seems to no longer work: scripts and Flash are blocked, yes, but I no longer have the option of allowing them either. The NoScript menue that tells me what scripts are on the page has just disappeared. I've re-downloaded NoScript and the problem persists. Has anybody else had this problem? Do you know what's causing it or how to fix it?

    Start Firefox in Safe Mode
    * http://kb.mozillazine.org/Safe_Mode
    Check and tell if its working while you are using Firefox Safe Mode.
    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes

  • Transfer Action Script/Flash animation to DVD question

    I have created a countdown clock using ActionScript/Flash that counts down to a specific date when the .swf runs.
    My client has asked  if we can take  the Flash/Action Script clock and transfer it to a traditional DVD and have it work the same as if it were still flash on the desktop.
    Is this possible?

    No serverside script needed.
    If it helps (and you have the patience) here is the code:
    //onEnterFrame allows for a function to be called every tick this.onEnterFrame = function() { //Stores the current date var today:Date = new Date(); //Stores the Current Year var currentYear = today.getFullYear(); //Stores the Current Time var currentTime = today.getTime(); //Creates and stores the target date var targetDate:Date = new Date(currentYear,10,13); var targetTime = targetDate.getTime(); //Determines how much time is left.  Note: Leaves time in milliseconds var timeLeft = targetTime - currentTime; var sec = Math.floor(timeLeft/1000); var min = Math.floor(sec/60); var hours = Math.floor(min/60); var days = Math.floor(hours/24); //Takes results of var remaining value.  Also converts "sec" into a string sec = String(sec % 60); //Once a string, you can check the values length and see whether it has been reduced below 2. //If so, add a "0" for visual purposes. if(sec.length < 2){ sec = "0" + sec; } min = String(min % 60); if(min.length < 2){ min = "0" + min; } hours = String(hours % 24); if(hours.length < 2){ hours = "0" + hours; } days = String(days);  if(timeLeft > 0 ){ //Joins all values into one string value var counter:String = days + ":" + hours + ":" + min + ":" + sec; time_txt.text = counter; }else{ trace("TIME'S UP"); var newTime:String = "00:00:00:00"; time_txt.text = newTime; delete (this.onEnterFrame); } }
    It works by syncing the clock animation to the clock/time on the local computer and then beginning a countdown.
    Not sure why the clients want to have it work on a DVD but I am tasked with finding out if it's possible.
    Many thanks

  • Multiple tabs with flash or heavy js crash firefox

    Has been may years already that this keeps happening to me if i open around 150+ tabs (depends on the content of the tabs) or if i open 20+ tabs of youtube (might happen with other video platforms too but i haven't tested that) makes firefox crash after a brief amount of time. I've been using the same profile since mid 2012 but I do make clean new installs of firefox when a new whole version comes out. My pc hardware i think is more than suitable to be able to have that ammount of tabs open (12 GB RAM triple channel ddr3 1ghz intel i7 950 @ 3.07ghz 1024MB ATI AMD Radeon HD 6800 series on w7 x64).
    I tried creating a new clean profile and opened 50 youtube tabs have all of them playing at the same time and even though at the start there was some kind of slowness for the firt 10 seconds then all was perfect and I tested it for like 5 mins and it didnt crash. Back with my profile I used the about:addons-memory to see fit here was any leak of memory from the addons but the addons consumption was really low. Although firefox itself with 150 tabs uses like between 900 and 1400mbs of memory. I've tried disabling all the add-ons and then enabling some to see if there was a conflictive add-on but i couldn't find whats causing the problem so i wanted to ask you guys if you could lend me a hand so i can finally can open as many tabs as i want without having to fear a crash.
    Here are some crash reports
    https://crash-stats.mozilla.com/report/index/ed544757-c6e5-4590-b2fa-ec3552140418
    https://crash-stats.mozilla.com/report/index/e2256729-811b-4dcd-8d6a-6d0012140421
    https://crash-stats.mozilla.com/report/index/a1648f3c-c5a4-41d9-b6fa-415cd2140430
    https://crash-stats.mozilla.com/report/index/ec77ddb5-3be7-4268-a515-7195b2140425
    I only have flash and java Plugins on and they are up to date.
    Addon list:
    Adblock
    session administration
    adblock element hider helper
    autopager
    bartab heavy
    empty cache button
    all tabs helper
    anonymox
    classic theme restorer
    spanish Venezuelan dictionary
    downloads window
    mem chaser
    menu icons plus
    multiple tab handler
    no script
    places cleaner
    restart aplication
    roomy bookmarks
    scriptish
    self destructing cookies
    site favicon in urlbar
    snap links plus
    Tab Granade
    tabmix plus
    text link
    text area cache
    wot
    xmarks

    I had/still have an issue with FF which is virtually identical to this (se https://support.mozilla.org/en-US/questions/988435?esab=a&s=&r=0&as=s).
    Mostly on script/flash heavy pages (like YouTube, Google Play, Twitter, etc) with only a small number of tabs will result in nearlly 1-1.2GB RAM usage and eventually crash. Having looked through older crash reports here is a list of the most common problems (Note: I recently tried a fresh install so don't have the Crash Report Numbers for these anymore):
    Crash Cause
    js::ScriptSource::hasSourceData() x 3
    NS_ABORT_OOM(unsigned int) x 5
    gfxContext::PushClipsToDT(mozilla::gfx::DrawTarget*) x 10
    js::AutoCompartment::AutoCompartment(js::ExclusiveContext*, JSObject*) x 7
    Of Which
    EXCEPTION_ACCESS_VIOLATION_READ x 21
    EXCEPTION_BREAKPOINT x 5
    I used to be able to run FF with almost 60+ Add-ons up to 60+ Tabs and still have it work more or less OK; obviously it could be rather sluggish and was eating into 1GB RAM or so, but it at least worked. Now I can barely run it with 53 Add-ons and less than 10 Tabs for around 30 mins to 1 hour before an inevitable crash.

  • Help creating a script for backup

    Hi everybody,
    I would like to make some backups using rman and recovery flash area on oracle10g on my Debian.
    I would like to make a full backup level 0 on Sunday and make incremental backups from Monday to saturday.The best would be to have one for hot backup and one for cold backups.
    But I am wondering how to schedule a task using rman. For example is it possible to write a script that would make the backups at a desired time executed by oracle?
    Or do I have to create a script on unix that should be executed by cron?
    You know I am really bad at scripting, but it would really help me if you could help me creating a script that would make the backup automatically on sunday at midnight and incremental eveydays until sunday.Here is the information I need to put in a script:
    #flash recovery area creation under sqlplus
    SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE = 10g SCOPE=BOTH SID='*';
    SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST = '/home/oracle/flash_recovery_area' SCOPE=BOTH SID='*';
    #setting the default variable
    ORACLE_SID=iscream;
    #connect to target database:
    rman TARGET SYS/oracle@iscream NOCATALOG
    #set the defaults values for rman
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    CONFIGURE RETENTION POLICY TO REDUNDANCY 2;
    CONFIGURE BACKUP OPTIMIZATION ON;
    Any help will be appreciated
    synthese
    hot backup
    using rman
    using flash_recovery_area
    full backup set compressed on sunday
    incremental backup set compressed from mondy to saturday
    using disk
    policy retenttion 7 days
    redondance 2

    You can backup using some unix shell scripts.
    rman is not really good one.

  • Nivo slider in a flash site..?

    I have a flash website, and an html website. I use Nivo slider on the html site as a slideshow to showcase images and tagline slides, I'm curious if anyone knows if you can put a Nivo slider slideshow in a flash site? Nivo slider uses jquery, with fairly simple html img src code and a css file, is it possible to have this in a flash site?
    Thnaks in advance!
    Donnie
    Nivo code looks something like this;
    </head>
    <link rel="stylesheet" href="Nivo_slide/scripts/nivo-slider-2.css" type="text/css" media="screen" />
    <script src="Nivo_slide/scripts/jquery-1.5.1.min.js" type="text/javascript"></script>
    <script src="Nivo_slide/scripts/jquery.nivo.slider.js" type="text/javascript"></script>
    </head>
    <body>
    <div id="slider-wrapper">
    <div id="slider" class="nivoSlider">
    <img src="Nivo_slide/images/nivo_images-tag-3.jpg" alt="" />
    <img src="Nivo_slide/images/nivo_images-weddings_1.jpg" alt="" />
    <img src="Nivo_slide/images/nivo_images-weddings_2.jpg" alt="" />
    </div>
    </div>
    <script type="text/javascript">
    $(window).load(function() {
    $('#slider').nivoSlider();
    </script>

    Flash supports a very limited number of html tags -- used in TextField objects -- the complete list can be found if you look up the htmlText property of the TextField class.  Out of what you show, only the img tags are supported.

  • Unresponsive script error without changing script?

    All of a sudden all of my websites that run the same slideshow script (Flash/XML, with image links) now get this error when clicking on one of the slideshow images to go to a specified page:
    Warning: Unresponsive Script
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: http://accessretirement.com/new/:16
    (all slideshow instances are showing the same :16 at the end of the URL, this is just one example)
    Clicking on the link DOES take you to the new page about the same time the error window pops up.
    This is happening on an iMac running 10.8.4 and a laptop running Windows 7 Home Premium.
    This error does not happen in Safari. It works just like it's supposed to.
    Really appreciate any thoughts, regular IT guy is out and I am not a developer. :-)

    I tried it without the :16 on Windows 7 (the :16 led to a page not found error).
    I find there is a long delay after clicking the Flash image before the next page loads, but no error message. I have made some modifications to my Flash configuration, so that could explain part of the difference on Windows 7, not sure about Mac.
    (1) Disabled hardware graphics acceleration in Firefox and in Flash
    (A) In Firefox, un-checked the box here and restart:
    orange Firefox button (or Tools menu) > Options > Advanced > General > "Use hardware acceleration when available"
    (B) In Flash, used this support article from Adobe: http://helpx.adobe.com/flash-player/kb/video-playback-issues.html#main_Solve_video_playback_issues
    (2) Disabled protected mode (Windows Vista/7/8)
    Used this support article from Adobe under the heading "Last Resort": [http://forums.adobe.com/message/4468493#TemporaryWorkaround Adobe Forums: How do I troubleshoot Flash Player's protected mode for Firefox?]

  • Flash to High Def Quicktime?

    Is it possible to export a linear, non-scripted Flash movie
    to a high definition Quicktime file? If so what is the proper
    export procedure?
    Thanks.

    Christopher Jennings wrote:
    > Is it possible to export a linear, non-scripted Flash
    movie to a high definition Quicktime file? If so what is the proper
    export procedure?
    File - Export , or Publish Setting / Formats - QT
    There is nothing else you can do beside the available export
    option,
    explore, isn't many there.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • FF keeps freezing. this started 3 months ago (there have been 2 updates since the update when it started) tried all solutions in forum

    FF now freezes almost every time I click a button on any website -- it worked fine until about 3 months ago. This usually resolves itself without any warnings, but sometimes get unresponsive script or plug-in (flash) warning. But it's usually quicker just to re-start FF, which usually helps. Almost every morning I get on the computer, I have an unresponsive script warning (this is usually chrome://global/content/bonding/browser). I've read forum articles, shut off hardware accelerator, use ad, script, flash blockers. However, some of my add-ons won't load -- the ones that need FF to be re-loaded. I've done this repeatedly and ad blocker, etc. won't load -- they worked before I reset FF, which I tried because nothing else was solving my freezing problem. I followed a thread to get add-ons to load and I deleted files in my profile but this didn't solve that problem (though No SCript loaded when I restarted my COMPUTER -- the others did not). Lastly, that thread was closed because the asker's problem was solved, while mine, the SAME problem, was not. This is my troubleshooting information:
    Application Basics
    Name: Firefox Version: 30.0 User Agent: Mozilla/5.0 (Windows NT 5.1; rv:30.0) Gecko/20100101 Firefox/30.0
    Crash Reports for the Last 3 Days
    All Crash Reports (including 5 pending crashes in the given time range)
    Extensions
    Name: Clean Links Version: 2.6.0 Enabled: true ID: {158d7cb3-7039-4a75-8e0b-3bd0a464edd2}
    Name: Erase Facebook ads and suggestions Version: 1.1.1.0 Enabled: true ID: jid1-UfSghNz6VhKecw@jetpack
    Name: NO Google Analytics Version: 0.6 Enabled: true ID: jid1-JcGokIiQyjoBAQ@jetpack
    Name: Video Blocker Version: 1.0.0 Enabled: true ID: jid1-3OQ5HY7YsLBV7Q@jetpack
    Name: Adblock Plus Pop-up Addon Version: 0.9.2 Enabled: false ID: [email protected]
    Name: Disconnect Version: 3.14.0 Enabled: false ID: [email protected]
    Name: Flash Control Version: 1.0.5 Enabled: false ID: jid1-sNL73VCI4UB0Fw@jetpack
    Name: Microsoft .NET Framework Assistant Version: 0.0.0 Enabled: false ID: {20a82645-c095-46ed-80e3-08825760534b}
    Name: NoScript Version: 2.6.8.28 Enabled: false ID: {73a6fe31-595d-460b-a920-fcc0f8843232}
    Name: Skype Click to Call Version: 6.11.0.13348 Enabled: false ID: {82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}
    Name: Updated Ad Blocker for Firefox 11+ Version: 0.7.7 Enabled: false ID: {4DC70064-89E2-4a55-8FC6-E8CDEAE3618C}
    Important Modified Preferences
    accessibility.blockautorefresh: true accessibility.typeaheadfind: true browser.cache.disk.capacity: 358400 browser.cache.disk.smart_size_cached_value: 358400 browser.cache.disk.smart_size.first_run: false browser.cache.disk.smart_size.use_old_max: false browser.link.open_newwindow: 2 browser.places.smartBookmarksVersion: 7 browser.sessionstore.upgradeBackup.latestBuildID: 20140605174243 browser.startup.homepage: http://www.wikipedia.org/ browser.startup.homepage_override.buildID: 20140605174243 browser.startup.homepage_override.mstone: 30.0 browser.tabs.loadInBackground: false dom.mozApps.used: true extensions.lastAppVersion: 30.0 gfx.blacklist.direct2d: 3 gfx.blacklist.layers.direct3d10: 3 gfx.blacklist.layers.direct3d10-1: 3 gfx.blacklist.layers.direct3d9: 3 gfx.blacklist.layers.opengl: 3 gfx.blacklist.stagefright: 3 gfx.blacklist.suggested-driver-version: 6.1400.1000.5218 gfx.blacklist.webgl.angle: 3 gfx.blacklist.webgl.msaa: 3 gfx.blacklist.webgl.opengl: 3 gfx.direct2d.disabled: true layers.acceleration.disabled: true network.cookie.prefsMigrated: true places.database.lastMaintenance: 1403210052 places.history.expiration.transient_current_max_pages: 26584 plugin.disable_full_page_plugin_for_types: application/pdf plugin.importedState: true privacy.donottrackheader.enabled: true privacy.sanitize.migrateFx3Prefs: true storage.vacuum.last.index: 0 storage.vacuum.last.places.sqlite: 1403118175
    Graphics
    Adapter Description: Intel(R) 82915G/GV/910GL Express Chipset Family Adapter Drivers: ialmrnt5 Adapter RAM: Unknown Device ID: 0x2582 Direct2D Enabled: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer. DirectWrite Enabled: false (0.0.0.0) Driver Date: 1-23-2005 Driver Version: 6.14.10.4020 GPU #2 Active: false GPU Accelerated Windows: 0/13 Basic Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer. Vendor ID: 0x8086 WebGL Renderer: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer. windowLayerManagerRemote: false AzureCanvasBackend: skia AzureContentBackend: cairo AzureFallbackCanvasBackend: cairo AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false Prevent Accessibility: 0
    Library Versions
    NSPR Expected minimum version: 4.10.6 Version in use: 4.10.6
    NSS Expected minimum version: 3.16 Basic ECC Version in use: 3.16 Basic ECC
    NSSSMIME Expected minimum version: 3.16 Basic ECC Version in use: 3.16 Basic ECC
    NSSSSL Expected minimum version: 3.16 Basic ECC Version in use: 3.16 Basic ECC
    NSSUTIL Expected minimum version: 3.16 Version in use: 3.16

    I turned off the accelrator months ago. That was the first thing I did. It helped some. The problem is getting progressively worse, so it seems like every upgrade in the past 3-4 months is causing the problem.

  • How can I create secondary and tertiary dropdown menus whose choices are dependant on the parent?

    Kind of a weird question; I know. I'm new to both the Adobe Developer forums, and to XMP in general.
    Here's the basic gist of what I'm trying to do:
    We've got a Group, Category, and Subcategory structure for a given variable. Obviously, the subcategories are unique to a particular category, just as the categories are unique to a particular group; so displayed as a tree:
    I.     Group_1
              1. Category_1A
                        a. Subcategory_1Ax
                        b. Subcategory_1Ay
                        c. Subcategory_1Az
              2. Category_1B
                        a. Subcategory_1Bx
                        b. Subcategory_1By
                        c. Subcategory_1Bz
              3. Category_1C
                        a. Subcategory_1Cx
                        b. Subcategory_1Cy
                        c. Subcategory_1Cz
    II.     Group_2
              1. Category_2A
                        a. Subcategory_2Ax
                        b. Subcategory_2Ay
                        c. Subcategory_2Az
              2. Category_2B
                        a. Subcategory_2Bx
                        b. Subcategory_2By
                        c. Subcategory_2Bz
              3. Category_2C
                        a. Subcategory_2Cx
                        b. Subcategory_2Cy
                        c. Subcategory_2Cz
    The subcategories are unique to their categories; just as the categories are unique to their groups. In an effort to prevent garbage coming into the metadata, and because these groups, categories, and subcategories have already been defined, I'd like them displayed as dropdown menus; Once the user has selected a group for the file, the Category dropdown would appear (or become active) and display the Category choices available only to that group, and then do the same in terms of the Subcategory.
    I'm guessing that I'll start with a closed choice, assign the values to the groups, and then write a function to display only the choices for that group in the category dropdown. Trouble is, I don't have a whole lot of JavaScript experience -- and the word I've seen tossed around in this area seems to be an Array -- so I'm wondering if I'm barking up the wrong tree. If anyone has some kind of direction to point me in, it'd be helpful.
    I'm not looking for someone to do my work for me (that's missing the point) -- this is an exercise in learning XML, Some scripting, Flash Builder, and Javascript, and I'd really like to develop it entirely myself; because I am having fun!!
    Many thanks,
    .themumm

    Do you mean the stuff from here:
    http://projects.nateweiss.com/nwdc/workcode.htm
    If so, to be honest, don't ("use it", I mean).
    It might have been a reasonable approach to this sort of thing ten years ago, but it's not a very good way of doing this sort of thing these days.
    This sort of thing is pretty easy to knock together with some HTML, JQuery to do some JS stuff and a CFC behind the scenes.
    Indeed just using some binds to <cfselect> tags would be a better approach.
    Adam

  • N82 Personal Impression (3 week use)

    General observations for anyone considering purchasing an n82. *Stuff between the asterisks indicative of my reaction *
    Firstly, I don't think anyone will deny that it's a great mobile/PDA/Smartphone for its price and size *haggle at an Aussie store for under AU$799 or grab an Asian version from eBay at around $600 including postage*. However there are a couple of things to consider before buying: -
    1. The Aussie Version (my version) comes with the following WRITE languages - English, Indonesia, and Pilipino. *Yep* It doesn't include Chinese and there's no upgrade, nor is there any commercial package that gives it Chinese compatibility according to the Nokia helpline *my issue is that it doesn't read/display Chinese*. That's despite the fact that the Asian version *imports through eBay* supports Chinese. The ramifications are obvious if you consider Chinese websites, GPS maps & navigation, eBooks and translation dictionaries that substitute Chinese characters with rectangular boxes. They really should have all n82 languages built-in or allow language packs to be installed (I have read of mods that you can do to change the phones model number and then use nokia update to load the Asian firmware but I'm a bit of a wimp unless someone's gonna guarantee that it won't void aussie warrantee *like even*). I mention this because the market is global and it will assist all future mobile sales. *anyone listening from nokia?*
    2. Please upgrade the n82 from v10.0.0.46 to v11.0.117 *hope I got the version numbers right* as soon as possible as it fixed the following glitches that I experienced: -
    a) Accidentally pulling out the stereo headphones from the 3.5mm jack while listening to music or doing other stuff no longer causes the n82 to auto reboot or hang.
    b) The sound quality of the built in Media player for mp3's appears a tad less muffled (playing via speakers is still less than ideal, with a high pitch *drill* sound when played at full volume, ie something sounds loud but it ain't the music - some older folks might not be able to discern it *wink*);
    c) Listening to music while using the Nokia GPS no longer causes the phone to hang (needs more testing as there were a few music glitches during multitasking but I gather it's caused by the memory card being accessed for both the music and the maps)
    d) According to some users on the internet this update allows the n82 to support 8GB MICRO SD cards as it updates support from fat16 to fat32 file structure (haven't tested yet). Other users have reported flaky Wi-Fi after update but I didn't have any problems. Before I forget, this phone refuses to connect to a wireless router if the SSID of the access point is hidden.
    e) The updater for the software I used was v1.4.23en. The reason I mention this is because I originally used the web installer 1.6 to auto download the latest Nokia software including the updater (I chose to use Chinese language instead of English via the installer - in the hope that it would load Chinese firmware on the phone - long shot but I thought it was worth a try *stupid*. Anyway, long story short, it loaded updater v1.3.5 *OMG* which didn't recognise my n82 so I uninstalled it) The actual update didn't take too long (it downloaded 101MB of data from the net and updated the phone - overall 20mins) Oh, I had the n82 plugged into mains power and the MICRO SD card in the slot during the update. Some users posted that you should power off the n82 after completing the update before disconnecting it from the usb port or there might be a glitch with the usb connection?
    How well does everything work?
    1. Usb file transfers are slow *fact* so some ppl suggest if you get a 8GB micro sd to use an external adapter. Bluetooth file transfer is even slower (100KB/s according to windows) but at least there's no cables *so this is my preferred transfer method*.
    2. I find at times that if you install a lot of programs on the n82, the menu system gets sluggish especially when you try to customize standby apps. At first I thought it might be a cpu issue cause there's plenty of free ram, so I checked the speed, which some programs indicate as 200Mhz *almost freaked out cause it's suppose to be over 300Mhz according to gsmarena.com*. Other users have posted that these programs don't detect the right speed, anyway, the reason I was concerned is because Realplayer will play realmedia files (both on internal memory and on micro sd) but it will regularly pause intermittently *every 5 or so seconds* for 1.5-2 seconds resulting in video being unwatchable and totally out of sync with audio *this is unacceptable given these are small 1 minute real8 encoded 320x240 clips. Placing the clips into live memory first helps turn the pauses into 0.2second hiccups-but the audio is still significantly out of sync. BTW these clips play perfectly on the win pc version of realplayer*; I find this really strange given that the default video capture of the n82 is mp4 at 640x480 30fps - playback on the default media player is just fine. *note though, playback of the same captured mp4 videos on 3rd party symbian players installed on the n82 is very jerky – don’t know what's going on*
    3. GPS Mapping is great... with a couple of reservations. *I'm hoping that the new v2 Nokia Maps will be way better*
    Pros-
    -It sure beats carrying around the ubd street directory and this one can tell you where you are in around 5minutes depending on where you are.
    -Lists points of interest, parking, restaurants, petrol stations etc.
    -Note that you can keep the backlight on while using mapping, although it's not turned on by default (go into settings)
    Cons-
    -Cursor is hard and slow to move if you are travelling and you want to see the place of interest that is coming up ahead;
    -Rivers on the map look like land (they're not defined by a different color, namely blue);
    -The route feature is only usable in a practical sense if you pay (example: assuming you don't pay for the upgrade premium service you can route between 2 points and it'll show a set of written directions, click on the directions to go into map view and you get a black line linking the 2 points with intermediate points showing you where to turn. It can run a voice guided simulation of your travel at 50km/hr *speed not adjustable*. What it CANNOT DO, is show your route in map view and your immediate gps position at the same time *i.e. I don't need navigation directions, but I would like to see whether I'm staying on the routed black line*
    -No quick way to save a route and call it back up.
    4. Many little things that get on my nerves can be solved with the *limited* freeware out there: -
    a) The n82 has a nasty habit of turning off the display backlight when I want it on for extended period of time. The maximum timeout for display light is 60secs and the standby autolock sets in at 90seconds. Use 'Spoton v0.07' to keep the backlight on, it runs in the background after you start it *select backlight on* and it places a yellow dot on the top right hand corner that blinks to keep the backlight on and prevents the n82 from going into autolock/standby mode *BTW don't close it when you see a white screen with text, just switch to another program using the n82 menu button*. To alter way autolock works, use 'Mr Lock v1' *trial and error to find your perfect setting, just don't set the timer too short*.
    b) You can get certain n82 symbian S60r3 freeware from the nokia website but the bookmark link on the n82 phone browser often suggests there is no downloads available for the n82 *what gives?* Example is the 'Nokia internet radio' which is ok for use with a broadband wireless network.
    c) The built-in webbrowser doesn't support flash, hence no youtube, dailymotion, veoh, tudou, crunchyroll... Currently, there is limited support for youtube via 'Mobitubia' and 'Emtube'. 'Emtube' was the best *D* flv player - with smooth playback & wide flv compatibility overall, speculations suggest that youtube took it down for violation of terms *last version 1.0.10, makes me wanna weep*. The latest version of 'mobitubia' v1.76b3 has problems playing clips that an earlier version didn't have but overall the quality and sync for various vids ain't as great as 'Emtube'. Both will allow you to 'cache' into flash memory and play clips later unlike the youtube java version. Some use Opera-mini4 as their web-browser but there are no real advantages, every website is a test of patience on such a small screen *good for checking out the weather and news snapshots tho* - opera doesn't gel too well with the n82 barcode reader.
    d) cCam v1.03 will allow camera photos without the 'chi-cha' sound but the red light still comes on if you decide to hold down the camera button to focus and it relies on the option key to snap the photo not the camera button;
    e) 'S60Dict' for a simple english dictionary; 'SMS Export' to export sms to txt and 'Datamatrix' to generate 2D-barcodes *BTW Firefox has a 2D-barcode generator addin*;
    f) 'S-Tris' will give you tetris, but a lot of mobile games don't play too well on the n82. Despite the built-in graphics processor, the awkward response of the middle navigation button is too fiddly and not very comfortable, always try before you buy. *I'll stick with the Nintendo DS; mind you I've stopped using my ipod nano 8GB cause I don't have to carry around a cable to transfer tunes via bluetooth*
    g) There a quite a few symbian shareware available, so try them and by the end of the trial period you'll probably have more than a couple of reasons as to why you don't want it or need it anymore *kinda sad really*.
    h) A lot of freeware applications require self-sign *hassel*, I'm still waiting for the symbian website to be back up but I am eager to try out 'flipsilent', 'PhoNetInfo' and 'activefile'.
    TIP: Always try to install 3rd party programs to the micro sd cause you can boot the phone without it to stop unwanted programs loading at startup.
    5. Battery doesn't ever last as long as it should - I'm glad I'm not using the n95 cause I seem to run this battery flat daily, just by play Nokia Internet radio out loud on the speakers.
    Eagerly awaiting the n96, but til then the n82 will do for now.
    *BTW I started typing this on the n82 but it gave me a cramp, sorry if it’s incoherent, and if there’s anything I’ve missed, I'm sure other members will be happy to reply *

    Thank goodness I didn't run into any problems with this update, unlike last time
    Let's cut to the chase...
    1. I've noticed that websites using simple flash elements that didn't work under v20 works better after the update. However, those not optimized for mobiles are still slow to load in the nokia browser using wireless g when compared to a v slow laptop on the same wireless network. A couple of glitches I've run into when browsing... firstly, there are websites that seem to load and just when the page is almost completely rendered, reloads and renders again, and again, and again... painful... secondly, the built-in cache mechanism is flawed, go back a page and you find that it re-downloads a lot of stuff that should be cached (yes, I have tried different configurations of the browser settings and monitored http network packet traffic router side using a sniffer). Loading saved webpages doesn't work on a number of sites if there are elements that are scripted (flash ads also throws a wrench in the works) it constantly tries to connect to the network which is kinda stupid. For those who were thinking of suggesting I cancel while it's in the middle of connecting/loading and read the 1/2 page that renders...
    2. In terms of flashlite3, the n82 will now play flv files saved on the microsd/phone; pretty sure I tested support for both sorenson and vp6 codecs, yah!... unfortunately, I haven't found a way to fast-forward nor rewind the video??? Play, pause and full screen playback requires menu digging - not so user friendly (btw realplayer can't seem to see the flv files, despite the fact that it's the default youtube player?). The audio track of the flv's sound muffled (tend to notice it on some clips more than others) and all of the flv files show up under media gallery as a broken icons and won't play if you select it (implementation problems)... .
    3. Ad hoc wi-fi courtesy of my fast laptop still won't work with wpa (could be a problem with Vista I suppose), n82 restarts if I try to connect, will work with wep tho, but lets face it, ppl on the net can unlock wep in a couple of minutes nowadays so it's anything but secure...
    4. Themes can adversely affect flash video playback (makes the video hesitate and glitchy), both for Mobitubia and the inbuilt flash player, took me sooo long to isolate this error and I can't understand why this could possibly be the case - but uninstalled theme and it plays fine now so go figure.
    5. Battery indicator appears to be slightly more accurate - previously it would show that there was a lot of battery left and then all of a sudden, run out. However, I feel that youtube clips in mobitubia don't play as long as they use to - can't say for sure tho...
    6. FOR ME, the camera application didn't start up faster than v20 firmware and there were no discernable quality improvements with the pics, very nice but at 100% zoom the 5MP pics were still super grainy indoors when shot at a distance beyond the couple of meters flash range (image noise).
    7. Music Player, nothing major, other than a change of button color and music tracks added error. Does glitch less I suppose.
    8. I turn off auto rotate cause it drives me insane... I do prefer it post update as it switches the whole screen with a delay but the redraw is faster, if it makes any sense...
    9. The silver on my keypad casing has started to show signs of peeling so it looks like I'm gonna have to buy an n79 when it comes out (hope its keypad ain't as hard to use as ppl say but I suppose I do have experience in this area thanks to the n82).
    10. One last thing, Psiloc Crystal chinese will allow read and write chinese characters - 10 day trial unless you love playing phone reset. Alternatively, you can edit the fireflysung font by decreasing it's size to 70% with orientation top left and save it under the resources font folder of your microsd card as a couple of weird font names. That'll allow you to read chinese in nokia web browser but it'll screw up english lettering under the music player and some other apps (cuts the letter in half and only allows you to see the top half if I remember correctly). Forgot to mention in my previous posts that you don't have to hold down the camera shutter halfway to focus before taking a pic, simply click and it'll autofocus before taking pic anyway - it came as a revelation when I found out(better than my canon digital camera in this aspect). Oo, oo, I was quite amazed that the nokia battery can shoot more than 200 consecutive photos with flash on a single charge (don't think the phone was even fully charged at that point) - got bored one day and just kept snapping (btw the phone gets a bit warm)... n82 down to AU$505

  • How do i make my output compatible with advertising standards?

    Hi.
    This is my first time posting in these forums - apologies for any mistakes (spelling and/or other).
    I'm looking into Adobe Edge as a potential new tool for creating web-banners for advertising. I'm more of a designer than a coder, but i have some experience coding in Action Script (flash).
    The challenge for me is generating a project that complies with the strict advertising standards found here:
    https://github.com/finn-no/advertsspec/blob/master/specification.md
    I have listed the points that worry me the most here:
    The HTML-file should just be one file with all CSS required for the ad inline in the HTML.
    Animation prior to a user interaction must be written using CSS3 Transitions, Transforms and/or Animation https://github.com/finn-no/advertsspec/blob/master/spec/cssforanimations.md
    JavaScript animations are forbidden before an user interaction https://github.com/finn-no/advertsspec/blob/master/spec/jsanimations.md
    I have little or no prior experience working with CSS and Javascript, so i'm not really sure what i'm doing, but i have (with a little help) tried a few things.
    The first example is just the raw export of a project with a few simple (and quite ugly) animations. I'm assuming that this is incompatible with the demands listed above.
    http://kunde.rim.no/EdgeTest/Husebyenga_EA_992x150-resp.html
    Project files:
    http://kunde.rim.no/EdgeTest/QuickTest.zip
    In the next example I've created a project where I've put a "stop" action on the first frame and an "onClick" > "sym.play("rotate");" action on the image. "rotate" is a refferance to a frame label later in the same timeline (Click the image to start the (even more ugly) animation created in the Edge timeline).
    Then i wrote some CSS-animations (horribly ugly) directly in the auto-generated HTML-file.
    Will this be enough to get me around the requirement of "no javascript animations prior to user interaction"?
    http://kunde.rim.no/EdgeTest/Husebyenga_An_992x150-nyen.html
    Project files:
    http://kunde.rim.no/EdgeTest/Test-CSS-animation.zip
    The thing is that i would prefer a workflow where i can do as much as possible within Edge Animate, but if the second example above is in compliance with the requirements, then that's not so bad. Guess i can learn some CSS.
    Some thoughts/questions:
    Is it possible that Edge outputs some CSS animations embedded in .js files, and would the people/systems where the advertising is hosted recognise the animations as one type or the other? If so: Can you restrict Edge Animate to use only css animations or is there a way to know what is "safe" (CSS) to use before user interaction and what is not (JavaScript)?
    Are there templates and/or plugins that can help with any of this?
    Any help would be greatly appreciated!
    Dag.

    Hi. Thanks for your prompt response.
    Just to be clear: As far as i can understand, running JS code on load is in compliance with the mentioned standard, but JS animations is not. In the link below they explain it in a bit more detail:
    https://github.com/finn-no/advertsspec/blob/master/spec/jsanimations.md
    For instance they mention that: "What you can do [prior to interaction] is simple JavaScript initialization such as simple resizing of banner content or similar operations."
    So i guess executing the JS is ok as long as that doesn't mean rendering the animation.. ?
    The issue is performance...

Maybe you are looking for

  • YouTube using safari but now it is saying I need Flash Player?

    I installed ios6  on iPad.  YouTube disappeared so I found it using Safari and it worked but now is saying I need Flash Player.  Help.

  • SAP_BC_XMB_ARCHIVE CLIENT is cancelling

    Hi XI Experts We have scheduled the job SAP_BC_XMB_ARCHIVE<CLIENT> in our XI system but it is being cancelled. Job logs are showing that "Unable to generate job, archive run0; area 0 - 99. Job cancelled after system exception ERROR_MESSAGE". Kindly s

  • Netflix streaming blocked, is there a workaround?

    I just upgrade from a Gen 1 iPad to a new iPad Air2. On the Gen 1 I was able to stream Netflix during lunch with the netflix app. Other folks around me on this same network no longer could on their PCs or iPhones. Bring the brand new Air to work toda

  • IPhoto 09  version 8.02

    I downloaded the 8.02 update and could not crop photos. I went back to 8.0 backup and crop works just fine. What's up Apple?

  • Oracle Endeca

    HI what is oracle endeca and what is the main usage of oracel endeca? Edited by: 964906 on Nov 18, 2012 10:57 PM