Problems with Module Ajax crawling

Hi all

I have a problem to crawl on the homepage of my site, and robots do not seem to go the home page (for the analysis of the links) because the data that is retrieved by a module Ajax. I am trying to find a way to make the explorable links, my approach would be to show a different view when Javascript is disabled. I just need validation that would work the code below:

<!-start world-content->

"" <div id= "global-good" > <! - beginning of ajax content - >

Tourisme Laval - lots of business to do < h1 > < / h1 >

< ul >

< Li > < strong >Hotel Laval < facilities > : Laval offers many accommodation throughout the year. < /li >
< li > < strong > Cavalia ODYSSEO - from 14 may2013 / < facilities >: after a year of triumphant North American tour, Odysséo returned to Quebec, Laval! < /li >

< li > < strong > World of Loto-Québec Laval - 19 June to 7 July2013 / < facilities >: the world Loto-Québec in Laval is without a doubt the summer festival in Laval with hundreds of music shows pay everyone. < /li >

< /ul >
<! - end of the ajax content - >

< /div ><!-end of the overall content->

By placing the HTML replacement here (who would be replaced on loading AJAX content), it would be sufficient for the links to be explored?

Thanks for your help!

Helene

In other words, this explanation, I wouldn't be able to add tags html within the

You feel the explanation (which is awkward in any case).

Nothing would prevent you from placing HTML tags within any block element - that's what they are for. And its use is ideal for your purposes, I think.

Tags: Dreamweaver

