|
Hey Everyone, I was wondering if you can help me out with this. I want to build a comp with a null that has the position values that I want to use in with different layers that happen on different times on the timeline. Is there any way to use the position...
Started by Mark Parayno on
, 12 posts
by 2 people.
Answer Snippets (Read the full thread at creativecow):
ThisComp.layer("Null 1").transform.position.valueAtTime(time-timeOffset) Dan Thanks for the reply} thisComp.layer("Position").transform.position.valueAtTime(anni-timeOffest); Tried this, but no luck mOut") { anni = (time-mOut) }; thisComp....
|
|
In SQL server if you have nullParam=NULL in a where clause, it always evaluates to false. This is counterintuitive and has caused me many errors. I do understand the IS NULL and IS NOT NULL keywords are the correct way to do it. But why does SQL server...
Started by Byron Whitlock on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
That NULL of NULL you think of “NULL” (string) then you probably want a different test of equality like
For non-null ....
Is null is comparing the state of the variable
Here I will hopefully clarify my position.
|
|
Hi, I am using Mocha data applied to a Null object to drive an "Optical Flares" XY Position. However I cannot work out what to add to the end of the expression to fine tune this position more accurately. Adding +100 shifts the X position nicely, but I...
Started by Simon Bisset on
, 6 posts
by 4 people.
Answer Snippets (Read the full thread at creativecow):
And over to change the position offset, you can just change the values of the point control! Darby explain how to do this in more detail? thisComp.layer("light null").transform.position+ [200,-200] OSX.
|
Ask your Facebook Friends
|
Hi,
Currently I am doing a very basic OrderBy in my statement.
SELECT * FROM tablename WHERE visible=1 ORDER BY position ASC, id DESC
The problem with this is that NULL entries for 'position' are treated as 0. Therefore all entries with position as NULL...
Started by JonB on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
position 's in the db.)
You can use the COALESCE function to check if the position index is NULLYou can swap out instances of NULL with a different value to sort them first (like 0 or -1) or last (a large number or a letter)...
|
|
Hi, Let's say I've got two nulls (A and B) tracked into footage. I'd like to create a third null (C), on the line that would cross A and B - at a proportional distance of say double the distance between A and B. So C would not be between A and B, but ...
Started by Barend Onneweer on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at creativecow):
Thanks! Raamw3rk - digital storytelling and visual effects.
Try this: A = thisComp.layer("A").transform.position; B = thisComp.layer("B").transform.position; B + (B-A)*2 Dan Oh boy, that's so simple it's embarrassing (for me) .
|
|
You would think I would understand this stuff by now but it still does my head in. I have a parent comp "Main" that has a control null "Control Null". In a nested pre-comp that has been scaled in the parent comp I have a text layer "Text" that I would...
Started by Lloyd Alvarez on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at creativecow):
Then you need to translate that result("Control Null"); ptCtrl....
First you need to get the Position Control into the main comp's world space.
On your null that you want to use to control the position of the text in the sub-comp.
|
|
Hi, I wanted do add some new features to a script I wrote some weeks ago. Every time I run the script it takes the 2d moving of 2 selected nulls and puts it into a new null that moves in 3d space... This workes fine, but I now tried to add something that...
Started by Raphael Schaaf on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at creativecow):
Lets call it....
Im using 2 tracking NULLS..
Its exactly what i need but im terrible w any scripting.. .
I´m actually performing a similar thing like yours when i stumbled onto this code.. .
I have posted twice b4 but seems it doesnt like my posts.. .
|
|
I have some JavaScript objects such as this (it's psuedo so I know if syntax is wrong):
[{ "divid":"1","x1":"35","y1":"100","height":"150","width":"150" }, { "divid":"2","x1":"45","y1":"110","height":"150","width":"150" }, { "divid":"3","x1":"55","y1"...
Started by Joshua on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
An easy way to do this might be to absolute position some dynamically created divs and assign=what.offsetParent; while (parentEl!=null){ totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft.
|
|
I'm toying with the idea for my text input box of clicking on a div containing a selection of "tags" to add meta content. My text input has a width of 35, but I want it to be able to overflow.
I've searched and found methods to focus and position my caret...
Started by Saul on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
) { var elem = document.getElementById(elemId); if(elem != null) { if(elem.createTextRange) { var"); evt.initKeyEvent("keypress", true, true, null, false, false, false, false, 0, 32"); evt.initKeyEvent("keypress", true, true, null....
|
|
Are there any drawbacks if you use setLayout(null) for say JFrame and use setBounds method to set the positions of components in that JFrame. GUI prospect.
Started by stillStudent on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The only time I have ever had a reason to use a null layout to control the position through the....
Read managers to get your desired effect.
When the user resizes the JFrame, you'll be disappointed! Otherwise, a null layout is fine.
|