FlvPlayback 2.1.9.23 Chrome layering bug?

I get a strange layering problem, only in Chrome & Safari for PC.
Basically, I'm layering a custom video player(swf) on top of the flvPlayback component (for advertising).
In Chrome, the video/swf I'm trying to layer on top of flvPlayback always appears underneath the flvPlayback component, even though its childindex is 0 at runtime, and the swf that gets layered on top externally is set to be above in code.
This happens with more than one type of adUnit I use. One is a swf, and the other is an html div that has a video player. In both cases, using flvPlayback has a layering bug.
Anybody have similar issue, and/or suggestion how to remedy?
You can see the issue here using chrome: http://panachetech.com/catalog/index.html#/premium_sponsorship/?id=16  NOTE: you might need to click the 'Lightbox Ad' thumbnail to kickstart that experience.
Another one that is not using lightbox but has a similar problem with a swf is: http://panachetech.com/catalog/index.html#/instant_roi/?id=2
Thanks!!
MK

I have a partial solution. On the Wireless/Mac filtering page, the default setup is :
MAC Filtering
Filter
Allow only stations in list
Block all stations in list
Stations List
MAC Address
Click “Apply“ to save the new settings.
Apply
And surprise, altough this seams to be only for the Local list, the setup "Block all stations in list" will apply also for radius MAC checks !!!!
So setting this field to "Allow only stations in list" and then rebooting the AP have partially solve the problem :
A station MAC is checked with the radius server once, and then the station is blocked if the check was unsuccessfull and unblocked if the check was successfull.
But their is still a problem : after the initial radius check, the station is NEVER rechecked with the radius server, so the station is BLOCKED and is never ublocked, even if you add it to the radius server at a later time. The only solution I have found is to reboot the AP.
This is a very serious problem because generally stations are seen by the various AP before their MAC is entered into the radius server. And having to reboot all the AP of a site in order to get one station to be recognized is not an option !!!

