Cutting/pasting fxg code

Hi, noob here.
I want to skin WindowedApplication. Trying to use the WindowedApplication skin class provided by Flex 4
I have Catalyst and Illustrator cs5 and I note that the code generated by both is slightly different. In fact, I can't determine what's absolutely necessary, and what isn't with the errors I get in FB.
I followed a tut that used Illustrator to generate the code. It seemed so easy and straight forward that I thought I could implement it. But alas, I was wrong! When I tried the same technique it didn't work and I surmise that he was using Illustrator cs4.
The nut of it is: If I'm pasting into a custom component, which parts do I need? There are so many groups defined with ai, d, flm, fx, s namespaces and all that other stuff. I just need the bones. Can I get rid of those namespaces? Which groups do I need to keep? Or what about creating an fxg file in my flex project and using that? How do I implement it that way versus pasting into the custom component? Or if I paste in code generated with Catalyst, which parts do I need?
I can't determine the straight poop.
There's something rolling around in my head that I'm missing the obvious. What is it?

I have made changes to the environment. I have changed it to various numbers, changed it to default, reinstalled the software and it still cuts off.
I am running xp professional on a dell computer gx270 computer with 2 gigs of ram. I copy the coding from notepad and paste it in sql plus. It usually runs automatically. There are times I will have to hit enter to run the coding.
As for the version, I don't have that with me now as I'm at work. I can look it up when I get home.
As for what it looks like the best way to describe what happens is when the coding is pasted into sql plus, it will run part of the code and show the tables were created, rows inserted, etc then all of a sudden all I see is part of the coding. It would look something like:
SELECT lastname, firstname, state
FROM customers
WHERE state > '
This is after a bunch of code has already ran. There will be table created, row inserted, etc above it. The only way I can get the coding to run is to run it from the cmd prompt or run the coding in sections that are not very long. There would be no error messages in it as my professor has ran the code after I have mentioned I am having problems. He would tell me there were no errors in the coding.
I downloaded oracle 10g full version and not the express version from oracle. I don't know if that would make a difference or not.

