Smartview.bas file missing from bin.

Hopefully I'm posting in the correct forum, my appologies if not.
I understand the VBA functions for smartview are in the "Smartview.bas" file that should be in the program's bin folder. I seem to be missing the file even after reinstalling.
Could someone direct me to where I can get the file?
or
I'm not sure how large the file is, but if the functions were posted to a reply I could capture them there.
many thanks!

Attribute VB_Name = "Module1"
' Copyright 1992-2006 Hyperion Solutions Corporation. All Rights Reserved.
' RESTRICTED RIGHTS LEGEND:
' Use, duplication, or disclosure by the Government is subject to
' restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
' in Technical Data and Computer Software clause at DFARS 252.227-7013,
' or in the Commercial Computer Software Restricted Rights clause at
' FAR 52.227-19, as applicable.
' Hyperion Solutions Corporation
' 5450 Great America Parkway; Santa Clara, CA 95054 USA
' Function Smartview VBA Declaration.
' Global Constants for outline query types
Global Const HYP_CHILDREN = 1
Global Const HYP_DESCENDANTS = 2
Global Const HYP_BOTTOMLEVEL = 3
Global Const HYP_SIBLINGS = 4
Global Const HYP_SAMELEVEL = 5
Global Const HYP_SAMEGENERATION = 6
Global Const HYP_PARENT = 7
Global Const HYP_DIMENSION = 8
Global Const HYP_NAMEDGENERATION = 9
Global Const HYP_NAMEDLEVEL = 10
Global Const HYP_SEARCH = 11
Global Const HYP_WILDSEARCH = 12
Global Const HYP_USERATTRIBUTE = 13
Global Const HYP_ANCESTORS = 14
Global Const HYP_DTSMEMBER = 15
Global Const HYP_DIMUSERATTRIBUTES = 16
'Outline member query Constants.
Global Const HYP_COMMENT = 1
Global Const HYP_FORMULA = 2
Global Const HYP_UDA = 3
Global Const HYP_ATTRIBUTE = 4
'Outline member query Options
Global Const HYP_MEMBERSONLY = 1
Global Const HYP_ALIASESONLY = 2
Global Const HYP_MEMBERSANDALIASES = 4
'Supported Providers
Global Const HYP_ANALYTIC_SERVICES = "Analytic Provider Services"
Global Const HYP_FINANCIAL_MANAGEMENT = "Hyperion Financial Management"
'Menu Operations
Public Declare Function HypMenuVConnect Lib "HsAddin" () As Long
Public Declare Function HypMenuVRefresh Lib "HsAddin" () As Long
Public Declare Function HypMenuVRetrieve Lib "HsAddin" () As Long
Public Declare Function HypMenuVOptions Lib "HsAddin" () As Long
Public Declare Function HypMenuVKeepOnly Lib "HsAddin" () As Long
Public Declare Function HypMenuVRemoveOnly Lib "HsAddin" () As Long
Public Declare Function HypMenuVZoomIn Lib "HsAddin" () As Long
Public Declare Function HypMenuVZoomOut Lib "HsAddin" () As Long
Public Declare Function HypMenuVPivot Lib "HsAddin" () As Long
Public Declare Function HypMenuVSubmitData Lib "HsAddin" () As Long
Public Declare Function HypMenuVDisconnect Lib "HsAddin" () As Long
Public Declare Function HypMenuVCalculation Lib "HsAddin.dll" () As Long
'VBA Functions
' Connections
Public Declare Function HypCreateConnection Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtUserName As Variant, ByVal vtPassword As Variant, ByVal vtProvider As Variant, ByVal vtProviderURL As Variant, ByVal vtServerName As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtFriendlyName As Variant, ByVal vtDescription As Variant) As Long
Public Declare Function HypConnect Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtUserName As Variant, ByVal vtPassword As Variant, ByVal vtFriendlyName As Variant) As Long
Public Declare Function HypDisconnect Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal bLogoutUser As Boolean) As Long
Public Declare Function HypRemoveConnection Lib "HsAddin" (ByVal vtFriendlyName As Variant) As Long
Public Declare Function HypConnectionExists Lib "HsAddin.dll" (ByVal vtConnectionName As Variant) As Variant
Public Declare Function HypSetActiveConnection Lib "HsAddin.dll" (ByVal vtConnectionName As Variant) As Long
'Ad-Hoc operations
Public Declare Function HypRetrieve Lib "HsAddin" (ByVal vtSheetName As Variant) As Long
Public Declare Function HypZoomIn Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant, ByVal vtLevel As Variant, ByVal vtAcross As Variant) As Long
Public Declare Function HypZoomOut Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant) As Long
Public Declare Function HypKeepOnly Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant) As Long
Public Declare Function HypRemoveOnly Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant) As Long
Public Declare Function HypPivot Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtStart As Variant, ByVal vtEnd As Variant) As Long
Public Declare Function HypPivotToGrid Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtSelection As Variant) As Long
Public Declare Function HypPivotToPOV Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtSelection As Variant) As Long
Public Declare Function HypCell Lib "HsAddin" (ByVal vtSheetName As Variant, ParamArray MemberList() As Variant) As Variant
Public Declare Function HypSubmitData Lib "HsAddin" (ByVal vtSheetName As Variant) As Long
'Flashback
Public Declare Function HypRedo Lib "HsAddin" (ByVal vtSheetName As Variant) As Long
Public Declare Function HypUndo Lib "HsAddin" (ByVal vtSheetName As Variant) As Long
'POV
Public Declare Function HypSetPOV Lib "HsAddin" (ByVal vtSheetName, ParamArray MemberList() As Variant) As Long
Public Declare Function HypSetBackgroundPOV Lib "HsAddin" (ByVal vtFriendlyName, ParamArray MemberList() As Variant) As Long
'Business rules
Declare Function HypListCalcScripts Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByRef scriptArray) As Long
Declare Function HypExecuteCalcScript Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtCalcScript As Variant, ByVal vtSynchronous As Variant) As Long
'Query members
Declare Function HypQueryMembers Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtPredicate As Variant, ByVal vtOption As Variant, ByVal vtDimensionName As Variant, ByVal vtInput1 As Variant, ByVal vtInput2 As Variant, ByRef vtMemberArray As Variant) As Long
Declare Function HypSetMenu Lib "HsAddin.dll" (ByVal bSetMenu As Boolean) As Long
Declare Function HypIsUDA Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtMemberName As Variant, ByVal vtUDAString As Variant) As Variant
Declare Function HypIsAttribute Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtMemberName As Variant, ByVal vtUDAString As Variant) As Variant
Declare Function HypIsExpense Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtMemberName As Variant) As Variant
Declare Function HypConnected Lib "HsAddin" (ByVal vtSheetName As Variant) As Variant
Declare Function HypFindMember Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtAliasTable As Variant, ByRef vtDimensionName As Variant, ByRef vtAliasName As Variant, ByRef vtGenerationName As Variant, ByRef vtLevelName As Variant) As Long
Declare Function HypGetDataPoint Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtCell As Variant) As Variant
Declare Function HypFreeDataPoint Lib "HsAddin.dll" (ByRef vtInfo As Variant) As Long
Declare Function HypSetCellsDirty Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Declare Function HypOtlGetMemberInfo Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtDimensionName As Variant, ByVal vtMemberName As Variant, ByVal vtPredicate As Variant, ByRef vtMemberArray As Variant) As Long
Declare Function HypGetParent Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByRef vtParentName As Variant) As Long
Declare Function HypIsParent Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal ParentName As Variant) As Boolean
Declare Function HypGetChildren Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal intChildCount As Integer, ByRef vtChildNameArray As Variant) As Long
Declare Function HypIsDescendant Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtDescendantName As Variant) As Boolean
Declare Function HypSetSubstitutionVariable Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtVariableName As Variant, ByVal vtVariableValue As Variant) As Long
Declare Function HypGetSubstitutionVariable Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtVariableName As Variant, ByRef vtVariableNames As Variant, ByRef vtVariableValues As Variant) As Long
Declare Function HypGetAncestor Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtLayerType As Variant, ByVal intLayerNumber As Integer, ByRef vtAncestor As Variant) As Long
'Options
Declare Function HypSetGlobalOption Lib "HsAddin" (ByVal vtItem As Long, ByVal vtGlobalOption As Variant) As Long
Declare Function HypGetGlobalOption Lib "HsAddin" (ByVal vtItem As Long) As Variant
Declare Function HypGetSheetOption Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtItem As Variant) As Variant
Declare Function HypSetSheetOption Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtItem As Variant, ByVal vtOption As Variant) As Long
'HFM Functions
Public Declare Function HypCalculate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Public Declare Function HypForceCalculate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Public Declare Function HypCalculateContribution Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Public Declare Function HypForceCalculateContribution Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Public Declare Function HypTranslate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Public Declare Function HypForceTranslate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Public Declare Function HypConsolidate Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Public Declare Function HypConsolidateAll Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
Public Declare Function HypConsolidateAllWithData Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long
'Dynamic Link Functions
Public Declare Function HypGetRowCount Lib "HsAddin.dll" () As Long
Public Declare Function HypGetColCount Lib "HsAddin.dll" () As Long
Public Declare Function HypGetPOVCount Lib "HsAddin.dll" () As Long
Public Declare Function HypUseLinkMacro Lib "HsAddin.dll" (ByVal bUse As Boolean) As Long
Public Declare Function HypSetLinkMacro Lib "HsAddin.dll" (ByVal vtMacroName As Variant) As Long
Public Declare Function HypGetLinkMacro Lib "HsAddin.dll" (ByRef vtMacroName As Variant) As Long
Public Declare Function HypSetPOVItems Lib "HsAddin.dll" (ParamArray MemberList() As Variant) As Long
Public Declare Function HypDisplayTwoDimArray Lib "HsAddin.dll" (ByRef vtMemberList() As Variant) As Long
Public Declare Function HypGetSourceGrid Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByRef vtGrid As Variant) As Long
Public Declare Function HypGetPOVItems Lib "HsAddin.dll" (ByRef vtDimensionNames As Variant, ByRef vtPOVNames As Variant) As Long
Public Declare Function HypDisplayToLinkView Lib "HsAddin.dll" (ByVal vtDocumentType As Variant, ByVal vtDocumentPath As Variant) As Long
Public Declare Function HypGetRowItems Lib "HsAddin.dll" (ByVal rowID As Variant, ByRef vtDimensionName As Variant, ByRef vtMembernames As Variant) As Long
Public Declare Function HypGetColItems Lib "HsAddin.dll" (ByVal vtColID As Variant, ByRef vtDimensionName As Variant, ByRef vtMembernames As Variant) As Long
Public Declare Function HypSetRowItems Lib "HsAddin.dll" (ByVal vtRowID As Variant, ByVal vtDimensionName As Variant, ParamArray MemberList() As Variant) As Long
Public Declare Function HypSetColItems Lib "HsAddin.dll" (ByVal vtColID As Variant, ByVal vtDimensionName As Variant, ParamArray MemberList() As Variant) As Long
Public Declare Function HypGetConnectionInfo Lib "HsAddin.dll" (ByRef vtServerName As Variant, ByRef vtUserName As Variant, ByRef vtPassword As Variant, ByRef vtApplicationName As Variant, ByRef vtDatabaseName As Variant, ByRef vtFriendlyName As Variant, ByRef vtURL As Variant, ByRef vtProviderType As Variant) As Long
Public Declare Function HypSetConnectionInfo Lib "HsAddin.dll" (ByVal vtServerName As Variant, ByVal vtUserName As Variant, ByVal vtPassword As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtFriendlyName As Variant, ByVal vtURL As Variant, ByVal vtProviderType As Variant) As Long
Public Declare Function HypDeleteCalc Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtApplicationName As Variant, ByVal vtDatabaseName As Variant, ByVal vtCalcScript As Variant) As Long
Public Declare Function HypExecuteQuery Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMDXQuery As Variant) As Long
Public Declare Function HypSetAliasTable Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtAliasTableName As Variant) As Long
Public Declare Function HypRetrieveRange Lib "HsAddin.dll" (ByVal vtSheetName As Object, ByVal vtRange As Object, ByVal vtConnName As Object) As Long
Public Declare Function HypSetConnAliasTable Lib "HsAddin.dll" (ByVal vtConnName As Variant, ByVal vtAliasTableName As Variant) As Long