Similar Messages

  • Photoshop Layering Bug with Multi-language discs

    I have searched and couldn't find information regarding this problem.
    I am in the process of converting projects created in DVDSP1.52 that were multi-lingual and used layered menus created in Photoshop. Projects are moved into DVDSP3.02 where the language tags for a language menu are reset so they will work properly.
    When projects are converted in DVDSP3.02, menu layers behave normally until I change the languages outside of the Simulator. As soon as this is done, the layers ALL turn on. I can reset them to their proper settings manually but the settings will not hold.
    This isn't really a problem as long as I have the disc behaving EXACTLY the way I want it to in DVDSP1.52 before translation and I don't need to overhaul some other aspect of the project that would require me to toggle the displayed languages.
    However, I forsee a point in time where I will have to work on this library further and the translated projects would be my starting point.
    Has anyone experienced these issues?
    Does upgrading to DVDSP4 resolve this bug?

    For  apple to see your request, you need to repost it at
    http://www.apple.com/feedback

  • Selecting multiple text layers bug

    I have found this post from April where the bug was acknowledged in the beta: http://forums.adobe.com/message/4306413#4306413.
    I now have the official release of CS6, and I am still seeing this issue. And for clarification, here's what the issue is:
    - I start off creating a text layer with a font size of 20px.
    - I then transform this layer to make it larger.
    - I copy the layer over so I have identical text layers.
    - When I select each individually, I am shown the new, larger font size, we'll just say 40px. But when I select both together, it shows the original font size of 20px in the character palette. When I increase the font size with both selected to say 30px, it actually makes the text more like 60px.
    Will this bug actually get fixed?
    Thanks for any insight you can give.
    And for more info, I am running CS6 off of OSX Lion.

    I was going to suggest a script, but it seems that there are major bugs in the javascript DOM.
    It will only set the size if the text has not been transformed and then is not acurate (+- .5), this is a bug.
    If the text has been transformed the new text size has to be divided by the transform factor, this is a bug.
    Tested with Windows 7 and Photoshop CS6 version 13.0.1 so don't know what state other versions are in.
    This script will work for the above version and O.S.
    N.B. if Photoshop gets the bugs fixed this script will no longer work correctly!
    #target photoshop
    app.bringToFront();
    if(documents.length) app.activeDocument.suspendHistory('Set Font Size', 'main()');
    function main(){
    var win = new Window('dialog','Set Font Size');
    g = win.graphics;
    var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.99, 0.99, 0.99, 1]);
    g.backgroundColor = myBrush;
    win.p1= win.add("panel", undefined, undefined, {borderStyle:"black"});
    win.g1 = win.p1.add('group');
    win.g1.orientation = "row";
    win.title = win.g1.add('statictext',undefined,'Set Font Size');
    win.title.alignment="fill";
    var g = win.title.graphics;
    g.font = ScriptUI.newFont("Georgia","BOLDITALIC",22);
    win.g5 =win.p1.add('group');
    win.g5.orientation = "row";
    win.g5.alignment='left';
    win.g5.rb1 = win.g5.add('radiobutton',undefined,'All text layers');
    win.g5.rb2 = win.g5.add('radiobutton',undefined,'Selected text layers');
    win.g5.rb1.value=true;
    win.g10 =win.p1.add('group');
    win.g10.orientation = "row";
    win.g10.alignment='left';
    win.g10.st1 = win.g10.add('statictext',undefined,'Please enter text size..');
    win.g10.et1 = win.g10.add('edittext');
    win.g10.et1.preferredSize=[50,20];
    win.g10.et1.onChanging = function() {
      if (this.text.match(/[^\-\.\d]/)) {
        this.text = this.text.replace(/[^\-\.\d]/g, '');
    win.g100 =win.p1.add('group');
    win.g100.orientation = "row";
    win.g100.alignment='fill';
    win.g100.bu1 = win.g100.add('button',undefined,'Set Font Size');
    win.g100.bu1.preferredSize=[130,25];
    win.g100.bu2 = win.g100.add('button',undefined,'Cancel');
    win.g100.bu2.preferredSize=[130,25];
    win.g100.bu1.onClick=function(){
    if(win.g10.et1.text == ''){
        alert("No text size has been entered!");
        return;
    win.close(0);
    var txtList = new Array();
    if(win.g5.rb1.value){
        txtList = getTxtLayers();
        }else{
    var sels = getSelectedLayersIdx();
    for(var z in sels){
    var isTxtArray = isTxtLayer(Number(sels[z]));
    if(isTxtArray == false) continue;
    isTxtArray = String(isTxtArray).split(',');
        txtList.push([[Number(isTxtArray[0])],[String(isTxtArray[1])]]);
    for(var s in txtList){
        selectLayerById(Number(txtList[s][0]));
    if(String(app.version).match(/^\d+/) == 13){
    if(getTextdivideFactor() != 0){
    app.activeDocument.activeLayer.textItem.size= (Number(win.g10.et1.text)/Number(getTextdivideFactor()));
    }else{
        app.activeDocument.activeLayer.textItem.size= (Number(win.g10.et1.text));
    }else{
        app.activeDocument.activeLayer.textItem.size= (Number(win.g10.et1.text));
    win.show();
    function getTextdivideFactor(){
    var ref = new ActionReference();
    ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
    var desc = executeActionGet(ref).getObjectValue(stringIDToTypeID('textKey'));
    var textSize =  desc.getList(stringIDToTypeID('textStyleRange')).getObjectValue(0).getObjectValue(stringIDToTypeID('textStyle')).getDouble (stringIDToTypeID('size'));
    if (desc.hasKey(stringIDToTypeID('transform'))) {
                var mFactor = desc.getObjectValue(stringIDToTypeID('transform')).getUnitDoubleValue (stringIDToTypeID("yy") );
                return mFactor;
    return 0;
    function selectLayerById(ID, add) {
        add = (add == undefined)  ? add = false : add;
    var ref = new ActionReference();
    ref.putIdentifier(charIDToTypeID('Lyr '), ID);
    var desc = new ActionDescriptor();
    desc.putReference(charIDToTypeID('null'), ref);
    if (add) {
      desc.putEnumerated(stringIDToTypeID('selectionModifier'), stringIDToTypeID('selectionModifierType'), stringIDToTypeID('addToSelection'));
    desc.putBoolean(charIDToTypeID('MkVs'), false);
    executeAction(charIDToTypeID('slct'), desc, DialogModes.NO);
    function isTxtLayer(idx){
    var ref = new ActionReference();
    ref.putIndex( charIDToTypeID('Lyr '), idx );
    var desc = executeActionGet(ref);
    var isTxt = new Array();
    if(desc.hasKey(stringIDToTypeID('textKey'))){
    var Id = desc.getInteger(stringIDToTypeID( 'layerID' ));
    var layerName = desc.getString(charIDToTypeID( 'Nm  ' ));
    isTxt.push([[Id],[layerName]]);
    return isTxt;
    }else{ return false;}
    function getTxtLayers(){
       var ref = new ActionReference();
       ref.putEnumerated( charIDToTypeID('Dcmn'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
       var count = executeActionGet(ref).getInteger(charIDToTypeID('NmbL')) +1;
       var Names=[];
    try{
        activeDocument.backgroundLayer;
    var i = 0; }catch(e){ var i = 1; };
       for(i;i<count;i++){
           if(i == 0) continue;
            ref = new ActionReference();
            ref.putIndex( charIDToTypeID( 'Lyr ' ), i );
            var desc = executeActionGet(ref);
            var layerName = desc.getString(charIDToTypeID( 'Nm  ' ));
            var Id = desc.getInteger(stringIDToTypeID( 'layerID' ));
            if(layerName.match(/^<\/Layer group/) ) continue;
            if(desc.hasKey(stringIDToTypeID("textKey"))) Names.push([[Id],[layerName]]);
    return Names;
    function getSelectedLayersIdx(){
          var selectedLayers = new Array;
          var ref = new ActionReference();
          ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
          var desc = executeActionGet(ref);
          if( desc.hasKey( stringIDToTypeID( 'targetLayers' ) ) ){
             desc = desc.getList( stringIDToTypeID( 'targetLayers' ));
              var c = desc.count
              var selectedLayers = new Array();
              for(var i=0;i<c;i++){
                try{
                   activeDocument.backgroundLayer;
                   selectedLayers.push(  desc.getReference( i ).getIndex() );
                }catch(e){
                   selectedLayers.push(  desc.getReference( i ).getIndex()+1 );
           }else{
             var ref = new ActionReference();
             ref.putProperty( charIDToTypeID("Prpr") , charIDToTypeID( "ItmI" ));
             ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
             try{
                activeDocument.backgroundLayer;
                selectedLayers.push( executeActionGet(ref).getInteger(charIDToTypeID( "ItmI" ))-1);
             }catch(e){
                selectedLayers.push( executeActionGet(ref).getInteger(charIDToTypeID( "ItmI" )));
         var vis = app.activeDocument.activeLayer.visible;
            if(vis == true) app.activeDocument.activeLayer.visible = false;
            var desc9 = new ActionDescriptor();
        var list9 = new ActionList();
        var ref9 = new ActionReference();
        ref9.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        list9.putReference( ref9 );
        desc9.putList( charIDToTypeID('null'), list9 );
        executeAction( charIDToTypeID('Shw '), desc9, DialogModes.NO );
        if(app.activeDocument.activeLayer.visible == false) selectedLayers.shift();
            app.activeDocument.activeLayer.visible = vis;
          return selectedLayers;

  • Google Chrome & Lion bug keeps switching app window focus

    Since installing Google Chrome, when I type something into the url bar, it immediately switches the Chrome window to the bottom most of all application windows that are open. Very annoying.
    For example, if I have 5 app windows open and then in Chrome, start typing in the URL bar, the Chrome window is pushed to the back of all windows. What's weird is although the window is moved to the lowest layer of visibility, as I continue typing, it still is typing in Chome. So no window focus but still abe to type in it.
    A very weird bug but also makes Google Chrome almost unusable in Lion. Shame.

    I have the same thing.  However it is not just Chrome.  It often happens when typing in Outlook or Word.  It does not happen every time and a reboot often solves the problem.  Has anyone else experienced this and - more importantly - found a solution?
    I am using an iMac and the only change since upgrading to Lion is that I followed a workaround for NAS access listed at: http://www.alexanderwilde.com/2011/04/os-x-lion-connection-error-with-afp-and-wo rkaround/

  • Google Chrome/Dock bug?

    I loaded Google Chrome onto my Macbook Pro (2009) and I can no longer access the dock with a swipe. Anyone have this problem and a solution?

    Uninstall Chrome? Use Firefox?
    Uninstall  Chrome:  https://support.google.com/chrome/bin/answer.py?hl=en&answer=95319
    Google root level auto-updater: to uninstall that (provided you have no Google software on the machine)
    https://support.google.com/installer/bin/answer.py?hl=en&answer=100386

  • Looking for help of chrome flash bug

    Hi all, i got this issue since i update the latest version of chrome and the flash player. I can't click on any link or flash button on any website.
    I tried follow the step which provided by adobe and google.
    I stop the flash as below.
    Adobe Flash Player (2 files) - 版本: 15,0,0,152
    Shockwave Flash 15.0 r0
    名稱:
    Shockwave Flash
    說明:
    Shockwave Flash 15.0 r0
    版本:
    15.0.0.152
    位置:
    C:\Program Files (x86)\Google\Chrome\Application\37.0.2062.120\PepperFlash\pepflashplayer.dll
    類型:
    PPAPI (獨立程序)
    啟用
    MIME 類型:
    MIME 類型
    說明
    副檔名
    application/x-shockwave-flash
    Shockwave Flash
    .swf
    application/futuresplash
    FutureSplash Player
    .spl
    But it doesn't work and no more respond from any website.
    Here is my Chrome version : 37.0.2062.120 m
    Is there any thing that i can do in order to fix it?
    Thank you so much

    plz?help me

  • Is chroma bug solved in new version of AME5.5 when transcoding to ProRes?

    About a year ago I had posted to the forums about a "chroma bug" observed by me and others when using Adobe Media Encoder v.5.0.1  to transcode AVCHD to Pros Res 422.   It would result in chroma bleed and a softer image versus a sharper transcode using Apple's Compressor.   I have attached a link here to my previous posting which shows jpeg images of what AME v.5.0.1 was doing to the image.
    Adobe Forums: For Adobe Premiere users encoding to...
    I would download a trial version of the new Adobe Media Encoder 5.5 (but I believe because it's a trial version that they disable transcoding from AVCHD feature).
    Are there any current users of AME 5.5 out there encoding to Pro Res?  If so, what have been your results? 
    My hope is that this chroma bug issue is solved for v.5.5 but I really have no definitive way to test it unless I purchase the upgrade...as the trial version won't allow me to transcode from AVCHD. 
    The catch 22 is that I didn't want to purchase the upgrade until I knew the bug was fixed.   I reported it to Adobe at the time of my initial posting but received no feedback or acknowledgement of the issue.  Most of my editing is done in Pro Res rather than natively...hence this is an important item for me.
    Thanks for any thoughts other users can share. 
    John

    as the trial version won't allow me to transcode from AVCHD.
    Sure it will. The CS5.5 trial now has all MPEG limitations removed, so you can fully work with all supported formats for 30 days in the trial.
    I seem to recall reading something about the chroma sampling bug being fixed, or at least, improved. But give the trial a shot and you'll know for sure.

  • Bug graphique(CC 2014.2)

    Bonjour..Problème  sous CC 2014.2, calques 3D aléatoire,bug affichages,stries de pixels,artefacts! j'ai réinstallé,paramétrer mais rien ni fait je doute que cela vienne de ma configue( 3,5 GHz Intel Core i7-NVIDIA GeForce GTX 780M 4096 Mo)
    Quelqu'un a t-il eu ce genre de problème? je précise que tous ces bug d'affichages surviennent uniquement en utilisation 3D.
    A l'aide!

    Hello..Problem under CC 2014.2, random 3D layers, bug displays, streaks of pixels, artifacts! I reinstalled, set up but nothing and madeI doubt that this comes from ma configue (3.5 GHz Intel Core i7-NVIDIA GeForce GTX 780 M 4096 MB)
    Anyone has t - had this kind of problem? I should mention that all these views bug occur only in use 3D.
    The help!
    Is the GPU driver up to date?
    Does the problem persist when rendering?
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html

  • My PDF is set to A4 but prints out as A3?

    I used Acrobat X to create a page of PDF document, it prints out fine in Adobe Reader, or Internet Explorer plug-in on Windows.
    However when I use Google Chrome browser on Windows to print it, the A4 page comes out twice the size (by width and by height). This only happens in Chrome. I wonder what's in PDF that's causing this issue? Or if it's Chrome's bug, what can I do as a workaround?

    I would like to change the PDF file itself so the problem doesn't occur in any Chrome browser. Because I'm publishing this PDF on my website for the public to download.
    I'm wondering what could have caused this problem and how to fix it -- obviously it's Chrome PDF viewer's bug but not every PDF file has this problem, so I want to tweak my PDF to make it compatible to Chrome PDF viewer.

  • Get url not working in Safari Browser

    I use the following code to open a new file. This works fine
    in IE but in Safari, it does not open the page. Does anybody know
    why?
    getURL ("index.html", "_self");

    Hi,
    From your description, my understanding is that you get issue when you use Update Panel in Safari and sometimes Chrome.
    Safari browser is a WebKit-based browser, ASP.NET AJAX breaks down completely in some circumstances when using WebKit-based browsers. Here
    is an article about how to run ASP.NET AJAX on Safari browser, please check it:
    http://blog.lavablast.com/post/2008/10/Gotcha-WebKit-%28Safari-3-and-Google-Chrome%29-Bug-with-ASPNET-AJAX.aspx
    You could refer to this similar case:
    https://social.msdn.microsoft.com/Forums/silverlight/en-US/bbedb83d-1e06-40c7-9238-31fa5e3ad322/trouble-with-update-panel-in-chrome-browser?forum=sharepointdevelopment
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Why don't my visited links get hilighted?

    I had an older version of Firefox and after I updated noticed on certain web sights visited links are no longer highlighted. I can get this to work if I set the colors myself.
    To see this go to
    http://www.filehippo.com/latest/
    I can highlight the visited links if I go to
    tools>options>content> colors

    You're going to need to either turn off the "Overlap items below" setting on the accordion menu on your phone layout, or you're going to need to revert to the 7.1 version of Muse and re-publish.
    A workaround/fix we put in place to avoid a Chrome browser bug has introduced a bug that prevents mouse clicks from reaching the items that are behind the area that's obscured by your menu when it's open.
    We're actively researching alternative solutions to address the Chrome bug without this unacceptable side effect.
    If you wish to revert to Muse 7.1, you can remove your current copy of Muse and install 7.1 from:
    http://labsdownload.adobe.com/pub/adobemuse/builds/muse_7-1_install_win.exe
    http://labsdownload.adobe.com/pub/adobemuse/builds/muse_7-1_install_mac.dmg
    Once you've installed 7.1, you'll need to ignore the update notifications to avoid updating back to 7.2.

  • Need brief explanation on new Drive Q: topic

    hi,
    could somebody provide a quick explanation or a link  (before I will dive deep into the docs and theory) of new features/functions
    of drive Q: sequencer and most interesting on client.
    If possible compare with what was in 4.6
    thx.
    "When you hit a wrong note it's the next note that makes it good or bad". Miles Davis

    In App-V 5, there is not such a virtual drive letter any longer. The most 'sensitive' item now is the 'Primary Virtual Application Directory' (or: PVAD), though that one existed in App-V 4 already. 
    In contrast to v4, you won't find any 'PVAD' folder on the client, and you (perhaps) won't find any reference to it. When you look into an .appv file (you know that you can create a copy of that, rename it to .ZIP and open it read-only) you'll notice a 'root'
    folder that contains the files that have been palced into the PVAD and perhaps a VFS folder that contains the files that were installed somewhere else.
    On the client, you can find the extartcted content in the Package Installation Root (usually C:\Programdata\App-V\Guid\Guid\.. 
    http://social.technet.microsoft.com/Forums/en-US/ca8194b0-bdda-4175-a23b-39d9fc815380/how-to-choose-appv-5-sequencing-primary-virtual-application-directory?forum=mdopappv, 
    http://www.tmurgent.com/TMBlog/?p=1283
    http://blogs.technet.com/b/gladiatormsft/archive/2014/05/24/app-v-5-on-sequencing-using-tokenized-paths-pvad-s-vfs-and-vfs-write-mode.aspx
    http://packageology.com/2014/02/app-v-5-pvad-vfs-layering-bug/have
    some more stuff to read on that (well, it's more like the old 'VFS or MNT' or 'to Q or not to Q' discussion that we had in 4.x.
    Falko
    Twitter
    @kirk_tn   |   Blog
    kirxblog   |   Web
    kirx.org   |   Fireside
    appvbook.com

  • Safari JQM error

    Jquery mobile (1.1, 1.2 and now 1.4) back button will not work (though no error showing in console) when the application us loaded from cache but seems fine when visited on-line or first time. Does anyone know of a workaround for the above safari (no problems with chrome etc) bug?

    HI,
    Sounds like your Keychain preference files are corrupted. Locate this file:
    com.apple.keychainaccess.plist /Users/YourName/Library/Preferences. Drag that file from your Preferences folder to the Trash, empty the Trash and reboot.
    If that doesn't help...
    1) Quit Safari
    2) Open Keychain Access. (Applications/Utilities) Find the "Safari AutoFill" item. Delete it.
    3) Relaunch Safari. Next time it asks for authorization, click "Always Allow".
    Carolyn

  • CS4 stability Mac

    Running AI CS4 on a G5 10.5.7 and finding it very crash prone. The option-dragging between layers bug has carried over from CS3 but I'm also getting occasional random crashes. I'm wondering if AI is more stable on an Intel Mac. It would be a good excuse to buy a new 'puter.
    MHP

    Wade_Zimmerman wrote:
    It is not optimized for a PPC so that could be the problem but it runs well here
    Thanks Wade. And as Scott is running trouble-free on Intel Macs, maybe it is time for me to retire this G5.
    one thing that might ause such a situation might be a conflict with system fonts, or a corrupt font or font database.
    Maintenance of your system and verification and repair of your permissions.
    You just might have certain things loaded on your system that are feeding the cache files in a way that would cause such instability.
    And it is hard to really know what your habits are so something lie this can easily be user error, even if the user is unaware of what that might be.
    Fonts are managed on the G5 by FontAgent Pro and FAP reports no problems with fonts. The only change made to the System fonts is that the Helvetica dfont has been disabled and substituted by Adobe OpenType Helvetica in a FAP startup set. The only fonts on the laptop are the default OSX and Adobe CS fonts.
    System maintenance, including permissions repair, is looked after by Macaroni on the G5.
    The G5 does have a few System enhancements (Default Folder, Launchbar, Keyboard Maestro, FAP) but the laptop is virgin.
    It could, as you say, be user error but I've been using Illustrator since 5.5 (with a few years interlude with FreeHand) so I am not an inexperienced user. My work is purely for print - nothing fancy or outré.
    MHP

  • Highlighting FOI's in a MVThemeBasedFOI layer ?

    I have a polygon theme based FOI layer. I want to allow the user to click on FOIs and have them become highlighted in yellow (or any color). I'm starting with clicking, but I'd like to get it working with the rectangle tool for multi select as well.
    I got it somewhat working using a dynamic jdbc theme, but once I have two polygon themes I run into the multiple polygon FOI layers bug.
    Any ideas?
    -Brian

    Friedhold,
    Sure, I actually ended up implementing it for single selecting via clicking as well as multi select via the MVRectangleTool and MVRedlineTool.
    For a single click I first add an eventlistener to my FOI layer
    themebasedfoi.addEventListener("mouse_click", zipMouseClick);
    then on clicking I grab the ID (in this case zipcode) of the FOI that was clicked.
    function zipMouseClick(ptGeom,foiObj){     
              highlightGeometry(foiObj.attrs[0]);
    the highlightGeometry funtion is an AJAX call to a .NET page I wrote
    function highlightGeometry(str)
         xmlHttp=GetXmlHttpObject();
         if (xmlHttp==null)
              alert ("Your browser does not support AJAX!");
              return;
         var url="http://"+document.location.host+"/getgeometry.aspx";     
         url=url+"?ziplist="+str;
         url=url+"&sid="+Math.random();
         xmlHttp.onreadystatechange=stateChanged;
         xmlHttp.open("GET",url,true);
         xmlHttp.send(null);
    the aspx page just goes and fetches the geometry of the requested zipcode and returns it in xml as a string of points. Then use the MVSdoGeometry object to create a polygon and add it to the map with a yellowish transparent color.
    function stateChanged()
         if (xmlHttp.readyState==4)
              var geomLocStart=xmlHttp.responseText.indexOf('<GEOM>');
              var geomLocEnd=xmlHttp.responseText.indexOf('</GEOM>');
              mapview.removeFOI("highlightPoly");
              if ((geomLocStart > 0) && (geomLocEnd > 0)){
                   var ptStr=xmlHttp.responseText.substring(geomLocStart+6,geomLocEnd);
                   var ptAry = ptStr.split(",");
                   var shape = MVSdoGeometry.createPolygon(ptAry,32774);
                   var foi = new MVFOI("highlightPoly", shape, dataSource + ".C.TRANS_YELLOW", "", 0, 0);
                   mapview.addFOI(foi);
    for selecting multi, I pass the points that make up the rectangle tool or polytool by first grabbing them like so
    var rectCoords = rectangleTool.getRectangle().getOrdinates();
    then I pass those coordinates to my aspx page and run a spatial query using them to grab all zips that interact with that rectangle. I also union the results together and return just a single poly to the AJAX call.
    I also ended up expanding the XML response to include data about the selected objects and display that in a grid below the map. Seems to work pretty well.
    -Brian

Maybe you are looking for

  • No sidechain option on compressor

    Hey, having a little trouble using sidechain compression in Logic Pro X. When i open up the compressor no matter what channel or bus it is on, there is no way to choose the sidechain option. I have seen video tutorials and it is as if everyone has a

  • Why does sound volume turn down to zero automatically

    I just upgraded to IOS5.  I set my sound volume to high in settings, but I notice that it does not ring soon after that. When I look at the settings again, the speaker volume setting has moved completely to the left (low). Is anyone else having this

  • Trying to move inner class to a class file

    Hi folks, I keep getting an error which puzzles me. I cut the following class (MyDocumentListener) out of an outer class (CenterPanel). MyDocumentListener compiles OK but... Now when I compile the outerclass I get the folowing error: C:\divelog> java

  • Hard Drive Crash and Website

    My hard drive died and after reloading data onto new drive I am unable to work on my iWeb site. The site is on-line. How do I get it back into newly installed version of iWeb?? Thanks

  • While loop not breaking?

    I'm writing a parser for some text files. My setup looks like so: public void parseFile(String fileNameIn) throws IOException{         BufferedReader br = new BufferedReader(                 new FileReader(fileNameIn));         String line = null;