Help setting up basic reusable flash component

Hi, I have a very basic question.  I have an existing flash application, a flex web project, and I would like to take some functionality out of this project, and put it in a separate project to be reused both in the existing application, and as a standalone flash application in a separate html ui.  Can anyone tell me if I need a flex project, or a flex library project for this, and what the very basic set up is?  I don't need help actually coding the component, just the top level organization, thanks so much.

Hi, I have a very basic question.  I have an existing flash application, a flex web project, and I would like to take some functionality out of this project, and put it in a separate project to be reused both in the existing application, and as a standalone flash application in a separate html ui.  Can anyone tell me if I need a flex project, or a flex library project for this, and what the very basic set up is?  I don't need help actually coding the component, just the top level organization, thanks so much.

Similar Messages

  • Need help with Different approaches to setting variables in a Flash movie in Adobe Flash CS3 Professional Version

    Hi,
    I'm using Adobe Flash CS3 Professional version of Flash
    software,
    I need help and guidance on
    Different approaches to setting variables in a Flash movie,
    what I should do in the fla file, and in the html file.
    Thanks, Gil

    Hi petro_jemes,
    Just a little claritification, you need to add the value to the variable "[string]$ou", and also change the language in the variable "$emailbody" in the function "Get-ADUserPasswordExpirationDate".
    I hope this helps.

  • HELP !!! How can I set the size of each component separately

    Please tell me, when adding components (a mix of
    labels , buttons etc.) on a container (swing), how can I set the size
    of each component separately.
    for example:
    the code here has a mix of button and a grid that is actually another JPanel. Its a part of a bigger
    program. When running the grid is cut (not seen in its full size).
    So, please try to anser also about the specific acse of frame contining another frame in it , and the interior should be right sized.
    The relevant part of the code:
    =========================================
    public class Reversi extends JFrame {
    public static void main(String[] args) {
    Reversi ourGame = new Reversi();
    public Reversi() {
    super("Grid Reversi");
    setSize(new Dimension(300, 300));
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    Grid g = new Grid(); // the grid was built at another part..
    ReversiGame ourGame = new ReversiGame();
    JButton b;
    JFrame f = new JFrame("Hello Java");
    f.setSize(new Dimension(300, 300));
    f.setDefaultCloseOperation(EXIT_ON_CLOSE);
    Container c = f.getContentPane();
    c.add(g,BorderLayout.NORTH );
    c.add(b = new JButton("Hola"), BorderLayout.CENTER);
    //f.pack();
    f.show();

    BorderLayout chooses the sizes of each of the components added to it. Choose a different layout manager (or set the placement/size manually with a 'null' layout)
    http://java.sun.com/developer/onlineTraining/GUI/AWTLayoutMgr/shortcourse.html

  • Retrieve changing values from TextInput Flash Component

    Hi,
    I've been banging my head against the wall with this one....
    I've placed aTextInput Flash Component on the stage which
    reads/displays a value from an external text file. So far so good.
    If I enter new text during run-time - editable is set to true
    - the TextInput component updates to reflect what I've typed. BUT,
    how do I retrieve that text to a variable? (I need to save the new
    value back to the external text file).
    Current code:
    myfieldtext = sprite(51).text
    And eventPassMode is set to passAlways
    this retrieves the initial value regardless of what I type.
    Any help appreciated!

    I'm not sure if this all helps, but I had to make a flash
    name input box
    recently. I was getting all sorts of weird results trying to
    get the text
    out of flash. It was giving me all the font info etc, and I
    just needed the
    name. So what I ended up doing is when they were done
    entering the text, I
    put the text into a variable within flash, then pulled the
    data from that
    variable rather than striaght out of the text.
    in director, in the behaviour attached to the flash sprite:
    myText = sprite("nameInput").getVariable( "myNameString",
    True)
    where the sprite is named "nameInput". It seems better to
    name the sprite
    and refer to it that way than using the sprite number, such
    as sprite(51).
    In flash I have the text input field named "textInput", and
    the following
    code attached to the save button. You may have to use a
    different event,
    like when they text input loses focus.
    on (release) {
    var myNameString = "";
    myNameString = textInput.text
    trace(myNameString)
    getURL('event:doEvent,1')
    Timm
    "tayl" <[email protected]> wrote in message
    news:edjutm$ptl$[email protected]..
    > Hi,
    >
    > I've been banging my head against the wall with this
    one....
    >
    > I've placed aTextInput Flash Component on the stage
    which reads/displays a
    > value from an external text file. So far so good.
    >
    > If I enter new text during run-time - editable is set to
    true - the
    > TextInput
    > component updates to reflect what I've typed. BUT, how
    do I retrieve that
    > text
    > to a variable? (I need to save the new value back to the
    external text
    > file).
    >
    > Current code:
    > myfieldtext = sprite(51).text
    > And eventPassMode is set to passAlways
    >
    > this retrieves the initial value regardless of what I
    type.
    >
    > Any help appreciated!
    >
    >
    >

  • Flash Component Problem in D11

    I have a project where I am using flash component CheckBoxes.  I loaded them onto the screen and when I try to make the sprite width of each checkbox wider, the sprite seems to disappear on the stage. If I dont mess with the width, they display just fine and work correctly.
    Is this a common error for flash components in director 11?  Is it even possible to use lingo to adjust a flash component's sprite width?
    BTW - the setting of the Flash Component's sprite width occurs on an exitframe, not on a beginsprite
    Any help or info to point me in the right direction woiuld be appreciated.
    Thanks guys

    I specifically asked you for a file with a single component and a script attached that demonstrated what you were reporting. I asked for this so that I didn't have to waste time wading through extraneous code trying to figure out what was at issue.
    Your problem is that when you set the width, the height drops to zero. I don't know why. In a simple test case with a single component and a behavior attached that sets the sprite.width in the #beginSprite handler this doesn't happen - the width changes and the (original) height is maintained. Perhaps it's a consequence of makeScriptedSprite() - possibly because there is no sprite in place to start with, and therefore no original height to maintain.
    Here is your script "SetStaticProp" with my amendments:
    property pMyLinkInfo
    property pSetMyFlashProps
    property mySprite
    on new me, iNum, bSetProps, lInfo
      mySprite = sprite(iNum)
      pSetMyFlashProps = bSetProps
      pMyLinkInfo = lInfo
      return me
    end
    on endSprite me
      mySprite = VOID
    end
    on exitFrame me
      if pSetMyFlashProps = 1 then
        mySprite.static = not (pMyLinkInfo.enabled)
        mySprite.label = pMyLinkInfo.name
        tHeight = mySprite.height
        mySprite.width = 160
        mySprite.height = tHeight
        pSetMyFlashProps = 0
      end if
    end
    and here is the amended fragment from your "Generate Link Instance" parent script:
      --****Next Line causes CheckBox to go missing********
      --  sprite(CheckBoxSnum).width = 160
      myScript = script("SetStaticProp").new( CheckBoxSnum, 1, duplicate(myInfo) )
      sprite(CheckBoxSnum).scriptInstanceList.add(myScript)
      gItemSelectionList.add(myInfo)

  • My Safari keeps crashing...HELP...re-installed flash player.  No prob on Firefox  OS 10.4.11

    My Safari keeps crashing...HELP...re-installed flash player.  No prob on Firefox  OS 10.4.11
    Here's the report...
    Date/Time:      2012-01-31 11:01:16.434 -0800
    OS Version:     10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path:    /Applications/Safari.app/Contents/MacOS/Safari
    Parent:  WindowServer [62]
    Version:        4.1.3 (4533.19.4)
    Build Version:  1
    Project Name:   WebBrowser
    Source Version: 75331904
    PID:    550
    Thread: 0
    Exception:  EXC_BAD_ACCESS (0x0001)
    Codes:      KERN_INVALID_ADDRESS (0x0001) at 0x61747369
    Thread 0 Crashed:
    0   libobjc.A.dylib                          0x90a59387 objc_msgSend + 23
    1   com.apple.Safari                         0x002b8b9f 0x1000 + 2849695
    2   com.apple.Safari                         0x002b8db0 0x1000 + 2850224
    3   com.apple.Safari                         0x000c81aa 0x1000 + 815530
    4   com.apple.Safari                         0x001489b0 0x1000 + 1341872
    5   com.apple.Safari                         0x0007bc8c 0x1000 + 502924
    6   com.apple.WebKit                         0x0102dfa6 CallFormDelegate(WebView*, objc_selector*, objc_object*, objc_object*, objc_object*, objc_object*, objc_object*) + 238
    7   com.apple.WebKit                         0x01073712 WebFrameLoaderClient::dispatchWillSubmitForm(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), ***::PassRefPtr<WebCore::FormState>) + 442
    8   com.apple.WebCore                        0x0167cef2 WebCore::FrameLoader::continueLoadAfterNavigationPolicy(WebCore::ResourceReques t const&, ***::PassRefPtr<WebCore::FormState>, bool) + 522
    9   com.apple.WebCore                        0x0167cc37 WebCore::FrameLoader::callContinueLoadAfterNavigationPolicy(void*, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool) + 55
    10  com.apple.WebCore                        0x0167ca26 WebCore::PolicyCallback::call(bool) + 74
    11  com.apple.WebCore                        0x0167c7fb WebCore::PolicyChecker::continueAfterNavigationPolicy(WebCore::PolicyAction) + 905
    12  com.apple.WebKit                         0x01018c7f -[WebFramePolicyListener receivedPolicyDecision:] + 51
    13  com.apple.WebKit                         0x01018c45 -[WebFramePolicyListener use] + 41
    14  com.apple.Safari                         0x00023d08 0x1000 + 142600
    15  libobjc.A.dylib                          0x90a5cc56 objc_msgSendv + 54
    16  com.apple.Foundation                     0x92800d82 -[NSInvocation invoke] + 932
    17  com.apple.Foundation                     0x92826d3b -[NSInvocation invokeWithTarget:] + 67
    18  com.apple.WebKit                         0x01018abd -[_WebSafeForwarder forwardInvocation:] + 327
    19  com.apple.Foundation                     0x927ffe38 -[NSObject(NSForwardInvocation) forward::] + 469
    20  libobjc.A.dylib                          0x90a5cba1 _objc_msgForward + 49
    21  com.apple.WebKit                         0x01073a6d WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), WebCore::NavigationAction const&, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>) + 201
    22  com.apple.WebCore                        0x01d8288c WebCore::PolicyChecker::checkNavigationPolicy(WebCore::ResourceRequest const&, WebCore::DocumentLoader*, ***::PassRefPtr<WebCore::FormState>, void (*)(void*, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool), void*) + 1450
    23  com.apple.WebCore                        0x0167a589 WebCore::FrameLoader::loadWithDocumentLoader(WebCore::DocumentLoader*, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::FormState>) + 1063
    24  com.apple.WebCore                        0x01c525d1 WebCore::FrameLoader::loadWithNavigationAction(WebCore::ResourceRequest const&, WebCore::NavigationAction const&, bool, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::FormState>) + 675
    25  com.apple.WebCore                        0x01c533a0 WebCore::FrameLoader::loadURL(WebCore::KURL const&, WebCore::String const&, WebCore::String const&, bool, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::Event>, ***::PassRefPtr<WebCore::FormState>) + 1586
    26  com.apple.WebCore                        0x01c5435f WebCore::FrameLoader::loadFrameRequest(WebCore::FrameLoadRequest const&, bool, bool, ***::PassRefPtr<WebCore::Event>, ***::PassRefPtr<WebCore::FormState>, WebCore::ReferrerPolicy) + 759
    27  com.apple.WebCore                        0x0201e01a WebCore::ScheduledFormSubmission::fire(WebCore::Frame*) + 194
    28  com.apple.WebCore                        0x017c05bc WebCore::RedirectScheduler::timerFired(WebCore::Timer<WebCore::RedirectSchedule r>*) + 72
    29  com.apple.WebCore                        0x0201db04 WebCore::Timer<WebCore::RedirectScheduler>::fired() + 72
    30  com.apple.WebCore                        0x016d5c7f WebCore::ThreadTimers::sharedTimerFiredInternal() + 97
    31  com.apple.WebCore                        0x016d5b8d WebCore::ThreadTimers::sharedTimerFired() + 59
    32  com.apple.WebCore                        0x01daac7d WebCore::timerFired(__CFRunLoopTimer*, void*) + 63
    33  com.apple.CoreFoundation                 0x9082d756 CFRunLoopRunSpecific + 3341
    34  com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    35  com.apple.HIToolbox                      0x91c55878 RunCurrentEventLoopInMode + 285
    36  com.apple.HIToolbox                      0x91c54f82 ReceiveNextEventCommon + 385
    37  com.apple.HIToolbox                      0x91c54dd9 BlockUntilNextEventMatchingListInMode + 81
    38  com.apple.AppKit                         0x9f2f6f45 _DPSNextEvent + 572
    39  com.apple.AppKit                         0x9f2f6b37 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    40  com.apple.Safari                         0x0000f6f9 0x1000 + 59129
    41  com.apple.AppKit                         0x9f2f08c4 -[NSApplication run] + 512
    42  com.apple.AppKit                         0x9f2e4820 NSApplicationMain + 573
    43  com.apple.Safari                         0x0000749b 0x1000 + 25755
    44  com.apple.Safari                         0x0010e512 0x1000 + 1103122
    45  com.apple.Safari                         0x00007219 0x1000 + 25113
    Thread 1:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x0050ade0 ***::ThreadCondition::wait(***::Mutex&) + 24
    2   com.apple.WebCore                        0x015eadd0 WebCore::IconDatabase::syncThreadMainLoop() + 256
    3   com.apple.WebCore                        0x015e8856 WebCore::IconDatabase::iconDatabaseSyncThread() + 192
    4   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 2:
    0   libSystem.B.dylib                        0x90009cd7 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Foundation                     0x928565da +[NSURLCache _diskCacheSyncLoop:] + 206
    4   com.apple.Foundation                     0x927f9cfc forkThreadForFunction + 123
    5   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 3:
    0   libSystem.B.dylib                        0x90009cd7 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Safari                         0x00026c6d 0x1000 + 154733
    4   com.apple.Safari                         0x00026b26 0x1000 + 154406
    5   com.apple.Safari                         0x00026aab 0x1000 + 154283
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 4:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.Foundation                     0x9284fc60 -[NSConditionLock lockWhenCondition:] + 39
    2   com.apple.Syndication                    0x998c779e -[AsyncDB _run:] + 181
    3   com.apple.Foundation                     0x927f9cfc forkThreadForFunction + 123
    4   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 5:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2   com.apple.Safari                         0x002ddd66 0x1000 + 3001702
    3   com.apple.Safari                         0x002dde5c 0x1000 + 3001948
    4   com.apple.Safari                         0x0003a0cd 0x1000 + 233677
    5   com.apple.Safari                         0x0003a02f 0x1000 + 233519
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 6:
    0   libSystem.B.dylib                        0x90009cd7 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.Foundation                     0x9282f39c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4   com.apple.Foundation                     0x927f9cfc forkThreadForFunction + 123
    5   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 7:
    0   libSystem.B.dylib                        0x9001a1cc select + 12
    1   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 8:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.JavaScriptCore                 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2   com.apple.WebCore                        0x018bb8d2 WebCore::LocalStorageThread::threadEntryPoint() + 170
    3   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 9:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   com.apple.ColorSync                      0x915a96ab pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2   com.apple.ColorSync                      0x915c3ddc CMMConvTask(void*) + 60
    3   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 10:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x193a730f unregister_ShockwaveFlash + 47503
    2   ...lashPlayer-10.4-10.5.plugin           0x18f7ff9f 0x18f66000 + 106399
    3   ...lashPlayer-10.4-10.5.plugin           0x193a73fc unregister_ShockwaveFlash + 47740
    4   ...lashPlayer-10.4-10.5.plugin           0x193a7440 unregister_ShockwaveFlash + 47808
    5   ...lashPlayer-10.4-10.5.plugin           0x193a7566 unregister_ShockwaveFlash + 48102
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 11:
    0   libSystem.B.dylib                        0x900248c7 semaphore_wait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x193a730f unregister_ShockwaveFlash + 47503
    2   ...lashPlayer-10.4-10.5.plugin           0x18f7ff9f 0x18f66000 + 106399
    3   ...lashPlayer-10.4-10.5.plugin           0x193a73fc unregister_ShockwaveFlash + 47740
    4   ...lashPlayer-10.4-10.5.plugin           0x193a7440 unregister_ShockwaveFlash + 47808
    5   ...lashPlayer-10.4-10.5.plugin           0x193a7566 unregister_ShockwaveFlash + 48102
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 12:
    0   libSystem.B.dylib                        0x90009cd7 mach_msg_trap + 7
    1   com.apple.CoreFoundation                 0x9082d227 CFRunLoopRunSpecific + 2014
    2   com.apple.CoreFoundation                 0x9082ca42 CFRunLoopRunInMode + 61
    3   com.apple.audio.CoreAudio                0x9e61c356 HALRunLoop::OwnThread(void*) + 158
    4   com.apple.audio.CoreAudio                0x9e61c171 CAPThread::Entry(CAPThread*) + 93
    5   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 13:
    0   libSystem.B.dylib                        0x90047dd7 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x193a72d7 unregister_ShockwaveFlash + 47447
    2   ...lashPlayer-10.4-10.5.plugin           0x1914780e 0x18f66000 + 1972238
    3   ...lashPlayer-10.4-10.5.plugin           0x193a73fc unregister_ShockwaveFlash + 47740
    4   ...lashPlayer-10.4-10.5.plugin           0x193a7440 unregister_ShockwaveFlash + 47808
    5   ...lashPlayer-10.4-10.5.plugin           0x193a7566 unregister_ShockwaveFlash + 48102
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 14:
    0   libSystem.B.dylib                        0x90047dd7 semaphore_timedwait_signal_trap + 7
    1   ...lashPlayer-10.4-10.5.plugin           0x193a72d7 unregister_ShockwaveFlash + 47447
    2   ...lashPlayer-10.4-10.5.plugin           0x1928d548 0x18f66000 + 3306824
    3   ...lashPlayer-10.4-10.5.plugin           0x193a73fc unregister_ShockwaveFlash + 47740
    4   ...lashPlayer-10.4-10.5.plugin           0x193a7440 unregister_ShockwaveFlash + 47808
    5   ...lashPlayer-10.4-10.5.plugin           0x193a7566 unregister_ShockwaveFlash + 48102
    6   libSystem.B.dylib                        0x90024227 _pthread_body + 84
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x61747369  ebx: 0x9082621d  ecx: 0x90a6ec04  edx: 0x188bcc90
      edi: 0x61747371  esi: 0x188ca060  ebp: 0xbfffdfc8  esp: 0xbfffdf94
       ss: 0x0000001f  efl: 0x00010206  eip: 0x90a59387   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
    Binary Images Description:
        0x1000 -   0x330fff com.apple.Safari 4.1.3 (4533.19.4)          /Applications/Safari.app/Contents/MacOS/Safari
      0x505000 -   0x6ddfff com.apple.JavaScriptCore 4533.19 (4533.19.1)          /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC ore
    0x1008000 -  0x10f5fff com.apple.WebKit 4533.19 (4533.19.4)          /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x119a000 -  0x1448fff com.apple.QuartzCore 1.4.13          /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.f ramework/Versions/A/QuartzCore
    0x14dc000 -  0x15bafff libxml2.2.dylib           /usr/lib/libxml2.2.dylib
    0x15e6000 -  0x20a7fff com.apple.WebCore 4533.19 (4533.19.4)          /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore. framework/Versions/A/WebCore
    0x17e03000 - 0x17e06fff com.macromedia.Flash Player.plugin 10.3.183.11          /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x18f66000 - 0x199b4fff com.macromedia.FlashPlayer-10.4-10.5.plugin 10.3.183.11          /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x8fe00000 - 0x8fe4afff dyld 46.16          /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib           /usr/lib/libSystem.B.dylib
    0x90229000 - 0x902fffff ATS           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ATS.framework/Versions/A/ATS
    0x90446000 - 0x904f4fff com.apple.QTKit 7.6.4 (1327.73)          /System/Library/Frameworks/QTKit.framework/QTKit
    0x906cc000 - 0x9073ffff com.apple.framework.IOKit 1.4.8 (???)          /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90758000 - 0x907c0fff com.apple.CoreServices.OSServices 4.1          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS Services.framework/Versions/A/OSServices
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35)          /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat ion
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???)          /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90a57000 - 0x90ad6fff libobjc.A.dylib           /usr/lib/libobjc.A.dylib
    0x90c66000 - 0x90c78fff libauto.dylib           /usr/lib/libauto.dylib
    0x90db2000 - 0x90dc9fff libGL.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl ib
    0x90dde000 - 0x90e36fff libGLU.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy lib
    0x90e51000 - 0x90e77fff com.apple.SystemConfiguration 1.8.6          /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System Configuration
    0x90e8c000 - 0x90e8cfff com.apple.Carbon 10.4 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90e8f000 - 0x90e9afff com.apple.opengl 1.4.16          /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90ea2000 - 0x90ebdfff com.apple.DirectoryService.Framework 3.3          /System/Library/Frameworks/DirectoryService.framework/Versions/A/Directory Service
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CF Network.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/We bServicesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se archKit.framework/Versions/A/SearchKit
    0x911e8000 - 0x9125bfff com.apple.print.framework.PrintCore 4.6 (177.13)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/PrintCore.framework/Versions/A/PrintCore
    0x912a7000 - 0x912affff com.apple.speech.recognition.framework 3.6          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe cognition.framework/Versions/A/SpeechRecognition
    0x912f2000 - 0x91302fff com.apple.ImageCapture 3.0.4          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap ture.framework/Versions/A/ImageCapture
    0x91353000 - 0x91394fff com.apple.NavigationServices 3.4.4 (3.4.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati onServices.framework/Versions/A/NavigationServices
    0x91415000 - 0x9141cfff libbsm.dylib           /usr/lib/libbsm.dylib
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic ationServices
    0x91521000 - 0x9154dfff com.apple.AE 316.3          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ColorSync.framework/Versions/A/ColorSync
    0x91710000 - 0x917b9fff com.apple.QD 3.10.28 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/HIServices.framework/Versions/A/HIServices
    0x9186b000 - 0x91885fff com.apple.FindByContent 1.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/FindByContent.framework/Versions/A/FindByContent
    0x9188f000 - 0x9189dfff com.apple.framework.Apple80211 4.5.5 (455.2)          /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802 11
    0x91944000 - 0x91ae3fff com.apple.security 4.5.2 (29774)          /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91c4c000 - 0x91f41fff com.apple.HIToolbox 1.4.10 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo x.framework/Versions/A/HIToolbox
    0x9262e000 - 0x9271bfff libiconv.2.dylib           /usr/lib/libiconv.2.dylib
    0x9271d000 - 0x9279bfff com.apple.DesktopServices 1.3.7          /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A /DesktopServicesPriv
    0x927dc000 - 0x92a14fff com.apple.Foundation 6.4.12 (567.42)          /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bf1000 - 0x92bf6fff com.apple.securityhi 2.0.1 (24742)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security HI.framework/Versions/A/SecurityHI
    0x92bfc000 - 0x92c8dfff com.apple.ink.framework 101.2.1 (71)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram ework/Versions/A/Ink
    0x92ca1000 - 0x92ca4fff com.apple.help 1.0.3 (32.1)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra mework/Versions/A/Help
    0x92ca7000 - 0x92cc5fff com.apple.openscripting 1.2.7 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri pting.framework/Versions/A/OpenScripting
    0x92cd7000 - 0x92cddfff com.apple.print.framework.Print 5.2 (192.4)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr amework/Versions/A/Print
    0x92ce3000 - 0x92d46fff com.apple.htmlrendering 66.1 (1.1.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend ering.framework/Versions/A/HTMLRendering
    0x92dd2000 - 0x92ddffff com.apple.audio.SoundManager 3.9.1          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo und.framework/Versions/A/CarbonSound
    0x92de6000 - 0x92debfff com.apple.CommonPanels 1.2.3 (73)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa nels.framework/Versions/A/CommonPanels
    0x93095000 - 0x930abfff libcups.2.dylib           /usr/lib/libcups.2.dylib
    0x93266000 - 0x93266fff com.apple.Cocoa 6.4 (???)          /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93323000 - 0x9334cfff com.apple.LDAPFramework 1.4.2 (69.1.1)          /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93500000 - 0x9351dfff libresolv.9.dylib           /usr/lib/libresolv.9.dylib
    0x935f5000 - 0x93606fff com.apple.securityfoundation 2.2.1 (28150)          /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit yFoundation
    0x937d0000 - 0x9380efff com.apple.securityinterface 2.2.1 (27695)          /System/Library/Frameworks/SecurityInterface.framework/Versions/A/Security Interface
    0x93e4f000 - 0x93e4ffff com.apple.audio.units.AudioUnit 1.4.2          /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93ee9000 - 0x942f2fff libBLAS.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libBLAS.dylib
    0x947bd000 - 0x94903fff com.apple.AddressBook.framework 4.0.6 (490)          /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9498f000 - 0x9499efff com.apple.DSObjCWrappers.Framework 1.1          /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSOb jCWrappers
    0x949d4000 - 0x949e3fff libsasl2.2.dylib           /usr/lib/libsasl2.2.dylib
    0x95152000 - 0x95246fff libicucore.A.dylib           /usr/lib/libicucore.A.dylib
    0x952ad000 - 0x9535ffff libcrypto.0.9.7.dylib           /usr/lib/libcrypto.0.9.7.dylib
    0x953bc000 - 0x953e1fff libssl.0.9.7.dylib           /usr/lib/libssl.0.9.7.dylib
    0x95540000 - 0x95548fff com.apple.DiskArbitration 2.1.2          /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr ation
    0x95756000 - 0x957d1fff com.apple.CoreData 91 (92.1)          /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x958d3000 - 0x958f1fff com.apple.Metadata 10.4.4 (121.36)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me tadata.framework/Versions/A/Metadata
    0x95936000 - 0x9596efff com.apple.PDFKit 1.0.4          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.f ramework/Versions/A/PDFKit
    0x95d53000 - 0x95d55fff libmathCommon.A.dylib           /usr/lib/system/libmathCommon.A.dylib
    0x95f5b000 - 0x95f5bfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96068000 - 0x960f6fff com.apple.vImage 2.5          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma ge.framework/Versions/A/vImage
    0x9658f000 - 0x96594fff com.apple.agl 2.5.9 (AGL-2.5.9)          /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e43000 - 0x96e43fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/vecLib
    0x96ecf000 - 0x96ecffff com.apple.vecLib 3.3.1 (vecLib 3.3.1)          /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x970c0000 - 0x970c0fff com.apple.quartzframework 1.0          /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x972cc000 - 0x97306fff libGLImage.dylib           /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag e.dylib
    0x97443000 - 0x974fcfff com.apple.audio.toolbox.AudioToolbox 1.4.7          /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x981e3000 - 0x982bafff com.apple.QuartzComposer 1.2.6 (32.25)          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCo mposer.framework/Versions/A/QuartzComposer
    0x98f25000 - 0x98f4efff com.apple.CoreMediaPrivate 15.0          /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/Co reMediaPrivate
    0x998c4000 - 0x998fbfff com.apple.Syndication 1.0.8 (56.1)          /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndica tion
    0x9b513000 - 0x9b553fff com.apple.CoreMediaIOServicesPrivate 20.0          /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Ver sions/A/CoreMediaIOServicesPrivate
    0x9b8e1000 - 0x9b8f3fff com.apple.SyndicationUI 1.0.8 (56.1)          /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndi cationUI
    0x9ca48000 - 0x9d93ffff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)          /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui ckTimeComponents
    0x9daa3000 - 0x9db07fff libstdc++.6.dylib           /usr/lib/libstdc++.6.dylib
    0x9de1f000 - 0x9e13efff com.apple.QuickTime 7.6.4 (1327.73)          /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9e1dd000 - 0x9e201fff libvDSP.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvDSP.dylib
    0x9e4b4000 - 0x9e4bbfff libgcc_s.1.dylib           /usr/lib/libgcc_s.1.dylib
    0x9e503000 - 0x9e50efff libCSync.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9e513000 - 0x9e52dfff libRIP.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9e533000 - 0x9e542fff libCGATS.A.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9e549000 - 0x9e587fff com.apple.vmutils 4.0.2 (93.1)          /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9e59c000 - 0x9e5b2fff com.apple.CoreVideo 1.4.2          /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9e5c2000 - 0x9e603fff libsqlite3.0.dylib           /usr/lib/libsqlite3.0.dylib
    0x9e60b000 - 0x9e681fff com.apple.audio.CoreAudio 3.0.5          /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9e6d2000 - 0x9ea86fff libLAPACK.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libLAPACK.dylib
    0x9eab3000 - 0x9eb0cfff libvMisc.dylib           /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvMisc.dylib
    0x9eb15000 - 0x9eb54fff libTIFF.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9eb5a000 - 0x9eb75fff libPng.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9eb7a000 - 0x9ec02fff libRaw.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x9ec06000 - 0x9ec65fff libJP2.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9ec77000 - 0x9ec95fff libJPEG.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9ec9a000 - 0x9ecdafff com.apple.ImageIO.framework 1.5.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/ImageIO
    0x9eced000 - 0x9ecf9fff com.apple.speech.synthesis.framework 3.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9ed00000 - 0x9ed0efff libz.1.dylib           /usr/lib/libz.1.dylib
    0x9ed13000 - 0x9ed15fff libRadiance.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9ed17000 - 0x9ed1bfff libGIF.dylib           /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9ed1d000 - 0x9ed5afff com.apple.LaunchServices 183.1          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LaunchServices.framework/Versions/A/LaunchServices
    0x9ed6e000 - 0x9ed84fff com.apple.LangAnalysis 1.6.3          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x9ed90000 - 0x9edcdfff com.apple.CoreText 1.1.3 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreText.framework/Versions/A/CoreText
    0x9edf4000 - 0x9f249fff com.apple.CoreGraphics 1.258.85 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9f2e0000 - 0x9f996fff com.apple.AppKit 6.4.10 (824.48)          /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9fd17000 - 0x9ffbdfff com.apple.CoreServices.CarbonCore 682.31 (682.32)          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca rbonCore.framework/Versions/A/CarbonCore
    Model: MacBook1,1, BootROM MB11.0061.B03, 2 processors, Intel Core Duo, 2 GHz, 1 GB
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplays_integrated_vram
    Memory Module: BANK 0/DIMM0, 512 MB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 512 MB, DDR2 SDRAM, 667 MHz
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x86), 1.4.4
    Bluetooth: Version 1.9.5f4, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: TOSHIBA MK8032GSX, 74.53 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-857
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA

    Hi,
    Did you recently upgrade Flash from 12 to 13?<br>
    There have been issues reported with the 13.0.0.182 version of the Flash plugin crashing on some older Mac computers due to the compiler generating incompatible code.
    The only way to recover is to uninstall the Flash 13 version and revert to an older Flash version and wait for Adobe to release an update that addresses this issue.
    * http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html
    You can either install the latest Flash 11.7 version that has the latest security updates (may not work with Safari) or the last Flash 12 version that didn't get the security updates Flash 13 has.
    * http://www.adobe.com/special/products/flashplayer/fp_distribution3.html
    Adobe Community: ATTENTION MAC CUSTOMERS - Flash Player 13 "Plugin Failure" Workaround:
    * http://forums.adobe.com/thread/1447282

  • Need help setting up and configuring rsync

    Hello
    I need help setting up, or rather configuring rsync to sync data between my brand new iMac and my Macbook Air.
    Here is what I would like to:
    - I want all of the files on both machines to be an exact mirror or copy of each other. Basically I have an iMac for at home, and then a Macbook Air for the road.
    - The main folder on both Macs is called 'Sara' and I want the contents (mainly the 'movies' folder, 'music' folder, 'documents' folder and 'pictures' folder) to immediately sync up with each other when both of them are on my home network.
    - this means if I'm working on a file at home on my Macbook, it will immediately write to the same directory on my iMac and vice versa (if I'm working on file(s) on my iMac, it will immediately save the contents to my Macbook). This way, if I'm working on last minute project my iMac, and then have to head out the door to the airport, the file is immediately saved to my Macbook (no usb for USB transfer).
    - hopefully this makes sense??
    Any help is greatly appreciated!
    Thanks

    It's a lofty but unrealistic goal.  Rsync does not run automatically.  There is no realistic method of instantaneously synching two computers over the internet or even on a LAN.
    I would suggest you might try using Synk Pro which, in theory, can keep two devices in sync when they are both on the same network (and both have shared and mounted drives.)
    If you must do this with rsync then I suggest a Google search for rsync tutorials.

  • Help on JSP Basic

    Hi ALL ,
    Can any one help me on Basic JSP.
    Question:
    I have a jsp page called page.jsp and 123.jsp.. in 123.jsp i have a Hyper link Called HLINK if user click that link ... contents in the page.jsp as to be displayed in the 123.jsp page just below the Hlink.. it is possible or what ... if possible any help over this..
    Thanks in advance
    Regards
    Vicky

    Hi,
    Thanks for your reply..
    Could u pl . tell me how to set that Hlink target to the frame...
    Regards
    Vicky

  • Unable to set import lock for software component version

    Hi team,
    While importing object (.tpz) file into integration repository we are getting error message as below.
    ======
    Unable to set import lock for software component version <XXXX>-COMMON,1.0 of <XXX>.com because user <userid> is currently importing data to this component
    try again once user <userid> has finished importing data
    =======
    We checked with the user and found he is not doing any activity in fact he logged off. the developer wants to import and how do we terminate this import attement and proceed with new importing of the  same object
    We wan't to avoid cache refresh as this is production environment
    We already performed clear SLD data cache with in the IR not for whole.
    Thanks
    Vijay

    Hi Vijay,
        Thefollowing threads speak about the locking issues with the IR objects .Hope this will help you out in resolving the issue.
    http://help.sap.com/saphelp_erp2005/helpdata/EN/93/a3a74046033913e10000000a155106/content.htm
    Internal lock version management : Unable to copy objects
    Thanks,
    Ram.

  • Animated Flash Component Scaling when used as Button Skin

    I am trying to skin the overSkin of a Flex Button component with an animated Flash .swc component. (Actually, an Accordion Header, but for all practical purposes the same.)
    All works completely fine, in most cases.  The problem I run into is when I have any objects in the Flash animation moving on and off stage.  When this happens, although the objects cannot be seen when moved off-stage, the viewable area of the Flash animation scales down in either direction, or both, to make room in the button for the objects off stage.
    If I play the animation directly in the application, or a Canvas, everything works fine and no scaling occurs.  But for a Button, where I really need it, I get the constant scaling back and forth as the Flash movie runs.  This can be REALLY annoying when trying to click on a button! (Or you find that you are no longer "over" the button (because it scaled down) so you get flicker back and forth between the Up and Over states.)
    Any ideas on how I can keep this from happening, either on the Flash or Flex side would be much appreciated.
    Pertinent Code:
    [Bindable]
    [Embed(source="assets//btn_StaticHollywood.jpg")]
    private var Film:Class;
    [Bindable]
    [Embed(skinClass="fc.HollywoodWithSearchlights")]
    private var FilmOver:Class;
    animatedButton.setStyle("upSkin", Film);
    animatedButton.setStyle("overSkin", FilmOver);
    <mx:Button id="animatedButton" cornerRadius="0" />
    Note: I tried all assortments of setting dimensions I believe.
    Remember, the Flash component has objects that move in and off the stage from both directions, and this is the cause of the automatic resizing of the Button when it runs.

    I am assuming that you are using Flex 4 and this does not work. In Flex 4, the default theme used is the "Spark" theme. In Flex 3, we used the "Halo" theme. The Halo theme supports styles like borderStyle, but, the Spark theme does not.
    If you want to use these styles, you will need to compile with the Halo theme. You can do this by adding an additional compiler argument -theme=<SDK_DIR>/frameworks/themes/Halo/halo.swc (point to the halo.swc in your SDK installation)
    Joan

  • Integrate flash component into JSP page

    Hi,
    I need to integrate a flash component into my JSP page. flash component is used to put signature via mouse drag. the signature that is put should be captured and stored in DB. can anyone help me how to do it. Thanks in advance...

    I thought about including it in an outputText tag but i never tried it because the output text shouldn't be rendered as html code (by definition).
    Thank you for your brilliant solution, it works fine now.

  • Help, some font work on flash.text.engine throw Error #2161

    I found some font work on flash.text.engine throw Error #2161
    they are: "Vivaldi","Harlow Solid Italic","Bauhaus 93", "Algerian".
    the error info is:
    Error: Error #2161: 设置文本布局时出现内部错误。
    at flash.text.engine::TextBlock/DoCreateTextLine()
    at flash.text.engine::TextBlock/createTextLine()
    at flashx.tcal.compose::ComposeState/createTextLine()[C:\Development\tcal_core\flashx\tcal\c ompose\ComposeState.as:292]
    at flashx.tcal.compose::ComposeState/composeNextLine()[C:\Development\tcal_core\flashx\tcal\ compose\ComposeState.as:207]
    at flashx.tcal.compose::BaseCompose/composeParagraphElement()[C:\Development\tcal_core\flash x\tcal\compose\BaseCompose.as:238]
    at flashx.tcal.compose::BaseCompose/composeBlockElement()[C:\Development\tcal_core\flashx\tc al\compose\BaseCompose.as:150]
    at flashx.tcal.compose::BaseCompose/composeInternal()[C:\Development\tcal_core\flashx\tcal\c ompose\BaseCompose.as:213]
    at flashx.tcal.compose::ComposeState/composeInternal()[C:\Development\tcal_core\flashx\tcal\ compose\ComposeState.as:120]
    at flashx.tcal.compose::BaseCompose/composeTextFlow()[C:\Development\tcal_core\flashx\tcal\c ompose\BaseCompose.as:194]
    at flashx.tcal.compose::ComposeState/composeTextFlow()[C:\Development\tcal_core\flashx\tcal\ compose\ComposeState.as:89]
    at flashx.tcal.compose::StandardFlowComposer/http://ns.adobe.com/tcal/internal/2008::callThe Composer()[C:\Development\tcal_core\flashx\tcal\compose\StandardFlowComposer.as:383]
    at flashx.tcal.compose::StandardFlowComposer/compose()[C:\Development\tcal_core\flashx\tcal\ compose\StandardFlowComposer.as:434]
    at flashx.tcal.factory::TextLineFactory$/factoryMeasure()[C:\Development\tcal_core\flashx\tc al\factory\TextLineFactory.as:267]
    at flashx.tcal.factory::TextLineFactory$/createTextLinesFromTextFlow()[C:\Development\tcal_c ore\flashx\tcal\factory\TextLineFactory.as:186]
    at mx.graphics.graphicsClasses::TextFlowComposer/composeTextFlow()[E:\dev\trunk\frameworks\p rojects\flex4\src\mx\graphics\graphicsClasses\TextFlowComposer.as:123]
    at mx.graphics::TextGraphic/compose()[E:\dev\trunk\frameworks\projects\flex4\src\mx\graphics \TextGraphic.as:511]
    at mx.graphics::TextGraphic/measure()[E:\dev\trunk\frameworks\projects\flex4\src\mx\graphics \TextGraphic.as:297]
    at mx.graphics.graphicsClasses::GraphicElement/measureSizes()[E:\dev\trunk\frameworks\projec ts\flex4\src\mx\graphics\graphicsClasses\GraphicElement.as:2592]
    at mx.graphics.graphicsClasses::GraphicElement/validateSize()[E:\dev\trunk\frameworks\projec ts\flex4\src\mx\graphics\graphicsClasses\GraphicElement.as:2554]
    at mx.components::Group/validateSize()[E:\dev\trunk\frameworks\projects\flex4\src\mx\compone nts\Group.as:307]
    at mx.managers::LayoutManager/validateClient()[E:\dev\trunk\frameworks\projects\framework\sr c\mx\managers\LayoutManager.as:837]
    at mx.controls::List/makeRowsAndColumns()[E:\dev\trunk\frameworks\projects\framework\src\mx\ controls\List.as:1302]
    at mx.controls.listClasses::ListBase/makeAdditionalRows()[E:\dev\trunk\frameworks\projects\f ramework\src\mx\controls\listClasses\ListBase.as:3901]
    at mx.controls.listClasses::ListBase/updateDisplayList()[E:\dev\trunk\frameworks\projects\fr amework\src\mx\controls\listClasses\ListBase.as:3635]
    at mx.controls::List/updateDisplayList()[E:\dev\trunk\frameworks\projects\framework\src\mx\c ontrols\List.as:1004]
    at mx.controls.listClasses::ListBase/validateDisplayList()[E:\dev\trunk\frameworks\projects\ framework\src\mx\controls\listClasses\ListBase.as:3273]
    at mx.managers::LayoutManager/validateDisplayList()[E:\dev\trunk\frameworks\projects\framewo rk\src\mx\managers\LayoutManager.as:622]
    at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\trunk\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:695]
    at Function/http://adobe.com/AS3/2006/builtin::apply()
    at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\trunk\frameworks\proje

    <div class=Section1><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>xtaotao,<o:p></o:p></span></p> <br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Can<br />you please file a bug in the bug base at <a href="http://bugs.adobe.com/flex/">http://bugs.adobe.com/flex/</a><br />and include a simple test case (and/or a list of fonts not working for you)<br />showing the behavior. If you file against &#8220;Flex SDK&#8221; and the &#8220;Gumbo:<br />TextArea&#8221; it will end up in my queue and I can investigate and transfer<br />to the appropriate team(s) as needed.<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Thanks,<o:p></o:p></span></p>< br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Peter<br />deHaan<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Flex<br />SDK Team | Adobe Systems Inc.<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'><br /><br /><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span<br />style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> xtaotao<br />[mailto:[email protected]] <br><br /><b>Sent:</b> Tuesday, November 04, 2008 4:07 AM<br><br /><b>To:</b> [email protected]<br><br /><b>Subject:</b> Re: Help, some font work on flash.text.engine throw Error #2161<o:p></o:p></span></p><br /><br /></div><br /><br /><p class=MsoNormal><o:p> </o:p></p><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>A new message was posted by<br />xtaotao in <br><br /><br><br /><b>Developers</b> --<br><br />  Help, some font work on flash.text.engine throw Error #2161<br><br /><br><br />and more font work on flash.text.engine do not throw error, but display effect<br />are different with TextField. <o:p></o:p></p><br /><br /><div class=MsoNormal><br /><br /><hr size=2 width=200 style='width:150.0pt' align=left><br /><br /></div><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>View/reply at <a<br />href="http://www.adobeforums.com/webx?13@@.59b6ee06/0">Help, some font work on<br />flash.text.engine throw Error #2161</a><br><br />Replies by email are OK.<br><br />Use the <a<br />href="http://www.adobeforums.com/webx?280@@.59b6ee06!folder=.3c060fa3">unsubscribe</a>< br />form to cancel your email subscription.<o:p></o:p></p><br /><br /></div>

  • Safari freeze on screen with flash component

    Our website have a few screens that have embedded flash components. For some reason, on Mac OSX 10.5.x, after accessing a certain screen that has flash component, safari screen freezes (javascript is still functional, but you are unable to navigate away from the screen, reload doesn't help either) on another screen that has embedded flash component. It's reproducible on safari 3.2 and 4.0.1. How to troubleshoot this problem?
    Thanks
    Message was edited by: Dev B.
    Message was edited by: Dev B.

    Hi
    Welcome to Apple Discussions
    I suggest posting on the Adobe Flash forums. There, you'll be reaching those employing Flash on their or client web sites.

  • Accessing public properties/methods of flash component

    I've been searching all day trying to figure out how I can go about accessing properties decalared with in a flash component or containers base actionscript class.
    I need to create a fairly complex interface within a part of a flex web app and I think it would be better to create it in flash profressional. I just cannot find any good information on how to get xmxl/flex to play nicely with swf/swc. Maybe it's justs not possible.
    Any help or even a point in the right direction would be greatly appreciated.

    So I ended up answering my own question, but thought I would share how I did it since I can't seem to find any instructions or examples anywhere.
    So what I wanted in the end was a swc file running within my flex app but I need to be able to pull data out of my swc for use with in flex. These are the steps I took to get there. If you read through this and feel there is a better way of achieving the end result please share.
    Start out by adding a Flash Professional Container to your FLEX project (I dont know the difference between Component and Container, all I figured out is Component would blow up when I started adding classes with the Flash Professional project)
    Give the Container and ID. mine is myTest
    Double click and open the Container with in Flash Professional
    Once in Flash Professional go to the Library tab and right click to add a new Symbol.Make it a MovieClip and name it what ever you would like and export it for Actionscript. **I have yet to add more to this but I plan on treating this as my "Stage" or base view.
    Once created drag a new instance into the view. Make sure it is at 0,0 and give it a instance name. You will use this name as your accessor in FLEX
    Right click on your new movie clip in the Library tab and selecet edit class. since all I wanted was a string I created a private string and its public getter method
    private var _dataString:string = "Some string of data";
    public function get dataString():String {
         return _dataString;
    Save your class and close it
    Click the Done button in the .fla window to save your Flash project and return to Flash Builder.
    Now with in the actionscript section of my MXML I can access the string above by myTest.appMain.dataString;    appMain is the instance name of the movieclip I created in Flash Professional.
    Now that I figured this out it seems so trival and shouldnt have taken me so long to figure out. I'm just surprised I couldn't find more info on the web about getting Flash components/containers to work well with in Flex/Flash Builder.
    I hope this helps someone out.

  • Tabbing in and out of a Flash component

    I'm not a Flash developer, but I was wondering if any of you could answer a question that I have so that I can pass the info on to my Flash developer.
    He has created a Flash component to put on one of my HTML pages, but I can't tab in to it from the other HTML elements on the page. When I navigate the page using the tab key, it just completely jumps over the Flash component, even though the Flash component has active elements in it. Also, when I use the mouse to click inside the Flash component, tabbing works, but then I can't tab out of it -- after the last active element, it wraps around back to the top of the Flash component.
    I'm very interested in ensuring that this Flash component is accessible to people that can't use a mouse. What can I tell the developer to do in order for people to be able to tab into and out of the Flash component.
    Thanks for your time.

    Hi Jack,
    This isn't a feature of iPhoto currently (let Apple know if you want it added apple.com/feedback). However, you can achieve a similar affect with Keynote under iWork 09. Drop the picture you want into a keynote slide. Go to the inspector. Go to the build inspector. Choose Effect > Scale. Raise the Scale slider to the desired amount of "zoom".
    Hope that helps!

Maybe you are looking for