Similar Questions

  • Problem with module 3G Tecra R10 - 10W

    Hello

    I got a new Tecra R10 - 10W a month ago.
    Until yesterday, the 3G module worked fine. This morning I got a blue screen on the end of Windows. After the computer restarts I heard the tone of conecting/disconecting some USB device several times. After the short survey, I found my 3G module enabling / dissabling every few seconds.
    In the control panel/phone options and modem, I found two modems broadband TOSHIBA is on COM3/COM4, 'away', or 'Non-functional '.
    I installed all the new software up to date, as it was shown on Toshiba TEMPRO, bur after that restart the computer got the same result.
    Later, I had Windows termination screen again.

    Please let me know what is the problem and how to solve?

    Best regards

    Hello

    Something seems to be confused at the top on the system
    Maybe it was a new update reported by Tempro. Who knows.
    Always is it that there is an error in device (3G) in Device Manager

    I think you should simply remove the 3G (high-speed modems) module from the Device Manager and reboot the laptop.
    After the new reboot the operating system should recognize the deleted devices and should install it again
    In most cases, it helps to solve these problems

    But if you're not going to succeed, I recommend uninstalling the software from the 3G module, then you must clean the BONES and the registry with a free cleaning tool (i.e. CCLeaner).
    Reboot several times to ensure that everything has been properly cleaned and finally try to reinstall this software again

    Mate good luck

  • Satellite C660 - 21 c - problems with modules of RAM

    Hello

    I was considering upgrading my RAM for my C660 - 21 c from 4 GB to 8 GB. So I decided to leave my 4 GB of ram in the ram slot to see the name & type of latter. Once I did, I inserted it, however, now, when I press the power button, the laptop turns on for about 5 seconds then turns off.

    I checked the stick of ram in both slots and it s certainly equipped properly. Is could someone please tell me what is the problem? I got a stick of ram dead for some reason any or if I've done a few other serious effects for the machine, i.e. static destroying the ram or the whole machine?

    Could someone help troubleshoot the please my problem?

    Thank you

    Chris

    Have you unplugged the AC adapter / CC and removed the battery before you start playing with the memory modules?

  • Unusual problem with module LR 5 development - not the whole window is selectable to zoom in, that the right and the bottom of the window of the screen

    Searched but to no avail.

    I development of images in module development and must have something, I couldn't zoom in or "right-click" (I'm on a MBP) in the window of developer to add color annotations. Very frustrating.

    I realized that the right part of the window of developer and the lower part of the horizontal were selectable, but it makes trimming and zoom a real pain.

    I am sure that there is a switch or some other config in LR to make the entire window develop selectable, there are 'handles' in the area between selectable, not when you hover nearby, but they seem not to be mobile.

    The dev module is set to FIT BTW.

    Maybe it's not the question, but the symptoms sound the same. There is a known problem on the Mac where the secondary window causes a loss of input of cursor over the region where it was exposed (even if you have closed the it). If it's the case in tilting the window on and out again will work around the issue.

    Lightroom: Window blocks clicks even when school closed after the passage of the office space

  • What is the problem with my AJAX process and '&amp; '.

    On the page where I create a new record, in my line of work, I put P10_ID with the newly created primary key and then 10 page loads.

    I have and onload call in the header of the page 10 - onload = "getValues (document.getElementById ('P10_ID')); »

    I want to put my page 0 items, that works, except if I use an ampersand in one of my fields. I have a hard time understanding why... What is so special about the ampersand? I tried to convert a hex and ascii value but my page 0 items will be unaffected. I get a javascript error that reads: '0' is null or not an object. When I spell out "and" instead of using the ampersand, my page 0 items ARE correctly defined.

    Here's the code...

    My getValues function is:
    function getValues(pValue) {
      var xml = null;
      var get = new htmldb_Get(null,$v('pFlowId'),'APPLICATION_PROCESS=Set_Page_Zero',0);
    
      get.add('AI_PRIMARYID',pValue.value);
      ret = get.get('XML');
    
      if(ret) {
        var lName = ret.getElementsByTagName("LASTNAME");
        if(lName) {
          var last = document.getElementById("P0_LASTNAME");
          last.value = lName[0].getAttribute("VALUE");
        }
        var fName = ret.getElementsByTagName("FIRSTNAME");
        if(fName) {
          var first = document.getElementById("P0_FIRSTNAME");
          first.value = fName[0].getAttribute("VALUE");
        }
      }
      get = null;
    }
    My application process is:
    DECLARE
      vFIRSTNAME varchar2(100);
      vLASTNAME varchar2(100);
    BEGIN
      owa_util.mime_header('text/xml',FALSE);
      htp.p('Cache-Control: no-cache');
      htp.p('Pragma: no-cache');
      owa_util.http_header_close;
      htp.prn('<DATA>');
        select firstname, lastname into vFIRSTNAME, vLASTNAME from addresses where pk_id = :AI_PRIMARYID;
      htp.prn('<FIRSTNAME VALUE="' || vFIRSTNAME || '"></FIRSTNAME>');
      htp.prn('<LASTNAME VALUE="' || vLASTNAME || '"></LASTNAME>');
    EXCEPTION WHEN OTHERS THEN
        htp.prn('<FIRSTNAME VALUE="No records exist"></FIRSTNAME>');
        htp.prn('<LASTNAME VALUE="No records exist"></LASTNAME>');
    END;
    I can't copy and paste so I hope that I did not mistakes in patching.

    Any idea's what is the problem and how to fix it?
    Thank you
    Tammy

    Hello

    Thanks for that--I don't know how I find time either!

    First of all, I would like to replace & with a ridiculous character who is not likely to appear in the text – something like ^ maybe.

    Thus, in the process:

    select REPLACE(firstname,'&','^'), REPLACE(lastname,'&','^') into vFIRSTNAME, vLASTNAME from addresses where pk_id = :AI_PRIMARYID;
    

    then in javascript:

    last.value = lName[0].getAttribute("VALUE").replace("^","&");
    

    It is possible that this may have to be:

    last.value = lName[0].getAttribute("VALUE").replace("^","& amp;");
    

    (there is no space between the & amp;-j' had to add that in the post!)

    Andy

    Published by: ATD on November 11, 2009 17:49

  • Problem with the AJAX server process

    Hi team,

    I use APEX 5.0, apex.server.process to update a collection, and this process uses "async = false" (I need it and can't remove that I want to wait for results before the next call is made)

    My code below

    function f_UpdateCollection(v_fixture, v_store)
    {
        apex.server.process
        (
            'UPDATE_FIXTURE',
             {
                x01: v_fixture.checked,
                x02: v_fixture.value,
                x03: apex.item('P46_PARENT_PAGE').getValue(),
                x04: v_store,
                x05: apex.item('P46_PLAN_ID').getValue(),
                x06: apex.item('P46_BU_ID').getValue()
           },
           {
                dataType : 'text',
                async: false,
                success : function(pData)
                {
                     //alert(pData);
                },
                loadingIndicatorPosition:'page'
           }
        );
    }
    
    

    The question is as soon as I put async = False, my loading indicator stops working and the page looks like hanged for about 10 seconds. I want this to work with async = false. If I withdraw this statement, indicator of loading works fine. Can someone Guide, how can I use indicator of loading with async = false;

    Thank you

    Sunil Bhatia

    Hello

    You can collect the values of table and box to pass the application process.

    This way you only call once your process.

    But I'm not well understood what you are trying to do.

    Kind regards
    Jari

  • Problem with the Satellite Pro 2100 and new modules of RAM

    Hello

    I have a Toshiba Satellite Pro 2100 and I have a problem with the memory upgrade.
    My notebook of startup only if a plug-in module to a ddr, but if I insert the two modules IN CC led orange flashing start when I try to turn on the pc. The stop led not blinking unless I take out the battery and the dc adapter.
    Here is the code of the modules:
    KTT3614/256 (original)
    KVR266X64SC25/256
    256 MB pc2100 both.
    Starting the PC with any of them, as well as the modules are both compatible.

    Any ideas?
    (Sorry for my English but I'm Italian: D)

    Post edited by: DaK_TaLeS

    Hello

    the second location of memory perhaps is the problem.
    Try to start with a module in the second slot, first an empty slot.

    Good bye

  • Problem with the module "Automation" in WindowsAzure

    Top: Problems with the module used "Automation" service "WindowsAzure.

    Hello!

    I really need your help to decide my problem of "Azure Automation". My boss has set a task for the 'Automation' module allows you to make a backup of Virtual Machines.

    To understand my problem, I do the next:

    1. describe the situation of all;

    2. describe the problems that appear in this situation;

    3. my conclusions.

    In addition, I am attaching the necessary information: my PS-scripts (from Windows and the automation of azure), log (with my notes) and screenshots (images with my notes) see file .rar Add_info (annex).

    1 description any situation

    For our development projects, we have several Virtual Machines on service cloud "WindowsAzure. We need to make backups of discs with Virtual Machines each week. Earlier, for this task, I used Windows PowerShell on my computer and my PS-script (see Ann 0 - VM (backup) of the WPS_snapshot). I created a new storage 'backupstor' and containing 'snaps-drive '. When I run PS-script with my computer, I have backup of disks virtual Machin in the container "snaps-disk", without problem.

    Now I have a new task "automatically make the process of creating backup of Virtual Machines (VM snapshots). I tried to use automation module (overview). Can I change my PS script for the 'Automation' module and create folders (see Ann 1 - records (make backups of virtual machines) _Azure_Automation).

    I need to make a backup of Virtual Machine 'bosard' in the cloud 'cloudnet. "Bosard" on the disc size ~ approximately 90 000 000 000 bytes (total size of the default drive size 127 GB/136 367 309 312 bytes)

    2. description of the problems that appear in this situation

    My steps:

    1. I start files to make a backup of Virtual Machine disk (see annex 1 - files (make backups of virtual machines) _Azure_Automation))

    2. it starts successfully and generate the name of backup 1 (blob) - snapshot-bosard - osdisk_07.10.2014_07h00m39s.vhd (see image 1 - start copy backup 1 and annex 2 - log file copy process)

    3. the process of backup copy 1 (blob) will...

    Problem 1:

    4. the process of backup copy 1 (see Appendix 2 - process log file copy) automatically stops and complete to copy the part 1/3 bytes copied 28311552000only. Important: The size of my virtual machine disk ~ on 90 000 000 000 bytes.  (Maximum possible) of total capacity of the disk where the Virtual Machine is used - 136 367 309 312 (127 GB). (See picture 2 - stop backup copy 1)

    5. I have Virtual size 1 backup - 28311552000bytes, when the size of my VM - 90 000 000 000 / 136 367 309 312 bytes.

    Problem 2:

    6. after the termination of the process automatically makes copy backup 1, records (see annex 1 - files (make backups of virtual machines) _Azure_Automation) automatically start (see picture 2 - stop backup copy 1) and folders automatically create new snapshot Backup 2 - name - bosard - osdisk_07.10.2014_07h31m33s.vhd (see annex 2 - process log file copy, image 3 - stop the copy backup 1 & Begin copy backup 2 and 5 - backupStore_Azure (process)of image)

    7. I pressed "stop" and stopped the process of copy and folders (picture 4 - I stopped the process of creating backup 2 & records). And how result I had size Backup 1 and 2 = 0 bytes (see image 6 - backupStore_Azure (I order records))

    Note:

    1 problem 1: the process of backup of virtual machine does not complete and stops automatically.

    2 problem 2: the process of creating new second backup starts automatically. And as a result, we do not have the backup of virtual machine, when I use the 'Automation '.

    3. my conclusions

    I think that:

    1. my PS script for Automation (files) is not correctly. Then I need your help, how to fix this.

    2 may be the module "Automation" is not working correctly. And the module 'Automation' needs repairs and settings.

    In addition, I am attaching the necessary information (see the Add_info (annex) .rar file):

    Ann WPS_snapshot 0 - VM (backup)

    Ann 1 - records (make backups of virtual machines) _Azure_Automation

    Ann 2 - log file copy process

    image 1 - start the copy backup 1

    image 2 - stop copy backup 1

    image 3 - stop copy backup 1 & Begin copy backup 2

    4. I stopped the image create backup processes 2 & records

    image 5 - backupStore_Azure (process)

    image 6 - backupStore_Azure (I order records)

    Thank you

    Kind regards

    Mikhail

    Hello

    You can get the assisted support from the following link on this point:.

    http://azure.Microsoft.com/en-us/support/options/

  • Problem with the 2007 Hallmark card studio deluxe installation and get error message "Error 1904.Module that cannot save c:\windows\syswow64\msxml4dll".

    Original title: 1904.Module error cannot save C:\windows\SysWOW64\msxml4dll. HRESULT 2147023782 contact your support staff

    I want to install hallmark card studio deluxe 2007 and I got this message

    C:\windows\SysWOW64\msxml4dll Error 1904.module cannot save. HRESULT 2147023782 contact your support staff.

    Someone knows how to fix this?

    Thank you

    Hi Roman,.

    Thanks for posting in Microsoft Community!

    It seems that you have a problem with the installation of Hallmark card studio deluxe 2007 and will receive error message "Error 1904.Module than c:\windows\syswow64\msxml4dll cannot be saved."
    I imagine the inconvenience that you are experiencing. We are here to help and guide you in the right direction.
    I may need a few more details to better understand the issue.
    1. deal with any issue when installing any other program?

    2. did you of recent changes on the computer before this problem?

    Method 1:
    I suggest you to run the fixit and check if it helps.

    Solve problems with programs that cannot be installed or uninstalled
    http://support.Microsoft.com/mats/program_install_and_uninstall

    Method 2:
    If the problem persists, I suggest to perform the clean boot and see if you can install the software.

    By setting your boot system minimum state helps determine if third-party applications or startup items are causing the problem.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or Windows 7:
    http://support.Microsoft.com/kb/929135
    Note: After the boot minimum troubleshooting step, follow step 3 in the link provided to return the computer to a Normal startup mode.
    Method 3:
    If the problem persists, I suggest you try to remove all the temporary files in the temp folder. And check if it helps.
    Follow the steps to clear the temp folder:
    a. click the Start button and in the search in %temp% bar and press ENTER.
    b. the Temp folder opens, press on Ctrl + A , and then press delete.
    Note: I suggest that you backup important file or a folder in the Temp folder.
    You can check the links for more information:
    Get back to us and let us know the State of the question, I'll be happy to help you. We, at tender Microsoft to excellence.

  • I had endless problems with Lightroom since the purchase of subscription for one year in December 2014. Now, the development Module was disabled, as they claim that my subscription has expired...  He spent more time to work does not, and I'm bitterly briv

    I had endless problems with Lightroom since the purchase of subscription for one year in December 2014. Now, the development Module was disabled, as they claim that my subscription has expired...  He spent more time to work does not, and I bitterly regret it.  Help, please!

    Open the Adobe Creative Cloud application then go to preferences then sign out and then sign back with the same Adobe ID that you used to purchase the subscription photographers, that is to say the same e-mail address and password.

    Then open Lightroom and go to the Help menu and make sure that it is signed in with that Adobe ID email address.

  • Problem with printing Module

    A few weeks ago, I tried to print from print and module instead of a photo showing upwards, there was white space.  I uninstalled and reinstalled LR 3 times.  I need help.  Thank you

    Yes. Develop is ok.  I got no problem with any other part of the LR4.  I chose the picture I want to print, and Yes, I select a template.

    My next step, yesterday, I reinstalled 64 LR3 and it works as it should.

    I used LR for several years, I started with LR3, and after about a year and a half has decided I could use the additional functionality of the LR4.  I used 4 LR for a year or more and all

    was just what I wanted.

    I reinstalled LR4 three times.  I compleetly uninstalled every time and started with a new facility.  This brings me to a point of complete annihilation.

    I have fought this during about three weeks now.  I really need a help even if Photoshop want to weigh in on that I would appreciate it

    Thank you for your effort

    F. McLion wrote:

    Develop is OK?

    Did you select a model in the print module and one or a few images on film?

  • Flex 4: problems of Module with the mx AdvancedDataGrid

    Hello

    I have a modular application. SDK is 4.5 Hero.

    The main application loads a module and receives interface components user thereof, which are displayed thereafter.

    In general, the component, returned from the module displays OK with mx components and spark.

    However, if I add AdvancedDataGrid I get the exception:

    --------------------------------------------------

    TypeError: Error #1007: instantiation attempted on a non-constructeur.

    at mx.controls::AdvancedDataGridBaseEx/getSeparator() [E:\dev\hero_private_beta\frameworks\pr ojects\datavisualization\src\mx\controls\AdvancedDataGridBaseEx.as:4619]

    at mx.controls::AdvancedDataGridBaseEx/createHeaderSeparators() [E:\dev\hero_private_beta\fra meworks\projects\datavisualization\src\mx\controls\AdvancedDataGridBaseEx.as:4661]

    at mx.controls::AdvancedDataGrid/createHeaderSeparators() [E:\dev\hero_private_beta\framework s\projects\datavisualization\src\mx\controls\AdvancedDataGrid.as:2428]

    at mx.controls::AdvancedDataGridBaseEx/drawSeparators() [E:\dev\hero_private_beta\frameworks\ projects\datavisualization\src\mx\controls\AdvancedDataGridBaseEx.as:4575]

    at mx.controls::AdvancedDataGridBaseEx/updateDisplayList() [E:\dev\hero_private_beta\framewor ks\projects\datavisualization\src\mx\controls\AdvancedDataGridBaseEx.as:2120]

    at mx.controls::AdvancedDataGrid/updateDisplayList() [E:\dev\hero_private_beta\frameworks\pro jects\datavisualization\src\mx\controls\AdvancedDataGrid.as:2899]

    at mx.controls.listClasses::AdvancedListBase/validateDisplayList() [E:\dev\hero_private_beta\ frameworks\projects\datavisualization\src\mx\controls\listClasses\AdvancedListBase.as:3472]

    at mx.managers::LayoutManager/validateDisplayList() [E:\dev\hero_private_beta\frameworks\proj ects\framework\src\mx\managers\LayoutManager.as:719]

    at mx.managers::LayoutManager/doPhasedInstantiation() [E:\dev\hero_private_beta\frameworks\pr ojects\framework\src\mx\managers\LayoutManager.as:778]

    at mx.managers::LayoutManager/doPhasedInstantiationCallback() [E:\dev\hero_private_beta\frame works\projects\framework\src\mx\managers\LayoutManager.as:1157]

    ---------------------------------

    The compiler option is - keep-all-type-selectors. It works very well with the mx:DataGrid and all other components for example, but not with AdvancedDataGrid.

    My application has the following structure:
    TestLibrary - a library application containing a single interface:
    test. IModuleComponent
    Code:

    test package

    {

    Import mx.core.UIComponent;

    public interface IModuleComponent

    {

    function getComponent(): UIComponent;

    }

    }

    TestModule - an application of module, using TestLibrary as an EPIRB.

    Components:

    -test.module.TestModule.mxml

    <? XML version = "1.0" encoding = "utf-8"? >

    < mx:Module ' xmlns:fx = ' http://ns.Adobe.com/MXML/2009 "

    " xmlns:s = 'library://ns.adobe.com/flex/spark"" "

    "" xmlns:MX ="library://ns.adobe.com/flex/mx" width ="100%" height = "100%"

    implements ="test. IModuleComponent"xmlns:module =". test.module *">" "

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    Import mx.core.Application;

    Import mx.core.UIComponent;

    Import spark.components.Application;

    test import . IInstanceFactory;

    public function getComponent(): {UIComponent

    return new TestComponent();

    }

    []] >

    < / fx:Script >

    " < s:VGroup width ="100%"height ="100%">

    " < s:Label text = 'Module of Test" / > "

    " < module: TestComponent width ="100%"height ="100%" / >

    < / s:VGroup >

    < / mx:Module >

    -test.module.TestComponent.mxml

    <? XML version = "1.0" encoding = "utf-8"? >

    < s:VGroup ' xmlns:fx = ' http://ns.Adobe.com/MXML/2009 "

    "xmlns:s ="library://ns.adobe.com/flex/spark"

    "xmlns:MX ="library://ns.adobe.com/flex/mx"

    width ="100%" height ="100%">

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    Import mx.collections.ArrayCollection;

    [Bindable]

    private var dpADG:ArrayCollection = new ArrayCollection([)

    {Artist:'Ground', Album:'Slanted and enchanted', price: 11.99},.

    {Artist:'Ground', Album:'Brighten the corners', price: 11.99},.

    {Artist:'Healthier', Album:'A child once', price: 11.99},.

    {Artist:'Healthier', Album:'Helium wings', price: 12.99},.

    {Artist:'The doors', Album:'The doors', price: 10.99},.

    {Artist:'The doors', Album:"Morrison hôtel", price: 12.99},.

    {Artist:' Grateful Dead ', Album:' American Beauty ', price: 11.99},.

    {Artist:' Grateful Dead ', Album:'In the Dark', price: 11.99},.

    {Artist:' Grateful Dead ', Album:' Shakedown Street ', price: 11.99},.

    {Artist:'The doors', Album:' Strange Days ', price: 12.99},.

    {Artist:'The doors', Album:'The best of the doors', price: 10.99}

    ]);

    []] >

    < / fx:Script >

    " < s:Label text = ' Test data grid" / > "

    < mx:AdvancedDataGrid

    width ="100%" height ="100%"

    "sortExpertMode ="true"

    dataProvider ="dpADG{}">

    < mx:columns >

    " < mx:AdvancedDataGridColumn dataField ="artist" / > "

    " < mx:AdvancedDataGridColumn dataField ="Album" / > "

    " < mx:AdvancedDataGridColumn dataField ="price" / > "

    < / mx:columns >

    < / mx:AdvancedDataGrid >

    < / s:VGroup >

    -----------------------------------------
    TestComponent is used twice:
    (1) in the module itself
    (2) in function getComponent(), who comes from the IModuleComponent interface.
    TestWebApp - the main web application.
    TestWebApp.mxml:

    <? XML version = "1.0" encoding = "utf-8"? >

    < s:Application ' xmlns:fx = ' http://ns.Adobe.com/MXML/2009 "

    " xmlns:s = 'library://ns.adobe.com/flex/spark"" "

    " xmlns:mx = 'library://ns.adobe.com/flex/mx"" "

    minWidth ="955" minHeight ="600">

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    Import mx.charts.chartClasses.InstanceCache;

    Import mx.core.UIComponent;

    test import . IModuleComponent;

    private onButtonClick() function : void {}

    var app: IModuleComponent = testModule.child as IModuleComponent;

    var testComponent: UIComponent = app.getComponent ();

    group.addElement (testComponent);

    }

    public function createInstance (instanceClass: class): object {}

    return new instanceClass();

    }

    []] >

    < / fx:Script >

    "" < s:VGroup width = "100%" height ="100%" id = "Group">

    " < mx:ModuleLoader id ="testModule"url ="... /.. " /TestModule/bin-debug/test/module/TestModule.swf"" "" "

    height ="100" width ="100%"

    {applicationDomain ="{} }ApplicationDomain.currentDomain"/ > "

    " < s:Button label = 'click me!"click = "onButtonClick ()" / >

    < / s:VGroup >

    < / s:Application >

    ---------------------------------------
    Initially when the web application is started the an AdvancedDataGrid (coming from the ModuleLoader tag that loads TestModule, which contains TestComponent) appears correctly.
    When the button ' Click me ' is clicked - TestComponent another instance should be added in the VGroup.
    Instead the exception above appears.
    IF TestComponent contains mx:DataGrid or any other spark or component MX - everything works fine - the 2nd instance of TestComponent is added.
    This problem only occurs with AdvancedDataGrid.
    I activated - keep-all-type-selectors in TestWebApp, I have tried all combinations of RLS, merged outside of libraries, etc. - no chance.
    The problem with preview of flex 4.1 and 4.5 burrito.
    I know it's a very specific question... but...
    We are trying to create a modular application in our company... and we want to use AdvancedDataGrid (spark DataGrid is not ready yet) so... Please help
    Thanks in advance,
    Deyan

    Create a string with the fully qualified name of the class.

  • Cache problems with Internet Explorer - SCORM quiz loading modules

    Hi, as mentioned in a previous thread I created several SCORMS using Captivate 4 and use Moodle to manage learning. The SCORMS contains a presentation and a short multiple-choice quiz. We are having problems with SCORMS not opening on first page, but rather around the quiz section.

    Internet Explorer-
    Scenario #1. If the user launches a SCORM of Moodle for the first time the module load early on, the first slide (desired result).
    Scenario #2. If a user launches a SCORM a later date, after having already failed the quiz, the module will be loaded at the beginning of the quiz (not result desired, but can live with it).
    Scenario #3. If the user starts a module a later date, after having previously passed the quiz, the module loads the results page and now shows a failure (certainly not aim).

    Firefox-
    The problem described above is not a factor. Regardless the user rank past that the module will initially launch the first slide, whenever it is launched. But Firefox does not results in Moodle notebook.

    CP settings

    The acceptance and rejection in Captivate settings are set to ' go to ' slide 1. The results are passed to the notebook without problem, but it is a problem in the third scenario, if a user launches accidentally after module have successfully earned a pass. Someone at - he encountered this problem and managed to force the module to launch on the first page? Ideally don't want to remind users in clear cache every time when you use IE.

    Any help is appreciated!
    Thank you
    GAV
    Publication of SCORMS in the hat 4 with preferences for AS2, SCORM Version 1.2 and Flash Player 7. Tested with IE8

    Hello

    It is not a cache issue - is in fact of Captivate in "resume function" that does this.

    You must disable this "feature" in Captivate yourself. Access reports settings in Captivate and click LMS customization settings in the lower right. Check the box "never send RESUME data", and then republish your SCORM package.

    / Michael

    Click here to visit the blog of www.captivate4.com

  • Problems with the module supplier of personalized identification information and overview of VMware View Client working together

    I have a Horizon of VMware View client that connects me HVD Windows 7. So when I give view client Vmware Horizon my credentials, it auto logs me. I also created a custom credential provider that works on Windows 7 PC. When I install the custom in the HVD credentials provider, it works if I am already connected to HVD and I simulate CTRL + ALT + DELETE. Can I use my credential provider to "unlock" in. However, if I disconnect of HVD and try to connect using VMware Horizon View client to connect to Windows 7 of HVD, it gets stuck on the screen of the tile. I see the VMware SSO user tile but nothing happens when I click it. Then, I use my provider of customized credentials to connect. I expect to bypass my ISP credentials on the first connection and self as before.

    Anyone have any ideas?

    Thanks for your help.

    OK, I did some more troubleshooting and discovered that it was a problem with auto connection set to TRUE on my side of custom credentials provider (I pbAutoLogonWithDefault to TRUE). Since I still like it TRUE, I had originally set it to FALSE and then change for REAL once my credential provider was used.

    Thank you!

  • I have a problem with the content of spam. Somewhere in the Fox appeared script that's choking me audio spam. Every 30 minutes he's playing an audio clip that is malicious.

    Hello.
    I have a problem with the content of spam. Somewhere in the Fox appeared script that's choking me audio spam. Every 30 minutes he's playing an audio clip that is malicious. I can't find the settings as it eliminated. Now, I don't have any plug-ins and Add-ons strange that were not initially in the Fox, but the problem is there.
    I use the Fox years. The problem, he had 1.5 months after Fox cleaning. If the problem can't win, I'll be forced to give up the browser, and I wouldn't.

    Could test you mode without failure of Firefox? It is a standard diagnostic tool to disable some advanced features of Firefox and extensions. More info: questions to troubleshoot Firefox in Safe Mode.

    Does not work if Firefox: Hold down the SHIFT key when you start Firefox.

    If Firefox is running: You can restart Firefox in Mode safe mode using either:

    • button "3-bar" menu > "?" button > restart with disabled modules
    • Help menu > restart with disabled modules

    and OK reboot.

    Two scenarios: A small dialog box should appear. Click on 'Start mode safe' (not update).

    Any improvement?

    If the problem persists in Mode without failure, could reinstall you Firefox in this way:

    Clean reinstall it

    We use this name, but it isn't about deleting your settings, this is to ensure that the program, files are clean (not incompatible, corrupt or exotic code files). As described below, this process does not disrupt your existing settings. Don't uninstall NOT Firefox, that does not need.

    (1) download a fresh Installer for Firefox 38.0.5 of https://www.mozilla.org/firefox/all/ in an ideal location. (Scroll down your preferred language).

    (2) close Firefox (if applicable).

    (3) to rename the program folder, either:

    (Windows 64-bit folder names)

    C:\Program Files (x86)\Mozilla Firefox
    

    TO

    C:\Program Files (x86)\OldFirefox
    

    (Windows 32-bit folder names)

    C:\Program Files\Mozilla Firefox
    

    TO

    C:\Program Files\OldFirefox
    

    (4) run the installer you downloaded in the #1. It should automatically connect to your existing settings.

    Any improvement?

    Note: Some plugins can only exist in this OldFirefox file. If it is missing something essential, present in these files:

    • \OldFirefox\Plugins
    • \OldFirefox\browser\plugins

Maybe you are looking for