AS3 dropped MovieClip does not have the dimensions of the parent

Please help me with my code. I'm working on a project to map with several video clips that are dragged and dropped off on their respective film clips.

PROBLEM:

Initially, video clips draggable decrease their original size. When they are deposited on their corresponding video clip, I want to take the dimensions of the films placed on the map. How to do this?

HERE IS MY CODE

Stop();

var startX:Number;
var startY: number;
var finalX:Number;
finalY var: number;

var finalWidth:Number;
var finalHeight:Number;

var counter: Number = 0;

alta_mc1.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc1.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc3.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc3.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc2.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc2.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc4.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc4.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc5.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc5.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc6.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc6.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc7.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc7.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc8.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc8.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc9.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc9.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc10.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc10.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc11.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc11.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc12.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc12.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc13.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc13.addEventListener (MouseEvent.MOUSE_UP, dropIt);
alta_mc14.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
alta_mc14.addEventListener (MouseEvent.MOUSE_UP, dropIt);

function pickUp(event:MouseEvent):void {}
event.target.startDrag (true);
event.target.scaleX = 1.2;
event.target.scaleY = 1.2;
m_txt. Text = "";
event.target.parent.addChild (event.target);
startX = event.target.x;
startY = event.target.y;
}

function dropIt(event:MouseEvent):void {}

event.target.stopDrag ();
var myTargetName:String = "target" + event.target.name;
var myTarget:DisplayObject = getChildByName (myTargetName);
If (event.target.dropTarget! = null & & event.target.dropTarget.parent == myTarget) {}
m_txt. Text = "Good Job!"
event.target.removeEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
event.target.removeEventListener (MouseEvent.MOUSE_UP, dropIt);
event.target.buttonMode = false;
Flex418 = myTarget.x;
Finally = myTarget.y;
HERE'S WHERE I CAN'T MAKE THE DROPPED CLIP MOVIE CLIP DIMENSIONS OF THE PARENT.
finalWidth = event.target.width
finalHeight = event.target.height;


counter ++;
} else {}
m_txt. Text = "Try Again!";
Event.Target.x = startX;
Event.Target.y = startY;
event.target.scaleX = 1;
event.target.scaleY = 1;

}
if(Counter == 14) {}
m_txt. Text = "Felicitaciones! HA colocado todos los municipios correctamente. « ;
}
}

alta_mc1.buttonMode = true;
alta_mc2.buttonMode = true;
alta_mc3.buttonMode = true;
alta_mc4.buttonMode = true;
alta_mc5.buttonMode = true;
alta_mc6.buttonMode = true;
alta_mc7.buttonMode = true;
alta_mc8.buttonMode = true;
alta_mc9.buttonMode = true;
alta_mc10.buttonMode = true;
alta_mc11.buttonMode = true;
alta_mc12.buttonMode = true;
alta_mc13.buttonMode = true;
alta_mc14.buttonMode = true;

completo. Visible = false;


help_1.addEventListener (MouseEvent.CLICK, showMap);
function showMap(event:MouseEvent): void {}
completo. Visible = true;
}


help_1.addEventListener (MouseEvent.ROLL_OUT, showMap1);
function showMap1(event:MouseEvent): void {}
completo. Visible = false;
}

Thank you

German

Try:

Stop();

var startX:Number;
var startY: number;
var finalX:Number;
finalY var: number;

var finalWidth:Number;
var finalHeight:Number;

var counter: Number = 0;

for (var i: uint = 1; i<>

This ["alta_mc" + i.ToString ()] .addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);

This ["alta_mc" + i.ToString ()] .addEventListener (MouseEvent.MOUSE_UP, dropIt);

This ["alta_mc" + i.ToString ()] .buttonMode = true;

}

function pickUp(event:MouseEvent):void {}
event.target.startDrag (true);
event.target.scaleX = 1.2;
event.target.scaleY = 1.2;

m_txt. Text = "";
event.target.parent.addChild (event.target);
startX = event.target.x;
startY = event.target.y;
}

function dropIt(event:MouseEvent):void {}

event.target.stopDrag ();
var myTargetName:String = "target" + event.currentTarget.name;
var myTarget:DisplayObject = getChildByName (myTargetName);
If (event.target.dropTarget! = null & event.target.dropTarget.parent == myTarget) {}
m_txt. Text = "Good Job!"
event.target.removeEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
event.target.removeEventListener (MouseEvent.MOUSE_UP, dropIt);
event.target.buttonMode = false;
Flex418 = myTarget.x;
Finally = myTarget.y;
HERE'S WHERE I CAN'T MAKE THE DROPPED CLIP MOVIE CLIP DIMENSIONS OF THE PARENT.
event.currentTarget.width = myTarget.width;
event.currentTarget.height = myTarget.height;

