Extending Flash Javascript

After finding out about the capabilities of (java)scripting in Photoshop, I'm curious to know if there's similar functionality for Flash.
After some searching I found the 'Extending Flash'-documentation (please direct the currently inactive Flash Javascript-link on the Developers homepage to this page, it took me a while to find it), which seems to work fine but is rather shallow compared to the javascript possibilities in Photoshop.
My questions:
- Has there been any work on this since the CS4 scripting guide I found? Perhaps some functionality is complemented by Flex SDK, but I'm specifically looking for the functionality to automate the Flash Authoring Environment, for instance to have a swift way to replace texts, symbols or bits of ActionScripts in a SWF-file.
- Is there a listener for Flash IDE like there is for Photoshop, i.e. a tool that converts your actions in Flash to JS-code?
Cheers,
Ruben

i don't believe there has been much, if any, work extending the original jsfl code.
to automate flash tasks, jsfl is the appropriate tool and there is no listener that will shortcut the coding for you.

Similar Messages

  • Flash javascript file into flash  doucments

    Hi surfers,
     How to connect the flash javascript file into flash  doucments?
    Thanks in Advance.
    Pls give me ASAP, i'm struggle here.

    you can use the externalinterface class in flash to communicate with javascript.

  • Forum for Flash Javascript API

    I think there should be created a Forum dealing with
    questions to the
    Flash Javascript API
    regards Mads

    Thanks for responding, mclem
    I was trying to put it in a .fla, but apparently you can't do
    that, it seems that I have to use jsfl files. I'll be able to find
    all the support I need in the help files now, thanks ;)

  • Intel and Adobe to Extend Flash Platform to TVs

    Intel and Adobe to Extend Flash Platform to TVs
    http://www.intel.com/pressroom/archive/releases/20090105corp.htm
    What does this mean for Flex developers?

    That's fantastic for Flex developers. The more places the
    Flash player is supported, the greater the opportunities for wild
    Flex applications. Go Adobe !!!

  • Flash javascript problems

    I am attempting to get Flash - Javascript communication working using ExternalInterface.addCallback, using code found at http://kb2.adobe.com/cps/156/tn_15683.html. I am trying to pass parameters into Flash using a javascript function, but it only works if I insert a 'window.alert' line into the code. Once I click OK, the parameter str is passed into Flash ok. The function is:
                   function sendToFlash(str) {
            if (str=="tools"){
                window.alert(str);   
            getFlashMovie("richFunctionality_corp").sendTextToFlash(str);
            if (str=="components"){
                window.alert(str);
            getFlashMovie("richFunctionality_corp").sendTextToFlash(str);
    If I remove the window.alert, str isn't passed into Flash. Is this a browser speed thing?
    A value menu is passed out of Flash using getURL("index.php?pageID=239&menu=tools"), i.e. the page reloads and a php script  sends the appropriate str value to the sendToFlash javascript function based upon the value of menu.
    Help! I'm totally at a loss here and my javascript knowledge is very basic.
    Thanks...

    Using this:
    <?php
    if ($menu=="components"){
        ?>
    <script language="javascript" type="text/javascript">
    sendToFlash('components');
    </script>
    <?php
    if ($menu=="tools"){
        ?>
        <script language="javascript" type="text/javascript">
        sendToFlash('tools');
        </script>
        <?php
    ?>

  • Flash JavaScript API

    Most of the time I can solve my problems using google but
    this is probably something very silly that I'm doing wrong...
    The thing is that I cannot use the actionscript that extends
    flash, and I want to use the FLfile object:
    scripts like this don't work with me:
    alert("Process Complete");
    var folderURI = "file:///C|/WINDOWS" ;
    trace(FLfile.listFolder(folderURI, "files"));
    I use Macromedia Flash 8, and Flash Player 8/9

    Thanks for responding, mclem
    I was trying to put it in a .fla, but apparently you can't do
    that, it seems that I have to use jsfl files. I'll be able to find
    all the support I need in the help files now, thanks ;)

  • Extending flash - describing an entire scene within jsfl (for export)

    Hello,
    I am attempting to write an extension for flash which exports all keyframe/object/symbol data into a custom format. I have found this reference (http://help.adobe.com/en_US/flash/cs/extend/index.html) to extend flash, however it does not provide an overview how the data is organized within flash. I am an experiend actionscript programmer but have little experience with Flash Professional proper - so I'm too not familiar with the structure of layers, elements, frame, symbols - etc. Does someone have a resource somewhere that has all of this summaried? Or, better yet, has anyone attempted to export an entire scene, (layers, symbols, elements and all) into a different format (kind of like swiffy, but open source of course).
    Thanks!

    Hi,
    Yes I can send you the file if you like but after arriving back in today, and trying the many different versions I created every 15 or so minutes (as you stated), they are all doing the same thing - which makes me think it is a problem with the software on the machine I'm on?
    Any ideas guys? It still won't let me export or run, or save! And recently it won't even open some of the projects claiming it 'encountered a fatal error and cannot open the project'
    Any and all help is really appreciated
    Andy

  • Extending Flash - Flash JavaScript Question

    This is probably not the place to post this, however I don't
    know where to post it.
    I'm attempting to use .jsfl to add a gradient to a shape. The
    gradient fills fine with one problem, I can't rotate the gradient,
    so instead of going from left to right to up and down:
    var doc = fl.getDocumentDOM();
    var fill = doc.getCustomFill();
    fill.style = "linearGradient";
    fill.colorArray = [ 0x000000, 0xffffff ];
    fill.posArray = [0, 255];
    var mat = fill.matrix;
    mat.a = 0;
    mat.b = 1;
    mat.c = -1;
    mat.d = 0;
    fill.matrix = mat;
    doc.setCustomFill(fill);
    I would assume that the matrix object would affect this
    however I cannot get it to work.
    Thank you
    -js

    After a lot of trial and error I managed to figure it out.
    The key problem here is that once a gradient is applied to an shape
    it is difficult to modify it. I found that if I first fill the
    shape with a flat color, then apply the gradient it works.
    I was able to rotate the gradient 90 degrees and 45 degrees,
    the code below rotates the gradient 90 degrees. To rotate the
    gradient 45 degrees change matrix.a and matrix.b to 1. matrix.tx
    and matrix.ty appear to do nothing.
    var doc = fl.getDocumentDOM();
    var fill = doc.getCustomFill();
    fill.style = "solid";
    fill.color = 0xffffff;
    doc.setCustomFill(fill);
    fill.style = "linearGradient";
    fill.linearRGB = false;
    fill.colorArray = [ 0x000000, 0xffffff ];
    fill.posArray = [0, 255];
    var mat = fill.matrix;
    mat.a = 0;
    mat.b = 1;
    mat.c = 0;
    mat.d = 0;
    fill.matrix = mat;
    doc.setCustomFill(fill);

  • Adobe Flash & Javascript don't work even though Enabled

    Ever since what I think was either a Firefox upgrade (I don't know which one) or installation of Quicktime, my Adobe Flash Plugin is perpetually crashed and I cannot play any Flash content on any website. All that displays in place of the video is a gray screen with the sad-face Lego icon and the message: “The Adobe Flash Plugin has crashed. Please reload the page to try again.” (See attached image.) But it will not resolve when reloaded.
    No Flash videos on any sites work. HTML5 videos work on YouTube when tested, but non-HTML5 videos won't work.
    Also, my Javascript does not seem to be working since at least some displays requiring javascript don't work. Sometimes the display just doesn't work, and sometimes I get a message that javascript is disabled and must be enabled, but it is already enabled (set to “true” in about:config).
    I have spent days scouring every help forum entry I can find on troubleshooting Flash Player and Javascript. Everything on my end seems to be in order and I cannot find or fix either problem. I think it is possible the issue could have its roots in the fact that Javascript seems to not be working which may be preventing Flash Player content from working...??
    Also, Flash content does work in I.E. but not in Firefox (I do not have Chrome installed so did not test in Chrome). I have too many window tabs open in Firefox and can't switch to I.E. (nor do I like to use I.E.).
    PLEASE HELP as this is crippling for very important work deadlines I have.
    This is what else I know and have tried:
    I have a Toshiba Satellite C75D-A Laptop;
    Processor: AMD A6-5200 APU with Radeon HD Graphics; x64; 2.00 Ghz;
    RAM: 8 MB;
    OS: 64-bit system; Windows 8.1 (but some auto-check utilities detect it as 8.0 because it was upgraded.);
    Graphics Card: “Desktop Graphics” System – AMD Radeon HD 8400 (0x9830);
    Installed Graphics Driver Version: AMD 13.352.1004.1007 (Driver Date: 4/22/2014)
    My Device Manager graphics driver updater states: “driver software is up to date.”
    From the AMD website: the graphics driver auto-detect utility recommended the AMD Catalyst Driver (amd-catalyst-omega-14.12-without-dotnet45-win8.1-64bit.exe) I tried installing this driver, but it won't install. After trying to install, I got a message stating: “We are unable to find a driver for your system.” But Device Manager states I have a current driver, and my graphics card & driver seem to be working fine, so I do not believe this is part of the issue.
    I am using Latest Firefox version 35.0.1; and
    Using Latest Flash Player: 32-bit NPAPI Plug-in Version: 16.0.0.296; designated: “always activate” (Downloaded new update several times, including fresh install after uninstall; system & web address icons indicate Flash is enabled).
    I turned off hardware acceleration in FF Tools>Options>Advanced>General
    I disabled WebGL as explained here: https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-acceleration
    I am using Ad-Block Plus which has never affected things in the past. I have not tried starting FF in Safe Mode because I believe I will lose all open tabs and not be able to recover them (I may have over 200 open). But disabling add-ons has no effect (I disabled all except for Sessions Manager in case of a crash). (My No-Script has been disabled for at least six months.)
    I have Windows Media Player and Quicktime installed.
    Quicktime is most recent upgrade (7.7.6) so should not be a problem according to:
    “QuickTime plugin takes over Flash” at:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here)
    Disabling Quicktime had no effect in the prior version of FF (ver. 35.0), but in latest FF ver. 35.0.1, Flash videos only display a plain (blank) gray screen instead of the sad-faced icon and crash message.
    (I tried to uninstall Quicktime altogether, but was not able to due to Error codes 2502 & 2503. I tried troubleshooting that as well with no luck using methods successful for other programs, including here:
    http://www.fixkb.com/2014/01/error-2503-and-2502-when-uninstalling-on-windows-8.html;
    & here:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-winapps/re-internal-error-codes-2502-and-2503-for/ba5f2145-aa6e-4cc0-81a7-e4346f43b698.)
    Disabling my FF theme and using the default brought back the sad-faced icon and crash message in the place of videos on some YouTube pages, but not other YouTube pages (where video was still blank gray screen). It also enabled a still Flash image (an ad) to display on a different website page that previously had a Flash Plugin crash message. I have been using this same theme for a couple of years without previous issue. While turning it off did generate an effect on some still imagery, it didn't fix the video problem.
    I tried Disabling Protected Mode in Flash 11.3 as explained here:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here).
    It did not solve the issue.
    I also deleted all storage & data in Flash Player as advised. This had no effect either.
    I've tried all solutions I've been able to find and am at a loss for what to try next. Please help and advise ASAP. Thank you!!

    ''guigs2 [[#answer-684038|said]]''
    <blockquote>
    I truely admire the efforts that have been made to make this work.
    "“We are unable to find a driver for your system.” "
    For it not installing, you need to follow these instructions to install them: see the comments: [http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_devices/windows-10-atiamd-display-drivers/50944d10-dde3-4e08-8244-d54eb2b1e7de] --> take warning though it looks like it has caused issues for others as well.
    Since it was working for some youtube videos and not others, there might be an issue with a particular video codec. DO you have OpenH264 Video Codec provided by Cisco Systems, Inc. plugin?
    Is it possible to try Safe Mode after saving your session with [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager Addon]? IT would test hardware acceleration in Firefox.
    </blockquote>
    Thank you, guigs2! Sorry for my delayed reply...I didn't realize I hadn't gotten back to you. Update is that I did try a whole slew of other troubleshooting steps including starting FF in safe mode, to no avail. However, I was FINALLY (after months) able to solve this problem just today by pure chance!
    The problem was that hardware acceleration was enabled in the Flash settings. I had not been able to turn it off because I didn't have access to the Flash Player settings as long as the crash error message was visible, which was all the time! Today, by a sheer fluke, I saw a static picture in place of the crash message on a Flash video. I snagged the opportunity to call up the settings and turn off hardware acceleration, and it fixed the problem for my whole browser! This has been a frustrating issue because I did not have access to the settings utility as long as I had the crash message, which was always, so my Flash was crippled without the ability for me to fix it until pure luck gave me this window of opportunity.
    Does anyone know another way to access the settings utility if this ever happens again in the future? I could not find a way. (Incidentally, I had tried disabling hardware acceleration via my graphics driver settings, but it didn't fix the problem.) We need Adobe to allow some other way to access the Flash Player settings utility when this problem arises since they aren't accessible when there is a static crash message.
    Thanks again!

  • Flash, Javascript and Internet Explorer

    This is driving me nuts...!!!!!! It works in Firefox but not
    Internet
    Explorer.
    I've got a load of gifs on a page that I want to swap from a
    Flash movie
    using a loop.
    This is the Javascript I'm using:
    function blankAll(x){
    document[x].src="images/splash-link-arrow.gif";
    And I'm calling it in Flash using the following action
    script:
    function blankOut(){
    for(x = 1; x <= _root.allBranches.length; x++){
    getURL("javascript:blankAll('"+ _root.allBranches[x-1]
    +"')");
    allBranches being an array containing a list of the gif names
    to swap.
    Like I say, in Firefox this works like a dream, but in
    Internet Explorer it
    only swaps the very last gif on the list........ WHY?
    Can anybody help please?
    Big thanks in advance,
    @ndyB

    Sorry Dan,
    This has got nothing to do with the question I asked.
    I know about the Microsoft "patch" and have already allowed
    for it.
    @ndyB
    "-->dan mode" <[email protected]> wrote in
    message
    news:e3ag7h$oob$[email protected]..
    > Read this:
    >
    http://www.smithmediafusion.com/blog/?p=114
    >
    > Then, here is a simple way.
    > You need to do three things and I will give examples as
    follows.
    >
    > 1. all of the <object> tag must be taken out and
    put into a .js file and
    > placed within a function where you document.write the
    <object tag>
    > 2. you must include that .js file in the header of the
    html where the swf
    > resided
    > 3. call the js function from step 1
    >
    >
    > --Here is a sample of Step 1, save this file as
    commFile.js:
    >
    > function commM()
    > {
    > document.write('<object
    > classid="clsid
    27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
    > width="410" height="345">\n');
    > document.write('<param name="movie"
    value="/mySWF.swf">\n');
    > document.write('<param name="quality"
    value="high">\n');
    > document.write('<embed src="/mySWF.swf"
    quality="high" +'"
    > pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    > type="application/x-shockwave-flash" width="410"
    > height="345"></embed>\n');
    > document.write('</object>\n');
    > }
    >
    > --Here is a sample for Step 2, put this in the head of
    your html page:
    >
    > <script src="commFile.js"
    type="text/javascript"></script>
    >
    > --Here is a sample for Step 3, place this code on the
    spot of the page
    > where
    > you want your flash to show up:
    >
    > <script
    type="text/javascript">commM();</script>
    >
    >
    > That should be all you need.
    >
    > --
    >
    > Dan Mode
    > *Must Read*
    http://www.smithmediafusion.com/blog
    > *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    >
    >
    >

  • Net extender flashing red or solid green sys light

    I just had my net extender activated last week & have several issues:
    1) the lights are blue, except the systems light will frequently return to flashing red or a steady green. I have shut down the extender for >30 sec w/o improvement, and I have shut down the router as well w/o success. It tends to interrupt my computer’s internet function when flashing. Any suggestions?
    2) I use a sonic net extender from my home’s computer to access my work’s VPN line – is that compatible with the Samsung net extender?
    Thx

        Hi help101,
    Let's explore options to resolve this service issues! Some compatibility issues may certainly exist. You mentioned shutting down your extender for 30 seconds, and our troubleshooting guide indicates to disconnect the power supply from the extender for 30 seconds to reset. Please ensure you do this http://vz.to/y8v847 instead of powering off the unit and test. Keep us posted.
    AntonioC_VZW
    Follow us on Twitter at www.twitter.com/VZWSupport

  • Why is my network extender flashing red and pink?

    hi,
    I have had my Verizon extender for a while, I bought a new Motorola modem/router connected them up and now my network extender isn't blue like it was before.
    the system band is flashing red and the gps band is solid pink.
    I have unplugged it more than once and it still won't go back to blue!
    Any help please?
    thanks
    Karen

    The breakpoint may not be as expected..
    OPen the subVI and check to see if there is a red contour when it is not running.
    If it is the case, use the brakepoint (pointer) and click onto a blank area inside the block diagram of the subVI. The red contour should dissappear.
    Run the vi (main vi). See if it is okay.

  • Flash Javascript links not working in Internet Explorer

    Hi,
    I've searched through the previous discussion in this forum
    but couldn't find the answer. I'm sure this is a common problem
    that can be resolved easily.
    i have a site that has a series of thumbnail links that opens
    custom sized pages via Javascript. Works perfect in Firefox, but
    only 1 of the 10 links works in IE.
    I'm using internet explorer 6 - pretty sure its SP2 (not at
    computer to check - using works computer to post this message).
    With IE, there is an icon on the bottom left that says "Done"
    with a warning label on it.
    How can I resolve this issue so the site works fine with
    Internet Explorer.
    Thanks

    Can you post a link to the site? You say one link works, is
    this working link set up the same exact way (syntax, etc.) as the
    other 9 links? The warning label in IE wouldn't be from any code
    that is contained within Flash, as IE doesn't load that code when
    it loads the flash. So, that warning must be from the html/body
    code of the webpage itself, not your flash document. If you double
    click on that warning lable, a box should pop up that gives you a
    line number for the error.

  • Flash/Javascript access of USER Variables

    Hi all,
    I've searched online many many times and have made many attempts in Flash and in Captivate 4, but to no avail, and I'm wracking my brain over it. By now I've almost given up on Captivate, since what has wasted so much time could have been done in a day or so using Flash to make the entire thing. I would like to avoid that though, since this is a University project, not a personal project.
    I need to access USER created variables, both in Flash animations AND in Javascript (i.e. in the execute Javascript field under multiple actions). They need to be accessed this way since there's no default way to multiply variables or append strings of text to variables (things which as an experienced AS2 user I know should be very simple to do). Also, I want to be able to copy the contents of one (user) variable to another (system) variable later on (for LMS).
    So say I have a user defined Captivate variable called 'userPath', and on a certain slide I want to multiply it by 5 in Flash or in Javascript (just an example).
    How could I access it from Flash with AS2? (I've tried _root.userPath, _root.movie.userPath, no luck).
    How could I access it from the Javascript? (I am comfortable with programming, but don't really use Javascript, so I may be having a problem with the notation).
    Any help would be greatly appreciated, since I need to get this work done soon. Many thanks.

    Lboro SB,
    How familliar are you with AS3?  I would recommend altering the CaptivateMaintimeline.as file typically located at C:\Program Files\Adobe\Adobe Captivate 4\ActionScript 3.0.  You can write your custom functions in AS3 to do your multiplication or whatever and it will use this file to compile your Cp4 project.  Just make sure you're publishing your Cp4 project in AS3 in the project properties.  You could also add your function to the list of ExternalInterface.addCallback(... so that your function could be accessible from JavaScript.  Here's my custom function I've put in the CaptivateMaintimeline.as file:
    /JBL: For External Interface setting any type of value
            public function jim_cpSetValue(variable:String, val):void
            //myTrace("cpSetValue variable1 " + variable + " ; val  " + val);
            var arr:Array = variable.split(".");
            var ref = this;
            for(var i=0; i < arr.length -1; i++)
                ref = ref[arr[i]];
            ref[ arr[arr.length -1] ] = val; // This works fine for numbers, booleans and strings
    // JBL: adding callback to set variables in cp via JavaScript
    ExternalInterface.addCallback("jim_cpSetValue", jim_cpSetValue);
    If you want to do this in JavaScript, you need to get a reference to the Captivate main movie.  I do it like so:
        // Set objCaptivate in IE
        CaptivateObj = document.Captivate;
    Then you can call your custom function
        //JBL:  Custom Function to set Captivate Vars via Javascript
        function setCaptivateVariable(myVariable, myValue)
            CaptivateObj.jim_cpSetValue(myVariable, myValue);
        //JBL:  Shortcut function for Getting values from Captivate SWF
        function getCaptivateUserVariable(n)
            return CaptivateObj.cpGetValue(n);
    I also HIGHLY recommend a lightweight .js file by Philip Hutchison that can do much more located here.
    Good Luck,
    Jim Leichliter

  • Flash javascript and Activecontent code

    I've got an animated chatbot that uses a variety of swfs and
    phps and a big external JavaScript to work. It works fine with the
    old style embed and object code, with the same variety of swfs and
    phps and external JS.
    But when I try to use the
    <script src="AC_ActiveX.js"
    type="text/javascript"></script>
    <script src="AC_RunActiveContent.js"
    type="text/javascript"></script>
    and I code the main Flash piece like this:
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',
    'width','540','height','360','swliveconnect','true','src','whinbarnexp','quality','high',' pluginspage',
    http://www.macromedia.com/go/getflashplayer','movie1','whinbarnexp'
    </script>
    The above broken into lines to make more readable here.
    but when I run it it doesn't work right, and the error
    console advises:
    "movie1 has no properties."
    and points to the first line of the big function in the
    JavaScript "brain" of the chatbot:
    shesaid=movie1.GetVariable("coder")
    What am I doing wrong? It's got to be within this code since
    the same "brain" file works fine with old style object/embed
    coding.

    Sorry Dan,
    This has got nothing to do with the question I asked.
    I know about the Microsoft "patch" and have already allowed
    for it.
    @ndyB
    "-->dan mode" <[email protected]> wrote in
    message
    news:e3ag7h$oob$[email protected]..
    > Read this:
    >
    http://www.smithmediafusion.com/blog/?p=114
    >
    > Then, here is a simple way.
    > You need to do three things and I will give examples as
    follows.
    >
    > 1. all of the <object> tag must be taken out and
    put into a .js file and
    > placed within a function where you document.write the
    <object tag>
    > 2. you must include that .js file in the header of the
    html where the swf
    > resided
    > 3. call the js function from step 1
    >
    >
    > --Here is a sample of Step 1, save this file as
    commFile.js:
    >
    > function commM()
    > {
    > document.write('<object
    > classid="clsid
    27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
    > width="410" height="345">\n');
    > document.write('<param name="movie"
    value="/mySWF.swf">\n');
    > document.write('<param name="quality"
    value="high">\n');
    > document.write('<embed src="/mySWF.swf"
    quality="high" +'"
    > pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    > type="application/x-shockwave-flash" width="410"
    > height="345"></embed>\n');
    > document.write('</object>\n');
    > }
    >
    > --Here is a sample for Step 2, put this in the head of
    your html page:
    >
    > <script src="commFile.js"
    type="text/javascript"></script>
    >
    > --Here is a sample for Step 3, place this code on the
    spot of the page
    > where
    > you want your flash to show up:
    >
    > <script
    type="text/javascript">commM();</script>
    >
    >
    > That should be all you need.
    >
    > --
    >
    > Dan Mode
    > *Must Read*
    http://www.smithmediafusion.com/blog
    > *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    >
    >
    >

Maybe you are looking for

  • Roaming between WLANs on different WLCs

    Hello, Is it possible to create the same SSIDs on two different WLCs that are not in a failover or mobility group but have an interface on the same network so that users can connect to those SSIDs automatically without having to do it manually?  For

  • Overprint preview + white ink = trouble

    Is there _effective_ and _efficient_ way to preview % tints when artwork ink is lighter color than background paper/shirt/etc.? (Have same prob in Illus and InD.) This prob is similar to other threads but not quite same issue, I believe. Examples: (1

  • I don't have permission to view the contents of hidden files on my own Macbook Pro

    I don't have permission to view the contents of hidden files on my own Macbook Pro. Im fairly new to Mac and for some reason I do not have permission to view the contents in hidden files. Can someone please help. Thanks

  • Can't download Windows Media Player-What else will work?

    I get emails with WMV files and I can't open them. Is there a Mac program that will open them or is there a Windows download that will work?

  • NullPointerException in ejb20.deployer

    Hello all: I am seeing WebLogic take a dump when I try to deploy a simple EJB bean to WebLogc. The stack trace looks like this: weblogic.management.ApplicationException: Exception:weblogic.management.ApplicationException: prepare failed for identity-