Similar Messages

  • Don't Cut-and-Paste "unlock code"!

    After getting the unlock code via email I tried numerous times to cut and paste it into the Unlock Code field provided but the "Unlock Now" box remained greyed out, leaving only the "Edit Without Registration" button available. Frustrating.
    Solution: Don't copy-and-paste the code. Type it in. The "Unlock Now" button will no longer be greyed out, and you can complete the process. At least that worked for me.
    MouseB

    Hi:
    That exactly what I have. I type textually from the e-mail sent by Adobe, all in caps lock on, as included instructions say, but nothing: no "Unlock now" available.
    What else can I do?
    Please help
    Thanks,
    Alexander "desperated" Alvarez

  • Clicking on an email address on a webpage, opens outlook express, but does not create a new mail, which it used to. annoying as it then means cutting & pasting the details

    As I said above, clicking on an email address on a webpage, opens outlook express which is my default email client. In the past it used to also open a new mail, ready for me to type the message but now it does not. It works if I load internet explorer as the browser but does not in firefox. I prefer firefox, so can someone help me resolve this. Its so annoying to have to open a new mail then cut & paste the email details.

    I posted this reply elsewhere in the support forum but I'll copy it here for you, as follows....
    I had the same problem. Initially thought I needed a string (code) to run the "Create new e-mail" command for Outlook but I didn't. I did a few things that eventually made it work, but I don't know for certain which one it was so here goes.
    1.) Go to Control Panel and click on Internet Properties. Go to the Programs tab and double-check that Outlook Express is your default e-mail client. (This is probably for IE).
    2. Close Outlook Express. Select the RUN command from the Start Menu and type the following: <msimn /reg>. Only type the info between the brackets. Click the OK button and wait about 5 seconds. Nothing will happen on screen but the information is being silently written to the registry.
    3. Open Outlook Express and go to the Tools Menu. Select Options. On the General tab, look down to the Default Messaging Programs. More than likely, the top option will say that "This application is NOT the default Mail handler" Click the button next to it that says "Make Default". This should trigger an available option in Firefox, below, if it was not already available.
    4. In Firefox, go to the Tools menu. Select Options. Click on Applications. Under the column, "Content Type" look for the mailto function. In the column Action, select "Use Outlook Express (default)" if it is not already selected. "(default)" must be part of the phrase. Somehow there is code behind this option that will bring up a new e-mail in Outlook that otherwise does not work if Outlook is selected manually. (To choose Outlook manually, you will indeed have to find the string code somewhere.)

  • How to update PL/SQL block/Specs in Repository without cut/paste ?

    (cross-posted in METALINK form also)
    Hello,
    Question: How to quickly update PL/SQL block/specs in a package
    Repository Object Browser? (without cut/paste)
    Tools: Designer 9i, ROB 9.0.2.6
    Detailed description of a problem:
    -- there is no good pl/sql IDE working with ROB
    (JDeveloper can not work with NOT PRIVATE repository workspace)
    -- I use Toad and develop/generate pl/sql object
    directly in database.
    -- I have to synchronize my work with repository as often
    as possible the following way (we do not use read-server model
    because afraid of getting 1000s of atomik func and proc):
    ---- navigate to the pl/sql package
    ---- select properties
    ---- click on pl/sql block - get old code in editor
    ---- copy all new code from Toad into editor
    ---- remove CREATE OR REPLACE and last line
    ---- save
    ---- do the same with specifications
    I am looking for some way to do this with some script or
    one-button click...
    For example, for text files it is possible to use command line
    Repository Tool. But I did not found the possibility to make
    a script like this:
    checkout
    update workarea/container/plsql_definition/package_name/body....
    .....with new_package_body.txt
    checkin
    Thanks in advance for any help/advice,
    Alex V.

    Hi Alex,
    I just had an "Ah! I see!" moment. I now understand why you're having trouble and I can explain things so you can move on... I hope!
    First it's important to understand that Oracle SCM is designed to support versioning of both files and Oracle Designer objects. Designer objects are stored as rows in specially structured tables that support that specific product. When you look at PL/SQL definitions in the RON you're looking at Designer definitions - not files. As I mentioned before, these are not the definitions of 'real' PL/SQL objects in the data dictionary, but definitions used by Designer (from which the real things can be generated - but that's another story).
    If you're using TOAD you should probably avoid accessing the Designer objects. You need to work with files.
    Here's a suggestion for a sequence of operations:
    - In the RON check out & download the file (e.g. mypkg.plb)
    - In TOAD load the package (from DB, or downloaded file), edit, update package in DB
    - In TOAD save as mypkg.plb (overwriting the downloaded copy)
    - IN RON upload mypkg.plb and check in
    If you've not stored the file in Oracle SCM yet, jsut omit the first step.
    You could even automate this to an extent using SQL to query the data dictionary views (e.g. USER_SOURCE) after making changes to get the code and edit/overwrite the file contents that way.
    Does this help at all?
    Keith.

  • Add restrictions to copy/cut/paste in Excel when a worksheet is protected

    Office Version:  Office 2007;
    Operating System:Windows 7; 
    Program:Excel
    I need to be able to select via a macro or some other way the restrictions listed below on copy/cut/paste.  The worksheet will be protected. 
    The goal is to allow a user to have the capability to type in data or copy-paste-values only in the unlocked cells.  I wish to block a user from changing the formatting or pasting a formula in an unlocked cell via copy or
    cut and paste.  This is necessary to maintain the worksheet/workbook integrity when multiple users have access to it.
    1.    
     Disable cutting from unlocked cells
    2.    
    Allow ONLY copy/paste value from any cell to any unlocked cell.   
    The user needs to be able to select locked cells.
    Ideally, the user can copy-paste-values from that locked cell an an unlocked cell.  The ability to copy from the locked cell is not an absolute need but being able to
    select the locked cell is very important due to the large size of the worksheet.
    The locked cells will have their formulas hidden.
    I entered the question in the website below but received no feedback.  The Microsoft tech support group said I should contact this IT Pro forum.
    http://answers.microsoft.com/en-us/office/default.aspx#tab=1
    Thanks

    Unfortunately it is not easy; there are lots of individual items to deal with.
    You can use Application.OnKey to disable (or repurpose) the key combinations (e.g. Ctrl+X, Ctrl+V, Shift+Del, Shift+Insert ) that you don't want used.  Typically you would do this in Workbook_Open and reverse it in Workbook_BeforeClose (and you need to
    save the workbook if necessary within Workbook_BeforeClose to prevent the user from cancelling the Save Changes message after your code has done its work).
    In Excel 2003 you could use VBA to disable or make invisible the menu items and toolbar buttons that would do actions you didn't want the user to be able to carry out.  But in 2007 you have to write XML using the custom UI editor and save it in the
    XLSM file.  A good site for information on how to work with the ribbon in 2007 is
    www.rondebruin.nl
    If you get most of the way there and get stuck on some point, do come back.
    It would be good if MS extended the protection model to prevent cut and pasting other than values - it is a common requirement.  I will go now and make that suggestion to the developers.
    Bill Manville. Excel MVP, Oxford, England. www.manville.org.uk

  • Change cut/paste to control keys?

    Hi,
    I do a ton of work in Parallels under WindowsXP. I mostly write code and use cut/paste (control x or c/control v) continuously.
    As much as I love the mac I find when I go back to OS X say for email I'm doing control x or c instead of command x or c.
    Is there an easy way to change my Mac OS X cut/paste keystrokes to be control X, C, and paste as control V?
    Thanks...

    You might look into DoubleCommand.
    With it installed you have the ability to remap your Command and Control keys, plus a lot more.
    Good luck!
    Andrew99
    iMac 1 GHz Flat Panel 15" PPC 768 MB RAM   Mac OS X (10.4.9)  

  • Trying to create a shell script to cut/paste files in finder. Help needed.

    I'm trying to create an automator shell script to cut/paste. It'll function exactly like copy/paste. i.e. I'll just copy file/files with command+c like always, but then I'll create an automator which uses the "mv" terminal app to move the files which works exactly like cut paste.
    I need some help since I don't know the syntax for creating shell scripts.
    What I did so far is to do it in automator with Apple Script which goes like the following:
    on run {input, parameters}
    tell application "Finder"
    set theWindow to window 1
    set thePath to quoted form of (POSIX path of (target of theWindow as string))
    end tell
    tell application "Terminal"
    do script with command "mv \"" & input & "\"" & thePath in window 1
    end tell
    return input
    end run
    This gets the copied file path from clipboard before, as input, and then recognizes the active finder window as thePath so then executes the mv command for the input file to the thePath window.
    It doesn't work as expected since it connects both file/window paths into a single path instead of leaving a space between them so the mv command can't recognize two separate paths.
    What's the correct syntax for that line
    do script with command "mv \"" & input & "\"" & thePath in window 1
    to leave a space between input and thePath under the mv command?
    Also this requires the terminal app to be open in the background.
    After I get this to work I want to do the exact same thing using shell script within automator, so I won't need Terminal to be open all the time.
    And the next step will be to cut/paste multiple files/folders but that should be easy to do once I get the hang of it.

    Try using:
    on run {input, parameters}
    tell application "Finder"
    set theWindow to window 1
    set thePath to quoted form of (POSIX path of (target of theWindow as string))
    end tell
    do shell script "mv \"" & input & "\" " & thePath
    return input
    end run
    (45977)

  • How can I Cut & paste an address from one address book to another on my PC.

    My work computer has 3 address books - 1 personal address book, 2 collected address book, 3 work related address book.
    After a couple of years I would like to tidy up my address books & cut & paste some of them from here to there. However there seems to be no cut & paste or copy & paste feature that I can locate anywhere????
    I can't drag & drop an address from one to another either.
    Can anyone please help
    BevN

    Cut and paste a whole contacts information has never available because it entails different components. Cut/Copy and paste has always been available if you are only selecting one part of the information, but this means you have to open a specific contacts Properties.
    '''How to drag and drop contacts between address books:'''
    In the left Directory Pane, select the address book containing the contact you want to move. You should see a list of contacts in the right Contact Pane.
    Drag & Drop process:
    * Left click and hold down on a contact in the list to grab, then drag that contact to the left and hover over the address book where you want to put the contact. Then release the mouse button to drop into that address book.
    You can move more than one contact.
    * Hold down 'Ctrl' key and use mouse to select and highlight various contacts.
    * then use the D&D process - (left click, hold down on any highlighted contact to grab all highlighted contacts).

  • In iMovie 11, how can you cut/paste a clip that has subtitles and actually have the subtitles get cut/pasted. When I try, the subtitles disappear into the void and I have to do the subtitling all over again.

    In iMovie 11, how can you cut/paste a clip that has subtitles and actually have the subtitles get cut/pasted. When I try, the subtitles disappear into the void and I have to do the subtitling all over again.

    If you think this is a bug, you can report it here:
    Apple - Mac OS X - Feedback

  • Help! Can't paste into code view or property inspector

    I'm experiencing a weird and extremely annoying bug in Dreamweaver CS6 -- I can't paste text from outside apps into DW's code view or into the property inspector (such as URLs).
    Pasting doesn't work no matter the method: Ctrl + V, right-clicking or using the Edit menu. Pasting works normally in every other program. If I copy within Dreawmweaver, pasting works fine.
    Does anyone have a solution for this? I'm running Win 8 and DW 12.1 through Creative Cloud. Searching the forums, I see others have reported the same issue. Some have been able to fix it by deleting the configuration file; that didn't fix the issue for me. I'd like to try reinstalling DW, but the Adobe Application Manager doesn't seem to allow that.
    I began noticing this bug about two weeks ago. That might have been about the same time I updated to 12.1. Can anyone help?
    Thanks,
    Cory K.

    Adding to my last post, I used a clipboard format inspector called nclip (http://code.google.com/p/nclip/) to see if I could find a pattern between "what works" and "what doesn't".
    There are two cases where I'm seeing paste-into-Dreamweaver CS6 fail:
    Paste into Code View fails, but Paste into Design View works!
    Paste into either Code View or Design View fails
    I went through the list of programs that worked and didn't worked, using nclip to show what clipboard formats were being saved from each working and non-working source. It appears that DreamWeaver CS6 as of January 9, 2013 doesn't accept the most basic text clipboard formats:
    CF_UNICODETEXT
    CF_TEXT
    CF-OEMTEXT
    CF_LOCALE
    If these are the only clipboard formats used by an app (for example, Window's venerable Notepad.exe), Dreamweaver doesn't appear to handle them. Most programmer-style text editors output just these formats, because they are presumed to be understood any application that handles text. These fail for both pasting into codeview and design view.
    Interestingly, Chrome browser fails the code view test, but it does work in design view! It outputs the four clipboard types above, plus one more:
    Custom Format: HTML Format
    Hypothesis 1: Any application that puts HTML Format on the clipboard will paste into design view, but not necessarily code view.
    Next, Visual Studio 2010 and Sticky Notes, which doesn't include HTML Format as a clip type, works for both code view and design view. They both output this type in addition to the basics:
    Custom Format: Rich Text Format
    Two programs that output Rich Text Format without HTML Format are Sticky Notes and WordPad. These both work with Code View and Design View. From these limited tests on my system, it appears that for Dreamweaver to accept a text paste from an outside program into Code View, that program must output Rich Text Format to the clipboard. Otherwise, it fails. Dreamweaver will accept HTML Format, but only in Design View. Firefox is an exception in that it don't export Rich Text Format, but still works with Code View. It might use OLE, though (Chrome doesn't seem to use OLE, and it breaks in code view).
    Hypothesis 2: Any application that puts Rich Text Format on the clipboard will paste into design view AND code view.
    If Dreamweaver is really ignoring the basic text clipboard formats, and it's not just my system configuration, then this is a bug. Probably something that got overlooked in testing.
    To reproduce on Dreamweaver 12.1 build 5966:
    Try copy/pasting text from Notepad.exe into Dreamweaver Code View (DWCV). This fails for me.
    Try copy/pasting text from WordPad.exe into DWCV. This works!
    Try copy/pasting text from Internet Explorer 9 or Firefox into DWCV. This works!
    Try copy/pasting text from Chrome. This fails to paste into Code View, but does paste into Design View
    The Code View workaround:
    Use Firefox or Internet Explorer for your browser if you're copy/pasting source code.
    If you're working from another text editor, try copy/pasting into intermediate programs Sticky Notes or WordPad, then copy/paste from there into Dreamweaver.
    So that is my experience on Windows 7 64-bit. Anyone else experiencing the same thing?

  • What if a person no longer has access to the house in which the card itself, but iTunes recognizes my login, shows my balance, won't let me get past the "code" page?

    What if a person no longer has access to the card itself, but iTunes recognizes my login, shows my balance, won't let me get past the "code" page?

    What pops up is the page that tells me I can use my camera to take a photo - since I don't have access to the card, useless.  I am caught going round in this loop - there's that one button, no other option.  Thanks in advance. 

  • , I-tunes can no longer 'locate' my library , after a botched cut & paste attempt to back-up onto an external drive. Still syncing with i-Pod but playlists lost , podcasts no longer syncing, Can't play music .. how to restore back to original state .

    I-tunes can no longer 'locate' my library , after a botched cut & paste attempt to back-up onto an external drive.Cant play any music as it "can't find" the library  Still syncing with i-Pod but playlists lost , podcasts no longer syncing.   How to restore back to original state . I have tried re-installing  - with no change

    I do the same thing as you do...
    My music is on an external drive as to not use up gigabytes of storage that need not be used for media.
    There are a couple basic principles to iTunes that I believe you should know.
    1. iTunes is not a media storage program. It does not store your media "in iTunes". It simply is an organization tool for your media already on a hard disk.
    2. As iTunes is not a storage mechanism, it has no way to "know" whether or not the media that is listed is actually there. This is where the "design" of iTunes comes into play.
    I like to think of iTunes as a bread-crumb trail. The "music" in iTunes, isn't actually there. The bread crumb is the location on the external hard drive.
    If that bread crumb trail disappears (in this case the external drive you use). If said external drive is not plugged in, that bread crumb trail is not able to be followed. iTunes is "lost" and unable to find the media. The only way to remedy this is to place the media on your local drive.
    To address your issue of the library. If you hold down shift, you can select your library on your external drive. It will be a file with an .itl extension. The folder name will be your external drive.
    I go into edit > preferences > advanced and set my library to the correct location. Make sure you check the box "Copy to iTunes Folder when importing" (or whatever it says).
    You can't fix the issue of iTunes not seeing the media if your drive is unplugged unless you physically move the content to your OS HDD...Or any other HDD you use.

  • Cut & paste no longer work in Safari with iOS 5

    I can't seem to cut & paste text in Safari under iOS 5.  Has that feature been removed?

    Since I attempted to sync this morning, I did not have a chance to troubleshoot more before work.
    I will try the following later:
    1) Turn off iDevice, restart PC, re-sync
    2) Turn off iDevice, uninstall iTunes, restart PC, re-sync
    3) Turn off iDevice, uninstall iTunes, restart PC, backup to iOS 5.0.1 & re-sync
    4) Return iPhone to Sprint for another one.

  • Cut/Paste from Word to Illustrator CS3 for Mac suddenly not working

    This issue regards Illustrator CS3 for Mac on a Mac Pro with 6 GB.
    Exactly one week ago I created a number of Illustrator files by cutting charts from a Word 2008 document and pasting them into an Illustrator document.
    In the past I have dragged the images (or clip art) or simply used Control-C or even Control-X, but by whatever method I opted for, getting the image from Word to Illustrator CS3 has not been a problem.
    Yesterday I got a new chart and a request to replace an old image - one that I had created last week on Tuesday by the Drag/Drop or Cut/Paste method.   For reasons I can't begin to imagine the process simply won't work now.
    I also find that if I simply select text in a Word Document, hit Ctrl-C and then try a Ctrl-V in Illustrator I don't get to see my text pasted in - ONLY if I already have a text block open and the cursor in place will I get to see the text copied over into Illustrator.  This is very strange and not at all how things have worked in the past - typically I would see the new Text Object just appear, and then I could move it to wherever I wanted. 
    I have opened up a number of old files that I know were created with copied text and also opened the associated Word files (earlier versions of Word) and again find that I can't copy text over, or even move images over - even though I clearly could do this before.  I have also tried entirely new files - also with no success.
    I was at an Apple one-to-one session this morning and they were more than mystified by this.  I can Cut and Paste into Adobe Photoshop Elements, but I can't even cut and paste from Adobe Photoshop Elements into Illustrator CS3.   I can drag the Photoshop file (from the Finder window) into the Illustrator document and poof - get my image that way, but it's as an image only.  If the base image in question is a vector image or something else having a plurality of elements, I can't then select the elements in Illustrator to change their color, delete them, or otherwise play with them.
    I have brought up a word document on another Mac system that also has Illustrator CS3 and find that it too can't drag/drop cut/paste between the two applications.   At Apple, we did confirm that such ability is operational in the new Illustrator CS4, but none of their store systems still have CS3 to provide yet a third system to test.
    I have deleted my Illustrator CS3 preferences, tried flushing the p-ram, and of course run fix and repair permissions - no dice.
    My Mac systems update daily and there is nothing in the main update log that shows anything for Adobe or Office (nor do I think there should be).  Adobe Update reports that everything is up to date, and I don't see a history file to know what might have changed in the last week.   Office also reports fully up to date and happy.
    As I can cut and paste the images into an email for Mail and into Photoshop, I am fairly certain that it is NOT a Microsoft Office 2008 issue.  The fact that another Mac with Illustrator CS3 also can't cut and paste suggests that is is really not something personal to my main system.
    It is almost as if this is some clandestine "update" intended to encourage me to buy Illustrator CS4.  Given that I bought Illustrator CS3 less than a year ago, I really am not eager to buy the new version.   The greeting on the Adobe Support page that CS3 is no longer the current version and therefore supported was most annoying.
    I am really hoping that someone out there has an idea of what to try changing, removing and/or adjusting with respect to Adobe Illustrator CS3.

    I tried the Select by Path option - can't believe I missed it - and found it made no difference.
    I actually uninstalled and reinstalled the whole app.  When I tried to simply re-install (can't remember it's exact phrase) it got part way through and then demanded another disk - but I only have one DVD with the application - the extra DVD is for tutorials and it didn't accept that one either.  So I restarted that process and chose to completely uninstall.  Then reinstalled - hey with only my one disk - gee, just like the first time.   And then it seemed to work.
    I was not aware of the save as PDF option - but yes I have Adobe Acrobat Pro 9 for Mac so that option is there - and it seems to work too.  
    There were of course a slue of updates, and I let them all proceed - but even with them all in place the system is fine and I can once again drag and drop / cut and paste things back and forth.   I just tried a text block and "The Quick Brown Fox" pasted in with a clipping mask about 10 times the size of the document, but other than that it was ok.  
    So I have things working again on my primary system.   Will try and figure out what's wrong with the other one - but a reinstall might be the easiest game there too.

  • Cut/Paste not working in Microsoft Remote Desktop for Mac

    Sirs,
    I am using Microsoft Remote Desktop V8.05 build 24428 on a Mac under the latest Mavericks OS, and I find that Cut and Paste are not working. When I paste on Remote Desktop Windows always pastes the last thing cut/copied under the Windows remote session,
    rather than whatever I just cut/copied in another Mac window.
    I am well  aware that the keystrokes are different, and I tried to follow the instructions on another question which indicated that I should select the console session  checkbox on Remote Desktop's 'Connection' configuration window. However Remote
    Desktop no longer seems to have that option ... the topmost line now shows 'Admin Console' and checking it did not help with cut/paste.
    I hope you can tell me how to get this working as cut/paste is a great convenience.
    Thanks

    Hi,
    Clipboard redirection is not supported in current versions of Microsoft Remote Desktop. However, I will help to submit this as customer wish to the product team.
    Thanks for your understanding.
    Jeremy Wu
    TechNet Community Support

Maybe you are looking for

  • Unable to add external data source in BAM : Error ORA-12505

    Hi, In BAM, Im trying to add an external data source for creating a data object. But when i try to test the connection i get the following error: Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently kno

  • No data found for GenericDatasource in BI

    I replicated a generic datasource from EC6.In the EC6 I can find the data(using rsa3).But in BI after activating and running the infopackage for the replicated datasource I didn't find the data.In the data selection tab of infopackage I checked all t

  • Computer display flashing on and off

    So for the past couple weeks, whenever we turn on our computer, our display flashes on and off to the point to where its practically unusable. Eventually it stops after at least half an hour of blinking, but I was wondering, what could be wrong and h

  • What printer will work with a mini.

    I have a Mini and I needf a all in one printer. I was thinking about the HP Photosmart C3180 All-in-One Printer, Scanner, Copier. My mini is intel and I dont know if this will still work. Does anyone have any info on this. Or maybe you know of a all

  • How to create an ITS iview

    Hi, Can any body tell me how to create an ITS iview using integrated ITS(ECC 5.0). Can someone suggest me step by step process of this? Thanks in advance, Lakshmi.