ScrollPane not disappearing after dynamic creation

Gentlefolk;
Have a movieclip that that has formatted text. This content
is longer than the stage, so I thought of putting it in a
scrollpane. Creating a dynamic text box kills the text formatting.
The scrollpane has a name "my_SP". If I have this code on a
button on the page where I want the content to reside, the
following works:
on (release) {
my_SP.contentPath="StepAction_ID";
BUT, place this same code on another button that is NOT on
that page, and no content appears in the scrollbox, for example:
on (release) {
this.gotoAndStop(5);
this.my_sp2.contentPath="StepAction_ID";
Here I want Flash to go to frame 5 and place the content in
StepAction_ID into the scrollbox "my_sp2". It does not populate.
I CAN force the population by creating the scrollbox
dynamically:
on (release) {
this.gotoAndStop(5);
this.createClassObject(mx.containers.ScrollPane, "my_sp2",
20);
my_sp2.move(100, 200);
my_sp2.setSize(400, 200);
this.my_sp2.contentPath="StepAction_ID";
BUT, when I click another button and go elsewhere in the
file, the scrollbox remains, and I have text overwriting the
scrollbox content.
How can I get scrollbox content to stay on one frame?
Many thanks!
Don

Hi,
I have simulated your scenario. Schedule agreement schedule lines will not get added to MD05. this is always static.
regards,
Krishna Mohan

Similar Messages

  • All my Notes disappeared after ICloud upgrade

    All my Notes disappeared after ICloud upgrade. I cannot find them, nor a way to recover them from backups?  Any ideas? This is a BIG hiccup!

    I posted this on another discussion:
    Similar problem:  I was at a store today and went to my Notes on iPhone 3GS to look up information recorded there about medications for an aging parent. I am syncing through iCloud so the same notes are on my iPhone, iPad 1, and desktop Mac (in Mail). I opened one note, but it didn't have the information I needed, so I went back to the main Notes list and picked another of the dozen notes. I was scrolling down through that note and then suddenly....poof....the note was gone. ALL the notes were gone. The note pad said NO NOTES. ***???!!!!
    They were gone from my iPad, too. The notes represent information gathered and organized from multiple years (with no problems until now). The notes are information I NEED. I created a test note, it showed up on my devices. Then I chose to delete it to see if a single key click could do that. The app requires a second click on a Delete Note button as confirmation. And there's no way to delete ALL notes while viewing a single note, deliberately OR accidentally.
    Any suggestions about how to recover the notes lost today? Thanks in advance.

  • After last upgrade Apple TV 3 blue dots not disappearing after podcast is watched. How do I fix?

    After last upgrade Apple TV 3 blue dots not disappearing after podcast is watched. How do I get them to disappear like they always have?

    That crash appears to be casued by the Facebook plug-in.
    Create a new account (systempreferences -> accounts or Users & Groups on 10.7 and 10.8), make a new Library in that account, import some shots  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.

  • Account of the opportunity is not populated after the creation of a task

    Hi,
    In our project, we are using the Opportunity Object after the creation of a task. Our tasks are always related to an existing account.
    I was wondering why when I create an opportunity from a task, the field "Account Name" is not populated by default with the account name related to the task.
    Any ideas?
    Regards,
    Dara
    Edited by: user6469826 on 2 août 2011 11:40

    Contact an electronics repair shop.

  • Will bookmarks, highlights and notes disappear after "personal" editing?

    I have to read many .epub classical books (almost all public domain) on iBook. Those books are not necessarily from iBookStore. I make highlights, notes, etc.
    My situation is that the formats/styles and typos of those classical .epub make me extremely uncomfortable.
    So I am planning to edit those errors whenever I find them on my Mac.
    Here is the workflow:
    Read on iBook ——> highlights ——> see errors ——> export .epub to editing tools on Mac ——> edit ——> export to iBook ——> read
    My only question is will all my bookmarks, highlights and notes disappear when I edit the epub?
    Does anyone know where/how iBook records/store the highlights and bookmarks? In .plist or something else? Since If I know where all my annotations are, I couse easily preserve them when I am editing the epub.
    This is a very very big problem of mine. Please help me.

    Connect iPad with iTunes Mac and copy the book to Mac. Then import it into Sigil (an open-source epub editor) http://code.google.com/p/sigil/.
    In Sigil, edit whatever part I need. Then export to iTunes again and sync with iPad connected.
    After this, the book no longer belong to the iCloud, but treated as ordinary epub imported into iPad.

  • Why are my notes disappearing after a few days?

    I have an I-Phone 5, purchased last March.  I have upgraded to IOS 7 when it first came out, no problem.  I have been making lists of my packing boxes and they keep disappearing after a few days.  I am wondering if sync is wiping them out.  Anyone else having a problem with the notes feature?

    Yahoo is holding Notes as hostage. Check your Yahoo account settings.

  • PR should not change after PO Creation without Unrelease

    Hi,
    We want that User cann't change the PR after PO Creation.
    For Ex.:- We create a PR with 10 Qty., release it and also create PO with 10 Qty.. Now after PO creation with same qty, no one can change PR (Qty, Purchase Group etc...)..
    If User Un-release the PO and PR, then user should be able to change in PR...
    Please guide...

    Thanks a lot dear..
    After doing this, i create a new PR and PO with 10 qty... After PO, i unrelease the PR and change the Qty from 10 to 15 nos..then system shows an error message Requisition already converted into purchase order...
    But when we change 10 qty to 5 qty, PR allow the same... I want to insert another check here, that user cann't insert less than qty there... There should also be a Message there in system...
    Please guide...

  • The Prompt on combo box is not disappearing after a value is selected.

    Hi guys,
    I am putting in the prompt "Course Category" which starts off black and when a value is selected it turns grey but doesn't disappear, obscuring the selected value.
    I have tried putting in the line course_step1.prompt = ""; in the post selection part of the code but this has no effect.
    Interestingly when I test just this scene and not the whole movie this problem dosen't occure.
    This is a quote from my code I hope it gives you the idea...
    Thanks in advance,
    var course_step1:ComboBox = new ComboBox;
                    sophia_page2.addChild (course_step1);
                    course_step1.x = 245;
                    course_step1.y = 12;
                    course_step1.width = 200;
                    course_step1.dropdownWidth = 300;
                    course_step1.prompt = "Course Category";
                    course_step1.dataProvider = new DataProvider(cat_array);
                    course_step1.addEventListener(Event.CHANGE,select_cat);
                    function select_cat(event:Event):void
                                    var cat_select:String =(course_step1.selectedItem.data);
                                    course_inst1.textColor = 0x999999;
                                    course_inst2.textColor = 0x000000;  
                                    course_inst3.textColor = 0xCBDEF5;
                                    course_step1.prompt = "";
                                    //trace ("http://onedev/one/Sophia/CourseQuery2.asp?Cat=" + cat_select);
                                    var cat_selecturl:String =("http://onedev/one/Sophia/CourseQuery2.asp?Cat=" + cat_select);
                                    var xmlq2:XML = new XML ();
                                    var q2theURL_ur:URLRequest = new URLRequest("xmlq2.xml");
                                                           //replace with cat_selecturl ---- test with "xmlq2.xml"
                                    var q2loader_ul:URLLoader = new URLLoader(q2theURL_ur);
                                   q2loader_ul.addEventListener("complete", q2fileLoaded);
                                    function q2fileLoaded(e:Event):void
                                                    xmlq2 = XML(q2loader_ul.data);
                                                    //trace (unescape (xmlq2));
                                                   course_step1.prompt = "";

    Check the HTML source. Is any code after the initial option present (ie the </select></td>)? If not then you are getting an error that is masked by the fact that you already committed the response. Look into your logs.
    If the HTML source looks fine I fall back to my previous answer and you need to re-check the messages closer to where the work is being done. Though it never hurts to check the log files.

  • Commitment is not updated after PO creation !

    After creation of a PO referenced to a PR created from MD51 on a WBS, the commitment in "S_ALR_87013533 - Plan/Actual/Commitment/Rem.Plan/Assigned " is not updated although i believe that all configs are done. any one faced this prob.?

    There is this note (47992 - No commitment is displayed in reporting) which explains when Commitments would not be generated. Please check if you case belongs to any of these:
    1. For purchase orders/ purchase requisitions for project stock or customer stock with settlement on the project or sales order, no commitment is written in the standard program in general. If you want a commitment being written in these cases as well, apply the corrections from Note 498907
    2. If a purchase requisition which is assigned to a WBS element is generated from material requirements planning (MRP), no commitment is generated for the WBS element.
    Note also explains how updation of commitment values is controlled:
    1. In the year-dependent controlling area control parameters, commitments management must be active (Transaction OKKP).
    2. In addition, the G/L account to which the purchase order is assigned, must be created as a cost element at the delivery date.
    Regeneration of the commitment afterwards is possible by changing the purchasing document (for example, the item text).
    Regards
    Sreenivas

  • Contact, Calendar and Notes Disappeared after Sync

    Please help!
    After sync Contacts, Calendar and Notes to pc (Outlook), all are disappeared in iPhone but can't find them too in the pc. Have opened Outlook to retrieve the data but still can't find there.
    However pic, videos and apps are found both in iphone and pc after sync.
    Million thanks for your great help!

    Did you previously ever open Outlook on your computer before?
    If not, you may have lost your information.
    You could possibly restore your iPhone from a backup.
    Check if there is one first.
    You can do that by going to Edit-> Preferences in the iTunes program
    From there, click on Devices, and you will see a list of backups that were created.
    To possibly get your contacts back, you could restore from a back-up and attempt a sync again.

  • Do notes disappear after a certain time?

    The earliest entry in the Notes app has disappeared. Do they get deleted after a certain time or if I have inadvertantly deleted it can i get it back from icloud somehow?

    They never expire - at least from iCloud.  I still have some five year old notes.

  • Safari windows will not disappear after closing

    When I close windows under Safari, they will keep on staying in full screen but turn completely grey. The whole windows becomes grey and it won't disappear until i restart safari. i can switch between full screen windows and everything just as it would be a running program. This appeared since i upgrade from the beta to official release. Can't upload a pic for some reason on here.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • How do i get the refresh button to not disappear after i have moved it to the left side of the address bar in firefox 8?

    when i customize the toolbar i moved the refresh button to the left side of the address bar, i also put the stop button and home button there as well. but after i click done when i have finished only the refresh bar disappears, but i can click customize and it reshows up in the same spot only to disappear again after i click done. it used to work just fine in firefox 3.

    I've attached a screenshot. You may have to move one of the buttons around a bit until it settles down. Alternatively you can also add a '''Separator''' ('''View''' (or '''Alt''' + '''V''') > '''Toolbars''' > '''Customize''') between the two.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://addons.mozilla.org/en-US/firefox/addon/whats-that-preference/ What's That Preference? add-on] - Quickly decode about:config entries - After installation, go inside about:config, right-click any preference, enable (tick) MozillaZine Results to Panel and again right-click a pref and choose MozillaZine Reference to begin with.
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions/Add-ons]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]

  • Notes disappeared after upgrade to 3.0

    Does anyone know where my backup Notes are from iPhone OS 2.2 (where are they on my Mac?) I lost them after upgrading to 3.0. Posted this before but not resolved.

    Yes, I've checked there. I'm wondering where the back up files are (typically somewhere in 'library'?) when I've sync'd prior to updating to 3.0. The Notes data was backed up in iPhone OS 2.2, wasn't it? Where was it backed up to?

  • App updates not disappearing after updating

    I definitely didn't have this problem before iOS 7: after I update an app on the App Store on my iPhone 5, the update doesn't go away. It will stay there with 'open' instead of 'update', but stays there for good. Any help?

    Greetings, iinami, I also had the same issue on my iPhone under iOS 7.0.4, but I found a solution to clear out those dozens of App's purchases which clutter the Updates' window, and they would not go away even after you had already opened the update.
    This procedure worked on my iPhone, you may want to give it a try:
    1. Go to Settings > General > Date & Time;
    2. Turn off "Set Automatically";
    3. Click on your date and time (displayed in blue);
    4. Set the Month/Year to a year from today (say: "Jan 26, 2015")
    5. Exit Settings
    6. Now check your App-Store Updates' status
    Voila!
    You can set your Date & Time back to "Set Automatically". Those Apps will not re-appear.
    I have just found this out while I have not had an update since. So, I am not sure, but I have a felling that this will recur on my next update and the next, and so on.
    This is either a bug or Apple has set the updated app to go away on a timer. What a waste of time for Apple and for us.
    Perhaps Apple could use a little of "if it isn't broken don't fix it!".
    I wish you success!

Maybe you are looking for

  • How to copy custom fields in purchasing contract

    Dear all, we have added to the standard field in the purchase contract position two custom fields. These two fields (in value) are not taken when the user create a new contract by copying from another. Are there some exit or BADI functions that allow

  • How to select columns in a table by their column id and not the column name

    Hello, How do you select columns from a table based on their column_id. I have create a view but other than Select * , i cant now select one just one column from it the view as follow: create view count_student as select a.acode "acode",aname "Activi

  • OS Command in NFS not executing

    Dear All I am trying to execute a script before message processing in sender file communication channel  with transport protocol NFS. Although in my cc message display logs says: Information Execute OS command "sh displayDate.sh" but none of the comm

  • Problem with model compilation

    Is it possible to create and compile model based on concat dimension? I try to do so model creates but when I try to compile such model, server closes connection. I use 10.2 Oracle

  • Upgrading 10.2.0.4 to Oracle11g Release 1 (11.1.0.7) Simple question

    Hi experts, Is it possible to Upgrading 10.2.0.4 to Oracle11g Release 1 (11.1.0.7) directly ? any metalink will do. and can some one tell the diff between db upgrade and patch upgrade? is both the same or different? And if i do the patch from 10.2.0.