Best place to hire an AE SDK Coder?

I can't find Adobe AE SDK coders out there.
I need one to build a pugin.
Anyone?

@giovannisperanza:
I am an experienced AE SDK coder (bot Mac+Win, 32bit and 64bit, CS4-CC) and can certainly help you with such a task (I created and converted many plugins on aescripts.com)
Please contact me at [email protected]
Thanks,
Toby

Similar Messages

  • Where's the best place to get code converted between ActionScript 2.0 and 3.0?

    Where's the best place to get code converted between ActionScript 2.0 and 3.0?
    If I just have occasional (very small) projects, what's the best way to get them done really fast by somebody who knows both 2.0 and 3.0?
    Thanks, Dan

    You have pretty much answered your own question... hire someone who has fairly thorough knowledge of both AS2 and AS3.
    I have heard there are some tools for converting between AS2 and AS3, but I have no knowledge of them other than having heard that they cannot convert all things.... which makes sense because there is not always a one-to-one relationship to how things ae done with AS2 and how they get done with AS3.

  • Best place in VOimpl java code to call a stored proc to populate results

    Hello all,
    Using JDev 11g, ADF BC and Trinidad.
    I am building an application that is primarily used for searching large amounts of data. We already have stored procedures on the database that perform the searches and dump the results into a holding table (together with a "search id"). I have easilly built a prototype of this application: my view object is simply "select a, b, c from results where search_id = :bv" - I have a service method in the AM that runs the stored procedure, obtains the search ID, binds it to the :bv in the VO and executes the VO's query - it's all working really nicely. Range paging is effective, the VO itself performs well, and I am able to control how long the stored proc runs via setting a timeout value.
    Now, I'd like to generalize this. My thinking is this:
    1). I'll add a custom property to my VO that is the SQL statement needed to call the stored procedure.
    2). I'll add some bind variables to the VO to represent all the query parameters that can be passed to the stored proc. I'll also use custom properties to indicate these are "fake" bvs, and not in the SQL query itself.
    3). The VO's SQL will remain simply "select a, b, c from results where search_id = :bv"
    4). I will (have already tested) override bindParametersForCollection so that the "fake" bind variables aren't bound into the SQL.
    Now, the question: I want to override some method in the VO's java code to call the stored procedure. The stored proc needs to be called before the actual query for the VO is run, and also before the method getQueryHitCount is called (so that the count is correct). What is the method that would be the "best" place to do this? My current thinking is that I would put the call in an over-ridden executeQueryForCollection call. As far as my analysis has gone, it seems to be always called before getQueryHitCount, but I have no way of knowing if this is completely safe.
    Any thoughts from the BC experts out there?
    Best regards,
    John

    John,
    from your description I understand that you essentially program the VO yourself. So I suggest that you read chapter 35.9 of the 'Fusion Developer’s Guide for Oracle Application Development Framework' (I guess you know where to find it). Since you still call the actual SQL not all of the chapter apply, but you get the idea how it works.
    And yes you analyzed the behavior correct. executeQueryForCollection() is allways called bevore getQueryHitCount().
    Timo

  • Where's the best place to store email templates?

    Hi all;
    In a web app I store all my email templates in a files folder in the web app. Can't do that with a worker in a cloud service - no files. So where's the best place to store them? In a BLOB? And if so, is there a way to have files in my project get automatically
    written to BLOB entries when I publish?
    thanks - dave
    What we did for the last 6 months -
    Made the world's coolest reporting & docgen system even more amazing

    Hi,
    I think we could use azure blob to save files.
    >>is there a way to have files in my project get automatically written to BLOB entries when I publish?
    If you choose azure cloud service, you could write the upload code at role onstart method. If you choose Azure website, please consider use azure webjob to do this, refer to
    http://azure.microsoft.com/en-us/documentation/articles/websites-dotnet-webjobs-sdk-get-started/ for more details about webjob.
    Regards

  • SmartFX Best Place to Check Out Parameters

    I have a fully functioning plugin (woo hoo!) and now I'm attempting to optimise it so it runs as quickly and efficiently as possible.
    One thought occurred to me after I looked over the Shifter example code supplied with the SDK (figuring out using the Iteration suites) - where is the best place to check out my parameters - Pre-render, or Smart Render?
    At the moment I check out all except for the layers during the call to Smart Render. There are a lot of parameters too, potentially, and from these I populate a bunch of variables I later use to draw my various scopes.
    The Shifter example checks out its parameters during Pre-render and populates a data structure, which gets sent to Smart Render via the extra data.
    I'm assuming that Smart Render never gets called without a Pre-render, so is there any advantage (apart from not having to check in my parameters) to doing all this in Pre-render? One thing that springs to mind is that now I'm starting to make use of IterateGeneric() for multi-threading I need to populate a (big) data structure to pass as my refcon, and I could start building this data during pre-render and pass the handle to Smart Render in pre_render_data, as in the Shifter example. This might save a whole load of function variables at render time.
    Thoughts?
    Also, any other pro optimisation tips and hints gratefully received!
    Thanks, Christian

    I think the big bushy beard on my face suggests that I am indeed a MAN!
    Now it's working as it should I think a rewrite is in order to optimise, and start putting things in their right place. Obviously I'm checking out my layers during prerender but that's all at the moment. However my main drawing code is currently just two nested for loops (for y and x), so single-threaded. I've moved one of the scopes to a row-based function called by iterage_generic(), and with it a quite large refcon structure to carry all the vital position, scale, etc., information I need to draw the scope properly. If I'm to get all this info for all the scopes into the refcon, then I might as well take the time to do it during pre-render (where possible).
    > 1. if the inside of your iteration function looks like this:
    PF_Err err = PF_Err_NONE;
    AEGP_SuiteHandler suites(in_data->pica_basicP);
    suites.someSuite()->someFunction();
    I made this mistake very early on in development, and after figuring out it was the reason why the plugin ground AE to a halt, learned not to do it again!
    > 3. if your plug-in does a whole lot of floating point math, then consider setting the compiler's floating point model from it's default "precise" to "fast".
    My plugin actually does all of its internal work in 32-bit float. I figured it would be easier to write and maintain if I only had a single function for each part, rather than three. I can't see how to do this in XCode yet (Windows will come later).
    > (and you do know about the optimization options in your compiler, right?)
    Well, I've been looking into this, but any info you can share would be great. So far I've seen the following in XCode, which I can set for "release" mode:
    "Debug Information Format" to nothing
    "Strip Debug Symbols During Copy" to Yes
    "Optimization Level" to Fastest, Aggressive Optimisation
    But I'm sure there must be more...
    Thanks, Christian

  • Where is the best place to put custom functions?

    Hi,
    I have a composition which has a number of symbols. I have to call some custom methods externally and was wondering where is the best place to put the custom methods?
    I have seen posts that I should put the code in the CompositionReady event of the stage but I would like to put it a bit closer to the symbol.
    Is this the best place?
    Sham.

    Here is a case:
    It's a good idea if you well understand global and local variables.
    About complete event, you are right.

  • Where is the best place to put cfqueries?

    Where is the best place to put cfqueries, in the <head> </head> or before the html tag? Thanks

    So before the doctype tag? Thanks
    I just doesn't really matter.  the doctype, head, body, etc only matter to the browser; the CF tags only matter to CF.  The browser doesn't see the CFML, and CF doesn't care about the mark-up one bit: it just ignores it.
    The best place - as I said - is not in the same file at all.  But if you insist on slapping your business logic in with your display logic, then the only consideration is that you need to set your variables before you use them.  Other than that: it simply doesn't matter.
    One consideration you might make is - even if it's all thrown into the same one file - at least separate the file itself into sections: have all your CFML code that gets your data at the top, and try to limit the CFML you have mixed in with the mark-up, eg: limit it to stuff like loops and conditionals.
    But, seriously, separate your concerns.  Dan's pretty much just wrong when he said it's over-engineering. It's just sloppy to not to write tidy, well-maintained, well-organised code.
    Adam

  • What is the best place to store global constants?

    Hi,
    I want to store some contants and access it through procedures and functions, what would be the best place to do this? I thought substitution strings would work, but it isn't working for me in my procedures. Can we use Substitution string in compile code such as procedures and functions? I use SQL developer to write procedures.
    Cheers

    Hi,
    Table is good if "constant" might change so you can create APEX form to maintain those.
    You could also use package specification just for constants e.g.
    CREATE OR REPLACE
    PACKAGE MY_GLOBALS
    AS
      g_const_1 CONSTANT DATE := TRUNC(SYSDATE) + 365;
      g_const _2 CONSTANT VARCHAR2(30) := 'somestring';
    END;
    Then you can refer those in procedures, functions and APEX processes like (package_name.constant_name) MY_GLOBALS.g_const_1.
    Regards,
    Jari

  • Best place to define a var for sharing between distinct UIViewControllers?

    My app has two distinct UIViewController subclasses that handle two distinct UIViews. Both of these controllers need access to the same array of data. Where is the best place to define this array? In the AppDelegate class? If I define it there, how do the ViewControllers gain access to it?

    "...rather than assuming you have a pointer to the label in your init method, it might be something you need to fill in in viewDidLoad. That's a great place to do that sort of thing."
    I found out the hard way that it's not a good idea to try and do anything with the view in initWithNibName. It's ok to initialize controller data structures there, but setting up the view objects should be done in viewDidLoad.
    I started trying to learn iPhone programming from scratch last summer. I'd been a C/Win32 developer since before it was 32 and hadn't programmed a Mac for over 15 years (they've changed a little since then). I thought Cocoa was hot chocolate. Amazon had lots of great looking iPhone SDK books for me to order, but none of them was published yet. When I downloaded "HelloWorld" I spent several hours trying to find where that string came from.. Should've know it was a resource, but I was too disoriented to include *.xib in my grep. Most of the docs at the iPhone Dev Center were pretty scary, and there wasn't much comfort from the Introductions that promised "The iPhone API is very similar to OS/X except..."
    When I found out about CS193P I phoned Stanford right away. The $3000 price gave me pause, though. I could audit for less, but was told auditors couldn't ask questions. I wasn't about to ask my employer to help me retool for the iPhone, so I passed on the course. In hindsight I might have had some buyer's remorse when the course was offered for free this Spring. But I sure wish I'd had those lectures last Summer!
    Seems to me there needs to be a 'best practices document regarding memory management. I believe there's something like this in the docs, but I need to look into it.
    That would be +Memory Management Programming Guide for Cocoa+. If you don't read anything else in that guide, read and memorize Object Ownership Policy.
    If you continue to help me out, I'll be sure to mark everything 'answered' so maybe you can take the top slot among contributors!
    I'm smiling now. The point system here is fun, and the yellow and green stars are fun to find in the morning. But I'll have the thank you notes long after the points are erased (probably due to Apple Discussions' plan to kick the dev forums out--see the Feedback forum for more on that sentiment).
    Actually it's strictly against the rules to discuss points when providing help unless asked, and the people who need help the most usually have no clue about points anyway. At least half the time, you'll see a message saying "Great! That solved the problem", and the OP has closed the thread by clicking "Mark question as answered" (no points) at the top of the page instead of "Solved" in the helper's reply.
    What I'd really like is for our nos. 1, 2 and 3 to come back to this forum!! I'm hopeful Rick will return, but worried about 1 and 3 due to the circumstances of their departure. Both Etresoft and Orangekay are experts. They were here almost every day and could handle the advanced questions. I could rely on them to correct my mistakes. If you do a little detective work up in the Feedback forum, you'll see what happened to Etresoft.. Certainly an imaginative way to repay years of expert volunteer service. I shouldn't get started on that, though.
    Come to think of it, you actually didn't ask for my life story. But I have a reputation for being verbose that sometimes requires going the extra mile.
    \- Ray

  • Best place to find more plugins??

    hi everyone
    Where is the best place to find more plugins to add to those already with Logic?
    The effects with logic are very good but id like to add to those now.
    Is there a big range of plugins like the vst's for cubase?
    Thanks
    Andy

    Hey Andy,
    There is just as large a collection of plugins for Logic (these come in the AU or Audio Units format) as for Cubase. Anywhere you can buy recording equipment should be selling plugins too. Some free plugins (but not very useful most of the time) can be found on places like www.digitalfishphones.com or www.airwindows.com . The guy that owns AirWindows seems to basically do code copies of plugins. He's got some great free plugins. . . one of which I often use on vocals. he also has some paid plugins that are far cheaper than the competition ($60 vs. $500 for a tape emulation plugin for instance) that are VERY good.
    If you're looking to buy plugins, go to www.sweetwater.com . . . or really any large pro audio retailer, but sweetwater's a good place to start. If I knew more of what you were looking for I could help guide you a bit better.
    Also, if you have an ilok key you can download demos of many paid plugins and give them a test drive.

  • Best place to find the most authentic information

    Best place to find the most authentic information about plans, insurance companies, eligibility, navigators and even the Exchange. Most often, people are unaware that they are eligible for government sponsored coverage and end up buying private and costly health plans. But when a resident accesses the Exchange, he is immediately informed about his eligibility and if interested, he can purchase the subsidized plan.For those who do not have access to the internet, it is the responsibility of the health Exchange to provide information to these residents through other means. Hence, those residents who previously could not purchase health policies due to lack of awareness and information, the health Exchange will prove to be a one-stop shop where they can access information, compare plans and finally purchase that suits their medical and financial needs.
    Watch Sherlock Holmes 2 Online - Watch Alvin and the Chipmunks 3 Online - Watch Mission Impossible 4 Online - Watch Sherlock Holmes 2 Online Free - Watch Alvin and the Chipmunks 3 Online Free - Watch Mission Impossible 4 Online Free - Watch Glee Season 3 Episode 9 Online Free - Watch Glee s03e09 Online - Watch Glee Season 3 Episode 9 Online Free - Watch Last Man Standing Season 1 Episode 11 Online - Watch Last Man Standing s01e11 Online - Watch Last Man Standing s01e11 Online - Watch Sherlock Holmes 2 Online Megavideo - Watch Alvin and the Chipmunks 3 Online Megavideo - Watch Mission Impossible 4 Online Megavideo - Watch Glee Season 3 Episode 9 Online Megavideo - Watch Last Man Standing Season 1 Episode 11 Online Megavideo - Watch Glee Season 3 Episode 9 Online Free - Watch Last Man Standing Season 1 Episode 11 Online Free - Watch Sherlock Holmes 2 Online Free - Watch Alvin and the Chipmunks 3 Online Free - Watch Mission Impossible 4 Online Free

    Hey Andy,
    There is just as large a collection of plugins for Logic (these come in the AU or Audio Units format) as for Cubase. Anywhere you can buy recording equipment should be selling plugins too. Some free plugins (but not very useful most of the time) can be found on places like www.digitalfishphones.com or www.airwindows.com . The guy that owns AirWindows seems to basically do code copies of plugins. He's got some great free plugins. . . one of which I often use on vocals. he also has some paid plugins that are far cheaper than the competition ($60 vs. $500 for a tape emulation plugin for instance) that are VERY good.
    If you're looking to buy plugins, go to www.sweetwater.com . . . or really any large pro audio retailer, but sweetwater's a good place to start. If I knew more of what you were looking for I could help guide you a bit better.
    Also, if you have an ilok key you can download demos of many paid plugins and give them a test drive.

  • Where's best place to get original Airport card?

    I was wondering if anyone could tell me where's the best place to get an original Airport card? I've just bought a new iMac and want to connect my old eMac to it. I've got a BT Homehub wireless router but just need an original Airport card for the eMac downstairs. I'm a bit new to the computer game and just wondered if anyone could recommend a decent place to buy accessories.
    Thanks
    Damarall
    iMac 20in 2GHz 512MB   Mac OS X (10.4.4)  

    Thank you guys for answering my question. I've just got one more now Will an American airport card still work on an English Apple Mac. I feel silly asking, as I'm sure it'd be fine, but I know American videos don't work in our players, and DVDs have different regions (although I've found the codes to stop that, he he). Thanks again. Damarall

  • Best place for images outside of MS Store App?

    Newbie question? If multiple Apps share many images, where is the best place to keep them? 
    There will be hundreds of images in each App - some of them duplicate between Apps. I do not want to house them in the Images folder of the C# source code because they may change as time goes on. I would like to locate them "outside" the App and
    retrieve them when necessary if possible.
    I tried parking them in a website and accessing them this way: 
    ImagePath="http://mywebsite.com/Cookbooks/Receipts/English/Pages/Receipt1.1.1.png". But Go Daddy says I cannot house them that way for a MS store App. 
    So, where is the *best* place to put these images? Website, Web server, OneDrive, Azure, etc. Any other directions for building a scalable and flexible App would be appreciated. Thanks. 
    FS

    Hi,
    I think that's depend on your scenario.
    you could also use Windows Azure Mobile Services. There's a good Todo app sample on the following site -
    http://www.windowsazure.com/en-us/develop/mobile/tutorials/get-started/
    Or you can use web service, we can use httpClient to communicate with it.
    Please follow this document
    http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh761504.aspx
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Error in Printing Crystal Report Directly to Printer using SDK Code

    Hello ,
    I am trying to print a crystal report created in SAP Crystal Reports 2008 through SDk Code using one parameter
    as (Document Number).But While running the Code the Report is not getting printed and also the system is
    not able to fetch the correct data in the report using the supplied parameter .
    I am using Visual Studio 2005 Crystal Report dll s in my code :-
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports CrystalDecisions.CrystalReports
    Imports System
    Imports System.Data.SqlClient
    Imports System.IO
    For Clarification i am pasting my code below :-
                Dim oRpt As ReportDocument
                oRpt = New ReportDocument
                oRpt.Load(Path)
                With crConnectionInfo
                    .ServerName = Server
                    .DatabaseName = Database
                    .UserID = User
                    .Password = Password
                End With
                CrTables = oRpt.Database.Tables
                For Each CrTable In CrTables
                    crtableLogoninfo = CrTable.LogOnInfo
                    crtableLogoninfo.ConnectionInfo = crConnectionInfo
                    CrTable.ApplyLogOnInfo(crtableLogoninfo)
                Next
                oRpt.ParameterFields("Document Number").CurrentValues.AddValue(Parameter)
                If Printer <> "" Then
                    oRpt.PrintOptions.PrinterName = Printer
                End If
                oRpt.PrintToPrinter(Copies, False, 0, 1)
            Catch ex As Exception
                SBO_Application.MessageBox(ex.Message)
            End Try
    Please suggest me what i have to do in my code to print the report with correct data in report.
    Thanks & Regards,
    Amit

    k

  • Calling Stored Procedure in SDK Code

    Hello Experts,
    Iam facing a problem in Sdk Code...How do i Excute the stored procedure in sdkcode.I have  aStored Procedure ,In My Stored Procedures (My Operation Is DML operation Insert),Inserting UDO (Document Data) To the Normal Table.
      I am Having Data in Matrix and when Add the Document I am  calling the Procedure.How Do establish Connection and How do i Use the Commands to excute the Procedure and Save to the Normal Table..
    Dim sqlconn As New SqlConnection("Data Source=" & SBO_Company.Server & ";Database=" & SBO_Company.CompanyDB & "; User ID=" & SBO_Company.DbUserName & ";Password=sap;")
            Dim sqldaa As New SqlDataAdapter
            Dim dss As New DataSet
            If sqlconn.State = ConnectionState.Closed Then
                sqlconn.Open()
            End If
            Dim sqlcmdd As New SqlCommand("PRODSALETOALL", sqlconn)
            sqlcmdd.CommandType = CommandType.StoredProcedure
            'sqlcmd.CommandText = "PRODSALE"
            sqlcmdd.Parameters.Add("@fy", "bb")
            sqlcmdd.Parameters.Add("@doctype", "aa")
            'sqldaa.SelectCommand = sqlcmdd
            'sqldaa.Fill(dss)
            'sqldaa.Dispose()
            sqlcmdd.ExecuteNonQuery()
            sqlcmdd.Dispose()
    Help would be Appreciated..
    Regards,
    Kumar

    Haroon,
    SAP does not allow Stored Procedures to be used as part of the SAP Business Db or to be used to access SAP Business One tables directly for Insert, Update or Delete.  Any interaction with the SAP Business One Db is required to go through the SAP Business One API's, namely the DI and UI API's.
    Eddy

Maybe you are looking for

  • How can I get anyones address book from ecxhange and show them to user

    I am trying to get someones adressbook information from MS exchange for caller to be able to make call from IP Phone interface. Is there any rapid solution.

  • PC Suite 7.0.9.2 on Vista Backup Utility Crashes

    I just updated my PC suite with latest version (7.0.9.2) on my Windows Vista (Business) OS. After doing so I am not able to use the backup utility (ContentCopier). I used to backup my phone on PC using the earlier version of PC Suite. Is there any so

  • Logic Pro 9 "Tracks bounced are low in volume"

    So I finished my track, and I bounce it. After it exports to my desktop (like usual) I go to play it and there is practically no volume on the track. I have tried to bounce my track "offline" and have tried multiple times but I cannot seem to figure

  • Quiz Reporting - Best Practice?

    I have been experiencing issues with the email quiz result function. No score in the email. I have tried as an attachment and in the body. Note: I've got this function to work at other job sites. What is the best workaround for this? Another app such

  • How to get System status Check Boxes into Query selection screen

    Dear experts, Pleas help in knowing how to get System status Check Boxes into quick view query (SQVI), selectionscreen. Regards Jogeswara Rao Edited by: K Jogeswara Rao on Jul 6, 2010 7:26 PM