Similar Messages

  • Where can I get help re: a file missing from Pages in iCloud?

    Where can I get help re: a file missing from Pages in iCloud?

    If the file was also on a mac, then there was a local copy of the file in ~/Library/Mobile Documents.  If you use Time Machine or any other backup program on your computer, then try restoring the file(s).  Similarly the same thing would be done on a PC, but I'm not sure where the icloud local copies are kept.

  • [svn:fx-trunk] 10506: New TLF file missing from svn 10505.

    Revision: 10506
    Author:   [email protected]
    Date:     2009-09-22 10:43:46 -0700 (Tue, 22 Sep 2009)
    Log Message:
    New TLF file missing from svn 10505.
    Added Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_edit/src/flashx/textLayout/opera tions/CopyOperation.as

    Revision: 10506
    Author:   [email protected]
    Date:     2009-09-22 10:43:46 -0700 (Tue, 22 Sep 2009)
    Log Message:
    New TLF file missing from svn 10505.
    Added Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_edit/src/flashx/textLayout/opera tions/CopyOperation.as

  • [svn:osmf:] 14905: Adding file missing from previous commit.

    Revision: 14905
    Revision: 14905
    Author:   [email protected]
    Date:     2010-03-22 05:37:59 -0700 (Mon, 22 Mar 2010)
    Log Message:
    Adding file missing from previous commit.
    Added Paths:
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/fonts/
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/fonts/Standard0755.swf
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/fonts/readme.txt

    If you're confident that the DP contains the new file, try deleting the deployment and re-doing it (not the deployment type - just the deployment to your test collection).
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • [svn:osmf:] 14904: Adding file missing from previous commit.

    Revision: 14904
    Revision: 14904
    Author:   [email protected]
    Date:     2010-03-22 05:32:49 -0700 (Mon, 22 Mar 2010)
    Log Message:
    Adding file missing from previous commit.
    Added Paths:
        osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/hint/
        osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/hint/Hint.as

    If you're confident that the DP contains the new file, try deleting the deployment and re-doing it (not the deployment type - just the deployment to your test collection).
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • [svn:osmf:] 10540: Adding file missing from previous commit.

    Revision: 10540
    Author:   [email protected]
    Date:     2009-09-23 11:39:41 -0700 (Wed, 23 Sep 2009)
    Log Message:
    Adding file missing from previous commit.
    Added Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/gateways/TestHTMLGateway. as

    If you're confident that the DP contains the new file, try deleting the deployment and re-doing it (not the deployment type - just the deployment to your test collection).
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • UCM 11g File missing from search result although file is accessable

    When I do search without any criteria in UCM 11g, some files missing from search result although I know the files were checked into UCM already since I'm able to see these files using url similar to:
    http://ucm/cs/idcplg?idcService=GET_FILE&dID=12345
    or use following url to get document information:
    http://ucm/cs/idcplg?idcService=DOC_INFO&dID=12345
    the file is not in the search resule even search by ID.
    also, the seach result say "displaying 1-20" but only display few files (e.g. 2 files, less than 20)
    Is this a known problem? the same search was working in UCM 10 perfectly.
    Thanks

    The query seems able to retrieve the missing document. for example, I search by content ID, in the audit log (eanbled as you mentioned) give th efollowing information:
    fusionappsattachments/6     09.13 06:22:03.878     IdcServer-3474     --- @ResultSet SearchResults ---
    fusionappsattachments/6     09.13 06:22:03.878     IdcServer-3474     numFields=66,*numRows=1*,currentRow=0
    also, the infomation following above give the deteail field information which match with the missing document.
    I looks like UCM just did not bring it to UI as part of search result.
    This seems match with my another finding as I mentioned earlier: the seach result say "displaying 1-20" but only display few files (e.g. 2 files, less than 20)
    it seems query did find the documents but UI did not show it.
    Not sure if this is a known bug.

  • [svn:osmf:] 13186: Adding files missing from previous commit.

    Revision: 13186
    Revision: 13186
    Author:   [email protected]
    Date:     2009-12-23 05:26:07 -0800 (Wed, 23 Dec 2009)
    Log Message:
    Adding files missing from previous commit.
    Added Paths:
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_up.png

    I just checked my original file and it is 30fps...
    Also other clips from the same camera were correctly finalized, just this one clip "disappeared".
    Any ideas anyone?
    Thanks.

  • Files missing from install directory

    not sure what's happened to my computer but I can no longer install programs or updates for programs as I get the message "files missing from install directory"
    How did they get corrupt in the first place? I get this when trying to download yahoo messenger of all programs...duh!  I'm getting pretty frustrated since this has only started a month ago and I've been hoping something would fix itself but no....the last time my Toshiba service station updated was Jan 24 and now it says unable to connect with server....yet I got here to post a message and can get to the internet so don't understand why the updates can get in?
    any advice?

    that can be a problem with your windows.. your OS..
    rebuilding your OS should be able to fix it.
    oOo
    *Read EULA before installing any software.

  • .key.pem file missing from /etc/certificates

    Hi all
    I purchased an authority certificate from one of the big names.
    It's a wildcard cert for mail.domain, ical.domain etc that I want to setup.
    I've downloaded the cert from the provider and imported it into Keychain via Server Admin. That side all looks great but the cert will not work with any services. They just hang.
    Server log reports that cert.domain.verylongnumber.key.pem is missing from /etc/certificates.
    I had a look and indeed it's not there.
    .cert.pem and .chain.pem and .concat.pem are all present and correct. So where is .key.pem
    Thing is, I was using a self signed cert before and that does have a .key.pem file in /etc/certificates and that works fine....
    Cheers
    Ryan

    Solved.
    Turns out that the Certificate supplier (Globalsign in my case) don't supply the private key in the right format for OS X Server to understand - which is probably standard practice.
    10.6 Server requires the key in .pem format - mine was supplied as .pkcs12 (.pfx/.p12)
    You need to use openssl in Terminal to convert it to .pem as follows
    openssl pkcs12 -in mykey.pfx -out mykey.pem -nodes
    Then it can be dropped into Certificate Manager in Server Admin

  • 1 song file missing from my library. Sync & recovery questions.

    I found 1 song missing from my iTunes library. File recovery software doesn't find it. It's still on the iPod.
    If I do a sync, will I loose it from the iPod too? It's still present in my iTunes song list, but shows up as not found.
    After I've done a sync IIRC I can put the iPod into hard-drive mode. Will that let me copy the song to my PC?
    Since it's only for a $.99 song, I'd gladly use a free 3rd party application, but only want to buy software for this sort of thing if I have a bigger need.

    I've never had the need to do it myself but, from what I've heard, the aggravation is worth more than 99 cents. However,
    *Courtesy of PT...*
    Copying from iPod to Computer threads...
    http://discussions.apple.com/thread.jspa?messageID=5044027&#5044027
    http://discussions.apple.com/thread.jspa?threadID=893334&tstart=0
    http://discussions.apple.com/thread.jspa?messageID=797432&#797432
    Also these useful internet articles...
    http://www.engadget.com/2004/11/02/how-to-get-music-off-your-ipod/
    http://playlistmag.com/secrets/2006/12/twowaystreet20/index.php
    http://playlistmag.com/help/2005/01/2waystreet/

  • Class file missing from war file deployment

    I have a web application that is being deployed to a war file. I have deployed several times successfully. Then with the latest changes, there is a class file that does not get included into the war file. It does get compiled and does exist in the project directory.
    The class file is in a seperate project from the project where the war file deployment profile is; however both projects are in the same workspace.
    There are several other classes in the project that contains the missing class file that does get included in the war file. I don't see anywhere in the profile where these files are selected individually.
    I'm at a loss as to how to fix this problem other than add the file after deployment.
    Appreciate any help or ideas...
    Keith...

    Hi Keith,
    You may want to follow this thread....
    class object missing from ear file
    Brigette

  • Audio file missing from MOV when exported as a quicktime movie.

    Using Keynote 9, I imported video into presentation that was edited in iMovie 9.  When I export the presentation to quicktime movie the audio is missing from the video file.  The audio file plays fine in the standard keynote presentation mode. 

    This is STRICTLY a work around!  Official fix will come from Apple as an update more than likely.
    Duplicate item first (File > Duplicate). On newly duplicated project change file association type (File > get info). Under name and extension section take out .key). Close Get Info and save with removing .key.  Double click to open the file (now a compression).  Open uncompressed folder (same name as original file, now shows as a folder).  Now in the Data folder find a .mov file named "Recording" with randomly generated letters and numbers behind it.  Drag .mov file to desktop or any other directory. Open extracted .mov file with QuickTime to verify integrity. Save as audio file only.  Get Info on file again and place .key value at end of file/extension for project. Open project. Under Play menu option delete the recording.   Under Audio inspector drag the .mov of audio only to recording back in. Test play project to see if its accurate.  Export to QuickTime and see if issue is resolved.
    If issue persists:
    Export with corrupted audio as QuickTime.  Separate the audio from video track.  Delete audio.  Import the extracted .mov audio file.  Share > File. Enjoy.

  • Files missing from library after archive and install

    Hi forum folk
    any help you could give would be much appreciated.
    I can't seem to verify my permissions on HD. I have run disk utility both from finder and from my OSX startup disk and consistently get the error message "Disk Utility has lost its connection with the Disk Management Tool and cannot continue." I then reinstalled the operating system all together making sure to archive and install as well as archive previous network and preference settings. This means I am running 10.3.4 at the moment (and I can't verify any of the software updates at the moment). After reinstalling I still cannot verify my permissions, so now I am trying to back up all my files so that I can reinstall the OSX again, erase everything, and start from scratch. But I'm running into some very strange problems while doing this. select files are missing from ~/library. there is no Safari file, for example. I tried looking in HD/previous systems/library where my library files were saved before I reinstalled the operating system but there is no such folder in there either. this means all of my bookmarks are gone. additionally, under library/preferences (in both the old and new library folders) there is no file named com.apple.itunes.plst. so all of my itunes playlists are gone as well. these are the only missing files I have found thus far and i can't explain why they selectively would not have been saved after the archive and install. Everything else seems to be intact. Any ideas?
    thanks
    jb
    powerbookG4   Mac OS X (10.3.9)   running 10.3.4 at the moment - can't verify permissions on 10.3.9

    jbeep:
    my HD has a capacity of 8.85 GB available. When I reinstalled panther I had little more than 3 GB available (I deleted a bunch of unneeded things since then)
    Thanks for this update. What is the total formatted capacity of your HDD? I ask because I suspected that you might be cutting it pretty close. The rule of thumb is that you should have 10-15% of your total capacity available as free space. My personal rule is 15%-20%. This allows for more efficient perfomrance of OS X.
    I am in the process of backing up everything on my seagate combo USB 2.0/firewire 200 GB external (I am using the firewire cord)
    Having an up-to-date backup is one of the primary rules, often observed more in the breach than not. Since you have an HDD that supports Firewire, I suggest that you make a bootable clone of your entire HDD using SuperDuper. You can then use this backup as an emergency boot drive. However, it must be Firewire, as PPC Macs don't boot from USB devices.
    I also have heard that it is advisable to reinstall the OS "every now and again" and I hadn't done this for at least two years. was I ill-advised?
    Most experienced Mac users never re-install, except under dire circumstances. Since installing my new HDD in this computer I have never re-installed. Re-installation is the utlimate intrusive measure, and it exposes one to all kinds of issues, from lost data, to flawed installaton, to installations that fail midstream. Re-installation is not an effective maintenace procedure. Here are some helpful links in terms of maintenance:
    Mac OS X 10.3/10.4: System maintenance
    Macintosh OS X Routine Maintenance
    Maintaining OS X.
    I'm going to restart now and try and verify my permissions again using the procedure on the above link. I'll let you know what happens.
    Instead of verifying permissions, just go ahead and Repair Disk Permissions. Verifying permissions does nothing, and wastes your time, as it is difficult to tell whether you need to repair, and you have to repair anyway.
    Do post back with an update of your progress and any further questions or comments.
    Good luck.
    cornelius
    Message was edited by: cornelius

  • .rmt file missing from firmware download

    The readme file included with the firmware download zip file states to look for a .rmt file. There are only .txt files and a .bin file in the zip file. Are the instruction wrong/obsolete or should there be a .rmt file in the .zip file or is the .bin file the real firmware update file?

    actually, only the .bin is what you need... even if you have the .zip file, you will need to unzip it and get the .bin (binary file) you will need for firmware upgrade... the text file only gives you information...
    "a helping hand in a community makes the world a universe"

Maybe you are looking for

  • Tranfer music from one account to another?

    I use my moms itunes account to get my music but i use my account to get songs i want that my mom wouldnt want and to get apps.. im planning on replacing my phone with the kind but was wondering if i could tranferred the music i got from my mom to my

  • Work with ListBox in Acrobat Reader and 3D Pdf

    I have a template with LiveCycle Designer 8.2. This listbox i fill dynamically with JavaScript in the 3D Model and in the template. I can manipulate both scripts. The user should select items in that view. So i have choosen User Entered - Optional as

  • Iphone 4s space issues

    I have a 16gig (or so I thought) iphone 4s with 681 photos and unable to update any apps as I am supposedly over my storage capacity. Wondering if anyone has had similar issues or if my photos and music are at a higher rez then normal.

  • Configuring RMAN in oracle 10g database for solaris OS

    hi send me the step by step configuration of RMAN in oracle10g for solaris OS BR Durga

  • I can't download iTunes or quicktime

    So once in a while itunes tells me to they're updates so i update itunes but an error shows up. so i uninstalled intunes and everything that came with it and try to reinstall it. But the same error pops up:" could not write value to key \Software\Cla