counter ++;
} else {}
m_txt. Text = "Try Again!";
Event.Target.x = startX;
Event.Target.y = startY;
event.target.scaleX = 1;
event.target.scaleY = 1;

}
if(Counter == 14) {}
m_txt. Text = "Felicitaciones! HA colocado todos los municipios correctamente. « ;
}
}

completo. Visible = false;

help_1.addEventListener (MouseEvent.CLICK, showMap);
function showMap(event:MouseEvent): void {}
completo. Visible = true;
}

help_1.addEventListener (MouseEvent.ROLL_OUT, showMap1);
function showMap1(event:MouseEvent): void {}
completo. Visible = false;
}

Tags: Adobe Animate

Similar Questions

  • exp.exe System/pass@xe_345 does not have the name of the service as input

    Please suggest,


    can be used below command name service
    exp.exe System/pass@xe_345 does not have the name of the service as input

    What is the problem with the command below
    C:\oraclexe>exp.exe system/pass@XE file=hr.dmp log=hr.log consistent=y owner=hr
    
    Export: Release 10.2.0.1.0 - Production on Wed May 12 16:16:28 2010
    
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    
    EXP-00056: ORACLE error 12541 encountered
    ORA-12541: TNS:no listener
    EXP-00000: Export terminated unsuccessfully
    
    C:\oraclexe>exp.exe system/pass file=hr.dmp log=hr.log consistent=y owner=hr
    
    Export: Release 10.2.0.1.0 - Production on Wed May 12 16:16:56 2010
    
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Productio
    n
    Export done in AL32UTF8 character set and AL16UTF16 NCHAR character set
    
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user HR
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user HR
    About to export HR's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export HR's tables via Conventional Path ...
    . . exporting table                      COUNTRIES         25 rows exported
    . . exporting table                    DEPARTMENTS         27 rows exported
    . . exporting table                      EMPLOYEES        107 rows exported
    . . exporting table                           JOBS         19 rows exported
    . . exporting table                    JOB_HISTORY         10 rows exported
    . . exporting table                      LOCATIONS         23 rows exported
    . . exporting table                        REGIONS          4 rows exported
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully without warnings.
    
    
    
    ^C
    C:\oraclexe>
    C:\oraclexe>
    C:\oraclexe>
    C:\oraclexe>
    C:\oraclexe>
    C:\oraclexe>exp.exe system/pass@xe_345 file=hr.dmp log=hr.log consistent=y owner
    =hr
    
    Export: Release 10.2.0.1.0 - Production on Wed May 12 16:18:27 2010
    
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    
    EXP-00056: ORACLE error 12541 encountered
    ORA-12541: TNS:no listener
    EXP-00000: Export terminated unsuccessfully
    
    C:\oraclexe>lsnrctl status listener
    
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 12-MAY-2010 16:18
    :39
    
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    ------------------------
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date                06-MAY-2010 15:32:57
    Uptime                    6 days 0 hr. 45 min. 41 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Default Service           XE
    Listener Parameter File   C:\oraclexe\app\oracle\product\10.2.0\server\network\a
    dmin\listener.ora
    Listener Log File         C:\oraclexe\app\oracle\product\10.2.0\server\network\l
    og\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=suvarna)(PORT=1521)))
    Services Summary...
    Service "ORCL" has 2 instance(s).
      Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
      Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
      Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XE" has 1 instance(s).
      Instance "XE", status UNKNOWN, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orcl_XPT" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    
    C:\oraclexe>tnsping XE_345
    
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 12-MAY-2
    010 16:19:18
    
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    
    Used parameter files:
    C:\OraHome_1\network\admin\sqlnet.ora
    
    
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = suvarna)
    (PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE)))
    OK (30 msec)
    
    C:\oraclexe>exp.exe system/pass@xe_345 file=hr.dmp log=hr.log consistent=y owner
    =hr
    
    Export: Release 10.2.0.1.0 - Production on Wed May 12 16:19:37 2010
    
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    
    EXP-00056: ORACLE error 12541 encountered
    ORA-12541: TNS:no listener
    EXP-00000: Export terminated unsuccessfully
    
    C:\oraclexe>

    Seems you have the strategy (profile) password for the user of the SYSTEM, but it cannot be reason of errors like ' no. LISTENER '

    Question:

    change the unlock SYSTEM user account;

    Published by: Teymur Hajiyev 12 May 2010 16:15

    adding text "BOLD"

  • Travel regions of Australia to New Zealand, which does not have the licenses for TV shows, will be my TV shows that I bought in Australia removed once I have change of regions in New Zealand?

    Travel regions of Australia to New Zealand, which does not have the licenses for TV shows, will be my TV shows that I bought in Australia removed once I have change of regions in New Zealand?

    N ° save them anyway.

    (138403)

  • PC health check-up according to my monitor does not have the minimum required display settings and change the DPI by default survey

    Original title: DPIdefsault level

    I am trying to install a pc health check-up for my laptop but it says my monitor does not have the minimum required display settings and change the default DPI level.  How do I do that?

    What version of Windows?  You can change the DPI on Windows XP but right click on your desktop, choose Properties, selecting the tab settings, clicking on advanced and change the dropdown to DPI.  Other versions of Windows have similar steps.

  • Windows search service couldn't start. The system does not have the specified path. How can I fix it?

    I'm having a problem where IE takes up to five minutes for a web page.   I see the mistake of follow up in the event viewer:

    Log name: System
    Source: Service Control Manager
    Date: 14/08/2012 21:14:10
    Event ID: 7000
    Task category: no
    Level: error
    Keywords: Classic
    User: n/a
    Computer: Owner-PC

    Description:
    The research service Windows could not start because of the following error:
    The system does not have the specified path.

    The event XML:
    http://schemas.Microsoft.com/win/2004/08/events/event ">"
     
       
        7000
        0
        2
        0
        0
        0 x 80000000000000
       
        391647
       
       
        System
        Owner-PC
       
     

     
        Windows Search
        %%d Ko
     

    When I run the program Microsoft FixIt Center I get 3 error messages that do not reach the difficulty.

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

    (1) Windows Search is crashing or not fixed failing

    Windows Search crashes or breaks down after that that she has started.  In addition, an event ID 7042, 100 or 1000 is logged in the Windows event log, or the Windows Search Service is not running.

    (2) search Windows does not start and gives an error message no fixed

    Windows Search does not search results show and there is an error at startup.  A 3024 or event ID 1006 is logged in the Windows event log, or the Windows Search Service is not running.

    (3) Windows search shows no results not fixed

    Windows Search shows no results.  In addition, an event ID 7040 is logged in the Windows event log, or the Windows Search service is not running.

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

    Someone at - it solutions?  Oh, I'm running Vista 32 Home SP2

    Thank you

    Hello

    Did you change to the computer?

    I suggest you to see the links and check.

    The problems with the search

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-searching

    Improve Windows searches using the index: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/improve-Windows-searches-using-the-index-frequently-asked-questions

    Ways to improve your computer's performance

    http://Windows.Microsoft.com/en-us/Windows-Vista/ways-to-improve-your-computers-performance

  • Windows Installer service is stopped 3 error "the system does not have the specified path.

    Original title: Windows Installer Service is stopped

    When I try to start the windows service install, I get: Windows could not start the Windows Installer Service on local computer.
    Misconception # 3 "the system does not have the specified path.

    Hello

    Try the methods below and check if the problem persists.

    Method 1:

    I suggest that you follow the steps under the heading Windows Installer issues in the link below to fix the problem.

    How to troubleshoot issues that may occur when you install, uninstall, or upgrade one program on a Windows computer

    http://support.Microsoft.com/kb/2438651#reso1

    Method 2:

    You can also try running a Scan SFC (System File Checker):
    SFC/scannow is a very useful command that you can use in any version of Windows. When the SFC (System File Checker) command is used with the/scannow switch, the tool analyzes all the important files of Windows on your computer and replace if necessary.

    Missing and the corruption of the operating system (like many DLLs) files are probably the main cause of the major problems of Windows. In view of this, plus the fact that the SFC /scannnow is completely automatic and very easy to use, the tool should be usually one of your top not troubleshooting.

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7

    http://support.Microsoft.com/kb/929833

     

     

  • Unable to connect to my profile at the start, the SCREENS ' SAYS the PROFILE SERVICE does NOT have the USER logon

    "Unable to connect to my profile when starting, SCREENS SAYS'THE PROFILE SERVICE does NOT have the USER logon"

    Profile of user could not be added

    Hello

    1st thing to try is the system in safe mode restore to before the problem

    http://www.windowsvistauserguide.com/system_restore.htm

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode option with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.

    If that does not solve it read more

    read the tutorial below

    http://www.Vistax64.com/tutorials/130095-user-profile-service-failed-logon-user-profile-cannot-loaded.html

    When you log on a Windows Vista-based or a Windows 7 computer by using a temporary profile, you receive the following error message:

    The user profile Service has not logon. User profile cannot be loaded.

    http://support.Microsoft.com/kb/947215#letmefixit

    Your user profile was not loaded correctly! You have been logged on with a temporary profile.

    http://support.Microsoft.com/kb/947242

    If you tried to log on to Windows and received an error message telling you that your user profile is damaged, you can try to fix it. You will need to create a new profile and then copy the files from the existing to the new profile.

    http://Windows.Microsoft.com/en-us/Windows-Vista/fix-a-corrupted-user-profile

  • Pavilion HP 630: this system does not have the minimum requirements

    installation of the graphics driver for windows 8.1 64 bits in my laptop (i3 processor) been error in this system does not have the minimum requirements

    Hello:

    Your laptop is not supported by HP for W8.1.

    See if the driver W7 support page for your laptop works.

    Install manually if auto installation does not work.

    This package provides the driver that allows graphics Intel high definition (HD) in the notebook models that are running an operating system supported. If the video output high-definition multimedia interface (HDMI) is supported, this package also installs the HDMI Audio Driver.

    File name: SP52195.exe

  • Is there a download from Microsoft which will create a bootable usb media that does not have the drivers?

    Original title: A bootable Windows 7 media

    I work on a Lenovo 2-in-1 with Windows 7 (for games) and 10 (for a normal use) Windows to dual-boot. I created a USB stick with Windows 7 Pro (64 bit) of a legitimate Windows 7 Pro disc. The computer starts on the usb device and plays normally, however, one of the steps asks a driver for cd/dvd and this 2-in-1 (Lenovo Flex 3) doesn't have a built-in CD/DVD. All other drivers are located in a folder system. My question is, given my key Windows 7 can I create a new bootable media that does not demand drivers? Is there a download from Microsoft which will create a bootable usb media that does not have the drivers? I know that I can reinstall the drivers manually after the installation.

    Thank you

    Matt Armshaw

    Windows 7 or Windows 10 come preinstalled?

    If you install Windows 7 on a system that is preinstalled with Windows 10, you must do the following before:

    -Disable the secure boot UEFI

    -Disable the quick start

    -L' install created media can be corrupted.

    How to: Dual Boot Windows 7 or Windows 8 with Windows installed 10 first

    I suggest that you try to create another bootable copy.

  • Windows Media Center EPG does not have the correct data

    Windows Media Center EPG on my computer is so ugly!

    Description is separated in two, and it's always the last part that displays first, so you'll have to roll down to the bottom to read the description.

    The series is difficult to use, because the series 1) is not always marked as series (so you can select 'plain' Record), and 2) the title contains often series of numbering (e.g. "the bodyguards (1:6)"), so even if it is marked as a series, it will record ever "Guards body (2:6)" or other titles (the Media Center will just try to record any episode of "Bodyguards (1:6)").

    It is the broadcaster who create * data, and then displays in Media Center via Broadcasting Dataservices Ltd., or who are the last to blame?

    What is MS Media Center that does not have the correct data?

    I am in Denmark, if this has an impact on the response.

    Thank you and best regards!

    Hello

    Thank you for your response. I appreciate your time.

    I suggest you to post your query on our MSDN Forums, as this issue should be better there.

    Please refer to the reference to the link below to send your request:

    http://social.msdn.Microsoft.com/forums/en-us/home

    Hope this information helps.

  • WIN 7 does not have the net driver for Asus A2D WHAT CAN I DO. I HAVE THE CONNECTION TO THE LOCAL NETWORK.

    WIN 7 does not have the net driver for Asus A2D. or I'm unable to find it.
    WHAT I CAN DO. I HAVE THE CONNECTION TO THE LOCAL NETWORK.
    Thanks for any idea, address etc.
    DragMil
    You can wito to * address email is removed from the privacy *.

    Try an older driver installed in compatibility mode

    To run in compatibility mode do the following:

    Click with the right button on the installer > properties > compatibility > choose OS

    http://Windows.Microsoft.com/en-us/Windows-Vista/make-older-programs-run-in-this-version-of-Windows?SignedIn=1

  • the user of Windows 8 service does not have the opening of the session; user not found.

    I can't sing on my PC. The display of error messages: SERVICE does NOT have THE USER LOGIN; USER NOT FOUND.

    I only have one user on my PC and its administrator. I tried the system restore and I did not work.

    Hello

    Please try this patch and see if that helps:

    http://www.kapilarya.com/user-profile-service-failed-the-logon

    Hope this helps, good luck :)

  • GlassFish does not have the result of the action

    My glassfish does not have the result of the action, maybe the adfc-config not the welcome-file project, because from the moment where I redirect on a bean for the workflow, it starts to run the result, perhaps the answer to this problem either, like the adfc-config is the welcome file of the application.

    Remove the .jsf and try again

  • UCR-6002: the database specified does not have the minimum requirement to load the metadata repository.

    Hi all

    I want to install a test environment with the following software products:

    WebLogic Server 10.3.6

    WebCenter Capture 11.1.1.8.0

    WebCenter Imaging 11.1.1.8.0

    BPM 11.1.1.7.0

    SOA Suite 11.1.1.7.0

    Oracle Database Enterprise Edition Release 12.1.0.2.0 12 c

    I use the remote 11.1.1.8.0 to create the database schemas.

    When RCU checks the prerequisites, it comes up with a warning as follows:

    «The database you connect to, is one newer than the supported version.» See the matrix of certification for the supported DB versions".

    If I type 'ignore' on the message box, it stops the verification process will not continue. Also, if I type "Cancel" does the same thing.

    The error message displayed in the Message box is both below:

    UCR-6002: the database specified does not have the minimum requirement to load the metadata repository.

    UCR-6080: Global check prerequisites failed - requirement of verification for the specified database

    The database that you connect is a CDB that is not supported.

    Action taken:

    1. check again on the database character set and confirmed it is set up correctly for AL32UTF8

    2. the databases are supported for WebCenter 11.1.1.8.0 + 12.1.0.1, so the database version is supported.

    Hope someone knows what's going on.

    Thanks in advance.

    Try to create a plugable (PDB) database within the CBD and then rerun

    the UCR.

    May be restricted the RCU to install MDS and other schemas FMW the

    CBD, but rather in the PDB.

    More information on PDB and CBD you can find here

    http://docs.Oracle.com/database/121/CNCPT/cdbovrvw.htm#CNCPT89235

    Hope that helps,

    Anatoli

  • My work as a Photoshop Mix does NOT have the Adobe library.  I have already sent more than 100 things at the library (successfully!)  It has now stopped working.  Photoshop Mix not send.  If I delete the Photoshop Mix of iPad Pro.  It will remove a

    My work as a Photoshop Mix does NOT have the Adobe library.  I have already sent more than 100 things at the library (successfully!)  It has now stopped working.  Photoshop Mix not send.  If I delete the Photoshop Mix of iPad Pro.  It deletes all the pictures in Photoshop Mix?  I had technical support look in my ADOBE Office without success. (case 187698996)  Thank you.  I have several files in the Adobe library and checked all the. Nothing appears from my Photoshop Mix.

    Thank you.

    Susan hers

    Update: Susan fixed this problem by uninstalling and reinstalling the application.

Maybe you are looking for

  • How to shrink a webpage on my monitor?

    Unable to see the entire web page without moving the page to the right.

  • HP Pavilion HDX9280EL black screen

    Hello, I have a laptop HP Pavilion HDX 9280el that until last week worked, but after a few operations to remove the virus and also some updates from microsoft windows 7 64-bit, began to plant continuously, I tried to read as many post on this problem

  • Stream laptop 11 HP: HP flow 11 - D001TU 2 GB of ram built-in 32 GB

    Can I extend the storage/ram with this type of model?

  • Windows Media Player 12: Can he play FLV?

    I love, love, love Windows 7 mainly because of the ability of WMP12 play MP4, AAC, .mov and other formats, but why he doesn't play FLV? I have to keep VLC around to play FLV. It's crazy. Is it because Adobe has shouted at the antitrust Court? GOLD: i

  • Should I delete Adobe reader 9?

    Several years ago, when I had Windows XP, I got Adobe reader 9. I've put in my Seagate external hard drive in case my computer would crash. I guess that it is a good idea to delete now.  Fix?Sincerely,Victress Jenkins